On Thu, September 15, 2016 13:08, Rob wrote:

> # # #
> /boot/grub/grub.cfg on /dev/sda1
> set default=0
> set timeout=-1
> insmod ext2
> set root=(hd0,1)
> menuentry "GNU/Linux, Linux 4.7.2-newbean" {
>         linux   /boot/vmlinuz-4.7.2 root=/dev/sda1 ro
> }
> menuentry "GNU/Linux, Linux 4.2-l-bean" {
>         linux   /boot/vmlinuz-4.2-lfs-7.8 root=/dev/sdb1 ro
> }


You need to specify the Grub's root for each path to the kernel:

menuentry "GNU/Linux, Linux 4.7.2-newbean" {
        linux   (hd0,1)/boot/vmlinuz-4.7.2 root=/dev/sda1 ro
}
menuentry "GNU/Linux, Linux 4.2-l-bean" {
        linux   (hd1,1)/boot/vmlinuz-4.2-lfs-7.8 root=/dev/sdb1 ro


If recall, that is the way to do it and not use the variable set early for
"set root="

> # # #
> That doesn't appear to work, however; I can only boot  the 4.7.2 system.
> Does
> " vmlinuz-4.2-lfs-7.8 "
> need to be in the /boot partition of /dev/sda1 for this to work
>  properly, since I have grub installed there?
> Thank you all for the help--and the patience.

Sincerely,

William Harrington
-- 
http://lists.linuxfromscratch.org/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/blfs/faq.html
Unsubscribe: See the above information page

Do not top post on this list.

A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing in e-mail?

http://en.wikipedia.org/wiki/Posting_style

Reply via email to