LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux From Scratch
User Name
Password
Linux From Scratch This Forum is for the discussion of LFS.
LFS is a project that provides you with the steps necessary to build your own custom Linux system.

Notices


Reply
  Search this Thread
Old 11-03-2014, 01:41 AM   #31
spiky0011
Senior Member
 
Registered: Jan 2011
Location: PLANET-SPIKE
Distribution: /LFS/Debian
Posts: 2,511
Blog Entries: 1

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412

Hi

I take it you renamed the kernel to this "vmlinuz-3.17.1-PersianOS-1.0" from what was in the book? and that is the kernel for lfs?

I would check that the correct drivers are set in the "kernel" for your "usb" hubs etc, according to the output from
Code:
lspci
 
Old 11-05-2014, 05:55 AM   #32
Tanzadeh
LQ Newbie
 
Registered: Oct 2014
Posts: 27

Original Poster
Rep: Reputation: Disabled
Hi I install linux kernel again and show me this Error

Code:
No Working init found. Try passing init= option to kernel.
 
Old 11-05-2014, 05:57 AM   #33
spiky0011
Senior Member
 
Registered: Jan 2011
Location: PLANET-SPIKE
Distribution: /LFS/Debian
Posts: 2,511
Blog Entries: 1

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412
what grub.cfg are you using?
 
Old 11-05-2014, 09:32 AM   #34
Tanzadeh
LQ Newbie
 
Registered: Oct 2014
Posts: 27

Original Poster
Rep: Reputation: Disabled
Post #18 grub.cfg
 
Old 11-05-2014, 09:59 AM   #35
spiky0011
Senior Member
 
Registered: Jan 2011
Location: PLANET-SPIKE
Distribution: /LFS/Debian
Posts: 2,511
Blog Entries: 1

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412
Ok maybe install an initramfs from here
http://www.linuxfromscratch.org/blfs...initramfs.html

you,ll need to install cpio

from here
http://www.linuxfromscratch.org/blfs...eral/cpio.html

I have had to install it myself on a usb installed lfs.
 
Old 11-06-2014, 01:39 AM   #36
Tanzadeh
LQ Newbie
 
Registered: Oct 2014
Posts: 27

Original Poster
Rep: Reputation: Disabled
Now I have root file system, does not exist error.But I use ext4 fs.
 
Old 11-06-2014, 01:43 AM   #37
spiky0011
Senior Member
 
Registered: Jan 2011
Location: PLANET-SPIKE
Distribution: /LFS/Debian
Posts: 2,511
Blog Entries: 1

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412
Did you add the initrd to the grub.cfg
 
Old 11-06-2014, 01:44 AM   #38
Tanzadeh
LQ Newbie
 
Registered: Oct 2014
Posts: 27

Original Poster
Rep: Reputation: Disabled
yes,I did.
 
Old 11-06-2014, 03:42 AM   #39
spiky0011
Senior Member
 
Registered: Jan 2011
Location: PLANET-SPIKE
Distribution: /LFS/Debian
Posts: 2,511
Blog Entries: 1

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412
Can you post ls from lfs/boot

Post your grub.cfg you are using is that on sda?

And with lfs partition mounted at /mnt/lfs
df -T from host
 
Old 11-06-2014, 05:26 AM   #40
Tanzadeh
LQ Newbie
 
Registered: Oct 2014
Posts: 27

Original Poster
Rep: Reputation: Disabled
Code:
root:/# ls /boot/
System.map-3.17.1  config-3.17.1  grub	initrd.img-3.17.1  vmlinuz-3.17.1
Code:
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
if [ "${next_entry}" ] ; then
   set default="${next_entry}"
   set next_entry=
   save_env next_entry
   set boot_once=true
else
   set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
  menuentry_id_option="--id"
else
  menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}
function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
  if [ x$feature_all_video_module = xy ]; then
    insmod all_video
  else
    insmod efi_gop
    insmod efi_uga
    insmod ieee1275_fb
    insmod vbe
    insmod vga
    insmod video_bochs
    insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos5'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos5 --hint-efi=hd0,msdos5 --hint-baremetal=ahci0,msdos5  41c8b376-2513-4a52-b814-9b973b34e053
else
  search --no-floppy --fs-uuid --set=root 41c8b376-2513-4a52-b814-9b973b34e053
fi
    font="/share/grub/unicode.pf2"
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
  set timeout=-1
else
  if [ x$feature_timeout_style = xy ] ; then
    set timeout_style=hidden
    set timeout=0
  # Fallback hidden-timeout code in case the timeout_style feature is
  # unavailable.
  elif sleep --interruptible 0 ; then
    set timeout=0
  fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 45,51,53; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
	set gfxpayload="${1}"
	if [ "${1}" = "keep" ]; then
		set vt_handoff=vt.handoff=7
	else
		set vt_handoff=
	fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
	recordfail
	load_video
	gfxmode $linux_gfx_mode
	insmod gzio
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
	else
	  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
	fi
	linux	/boot/vmlinuz-3.17.1 root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro  quiet splash $vt_handoff
	initrd	/boot/initrd.img-3.17.1
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
	menuentry 'Ubuntu, with Linux 3.17.1' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.17.1-advanced-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
		else
		  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
		fi
		echo	'Loading Linux 3.17.1 ...'
		linux	/boot/vmlinuz-3.17.1 root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.17.1
	}
	menuentry 'Ubuntu, with Linux 3.17.1 (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.17.1-recovery-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
		recordfail
		load_video
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
		else
		  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
		fi
		echo	'Loading Linux 3.17.1 ...'
		linux	/boot/vmlinuz-3.17.1 root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.17.1
	}
	menuentry 'Ubuntu, with Linux 3.13.0-39-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-39-generic-advanced-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
		else
		  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
		fi
		echo	'Loading Linux 3.13.0-39-generic ...'
		linux	/boot/vmlinuz-3.13.0-39-generic root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-39-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-39-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-39-generic-recovery-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
		recordfail
		load_video
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
		else
		  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
		fi
		echo	'Loading Linux 3.13.0-39-generic ...'
		linux	/boot/vmlinuz-3.13.0-39-generic root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-39-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-37-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-37-generic-advanced-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
		else
		  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
		fi
		echo	'Loading Linux 3.13.0-37-generic ...'
		linux	/boot/vmlinuz-3.13.0-37-generic root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-37-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-37-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-37-generic-recovery-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
		recordfail
		load_video
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
		else
		  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
		fi
		echo	'Loading Linux 3.13.0-37-generic ...'
		linux	/boot/vmlinuz-3.13.0-37-generic root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-37-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-32-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-advanced-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
		recordfail
		load_video
		gfxmode $linux_gfx_mode
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
		else
		  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
		fi
		echo	'Loading Linux 3.13.0-32-generic ...'
		linux	/boot/vmlinuz-3.13.0-32-generic root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro  quiet splash $vt_handoff
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-32-generic
	}
	menuentry 'Ubuntu, with Linux 3.13.0-32-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.13.0-32-generic-recovery-410f09d9-8b56-4377-a2b7-de55e497f2ff' {
		recordfail
		load_video
		insmod gzio
		insmod part_msdos
		insmod ext2
		set root='hd0,msdos1'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
		else
		  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
		fi
		echo	'Loading Linux 3.13.0-32-generic ...'
		linux	/boot/vmlinuz-3.13.0-32-generic root=UUID=410f09d9-8b56-4377-a2b7-de55e497f2ff ro recovery nomodeset 
		echo	'Loading initial ramdisk ...'
		initrd	/boot/initrd.img-3.13.0-32-generic
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
	else
	  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
	fi
	knetbsd	/boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
	insmod part_msdos
	insmod ext2
	set root='hd0,msdos1'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  410f09d9-8b56-4377-a2b7-de55e497f2ff
	else
	  search --no-floppy --fs-uuid --set=root 410f09d9-8b56-4377-a2b7-de55e497f2ff
	fi
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'PersianOS (1.0) (on /dev/sdb2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-cf88af53-142b-4c10-8226-314296ebce46' {
	insmod part_msdos
	insmod ext2
	set root='hd1,msdos2'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2  cf88af53-142b-4c10-8226-314296ebce46
	else
	  search --no-floppy --fs-uuid --set=root cf88af53-142b-4c10-8226-314296ebce46
	fi
	linux /boot/vmlinuz-3.17.1 root=UUID=cf88af53-142b-4c10-8226-314296ebce46 ro
	initrd /boot/initrd.img-3.17.1
}
submenu 'Advanced options for PersianOS (1.0) (on /dev/sdb2)' $menuentry_id_option 'osprober-gnulinux-advanced-cf88af53-142b-4c10-8226-314296ebce46' {
	menuentry 'GNU/Linux (on /dev/sdb2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.17.1--cf88af53-142b-4c10-8226-314296ebce46' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2  cf88af53-142b-4c10-8226-314296ebce46
		else
		  search --no-floppy --fs-uuid --set=root cf88af53-142b-4c10-8226-314296ebce46
		fi
		linux /boot/vmlinuz-3.17.1 root=UUID=cf88af53-142b-4c10-8226-314296ebce46 ro
		initrd /boot/initrd.img-3.17.1
	}
	menuentry 'GNU/Linux, with Linux 3.17.1 (on /dev/sdb2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.17.1--cf88af53-142b-4c10-8226-314296ebce46' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2  cf88af53-142b-4c10-8226-314296ebce46
		else
		  search --no-floppy --fs-uuid --set=root cf88af53-142b-4c10-8226-314296ebce46
		fi
		linux /boot/vmlinuz-3.17.1 root=UUID=cf88af53-142b-4c10-8226-314296ebce46 ro
		initrd /boot/initrd.img-3.17.1
	}
	menuentry 'GNU/Linux, with Linux 3.17.1 (recovery mode) (on /dev/sdb2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-3.17.1-root=UUID=cf88af53-142b-4c10-8226-314296ebce46 ro single-cf88af53-142b-4c10-8226-314296ebce46' {
		insmod part_msdos
		insmod ext2
		set root='hd1,msdos2'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos2 --hint-efi=hd1,msdos2 --hint-baremetal=ahci1,msdos2  cf88af53-142b-4c10-8226-314296ebce46
		else
		  search --no-floppy --fs-uuid --set=root cf88af53-142b-4c10-8226-314296ebce46
		fi
		linux /boot/vmlinuz-3.17.1 root=UUID=cf88af53-142b-4c10-8226-314296ebce46 ro single
		initrd /boot/initrd.img-3.17.1
	}
}

set timeout_style=menu
if [ "${timeout}" = 0 ]; then
  set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  ${config_directory}/custom.cfg ]; then
  source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
Quote:
And with lfs partition mounted at /mnt/lfs
df -T from host
I don't understand.

Last edited by Tanzadeh; 11-06-2014 at 05:39 AM.
 
Old 11-06-2014, 06:48 AM   #41
spiky0011
Senior Member
 
Registered: Jan 2011
Location: PLANET-SPIKE
Distribution: /LFS/Debian
Posts: 2,511
Blog Entries: 1

Rep: Reputation: 412Reputation: 412Reputation: 412Reputation: 412Reputation: 412
Begining to come to a loss what to do, there has to be something in the kernel config thats been missed

Make sure these are built into the kernel not modules


USB drivers for EHCI, OHCI, UHCI. Use only what your platform uses. (usb drivers section).
Include the USB mass storage driver in the kernel. (usb drivers section)
Make sure scsi disk block device driver is built in the kernel (scsi device drivers area.)
Make sure filesystem driver is in the kernel as well.

Last edited by spiky0011; 11-06-2014 at 07:05 AM.
 
Old 11-06-2014, 05:08 PM   #42
Keith Hedger
Senior Member
 
Registered: Jun 2010
Location: Wiltshire, UK
Distribution: Void, Linux From Scratch, Slackware64
Posts: 3,154

Rep: Reputation: 857Reputation: 857Reputation: 857Reputation: 857Reputation: 857Reputation: 857Reputation: 857
Why not grab the 'huge' kernel from slackware and try that at least it will narrow down the possible sources of error, because at the moment you can't tell if it's a kernel, grub or system problem, at least we all know the slackware 'huge' kernel includes everything including the kitchen sink, if your system boots with a known working kernel then you know that the problem is in your kernel config, if it doesn't then you can concentrate on grub and the rest of the system.
 
1 members found this post helpful.
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Booting LFS 7.0 with grub2 ubuntudude12 Linux From Scratch 11 09-12-2016 07:14 PM
[SOLVED] Lfs is not Booting UP !!! jaassi Linux From Scratch 6 09-28-2014 03:01 AM
[SOLVED] my new LFS sytem is not booting Carl_cj Linux From Scratch 53 09-19-2014 01:55 PM
booting LFS Garrett85 Linux From Scratch 1 10-15-2012 07:12 PM
[SOLVED] Error booting LFS 7.1 CincinnatiKid Linux From Scratch 17 04-22-2012 08:39 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Linux From Scratch

All times are GMT -5. The time now is 04:04 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration