Hi!
I installed GRUB2 on a usb stick with:
down here you can see how is the usb mounted:Code:sudo grub-install --boot-directory=/mnt/lfs/boot /dev/sdb
The installation process finished successfully.Code:/dev/sdb1 on /mnt/lfs type ext2 (rw)
Then I edited grub.cfg in /mnt/lfs/boot/grub to the following:
When I restart the system booting from usb it results in a blank screen with the cursor blinking after 4-5 empty lines. Any idea why it's not showing the boot menu?Code:set default=0
set timeout=5
insmod ext2
set root=(hd1,1)
menuentry "LFS test" {
linux /boot/vmlinuz root=/dev/sdb1 ro
}

