Commit b9bbd4c3 authored by Anton Midyukov's avatar Anton Midyukov

grub: Add items boot with local drive for grub-pc (iso)

use/grub/localboot, use/grub/sdab similar to use/syslinux/localboot, use/syslinux/sdab.
parent d36acb28
if [ "$grub_platform" = "pc" ]; then
menuentry "Boot from hard drive" {
insmod part_msdos
insmod chain
set oldroot="$root"
if [ "$root" = hd0 ]
then set root=(hd1)
else set root=(hd0)
fi
chainloader +1
set root="$oldroot"
}
fi
if [ "$grub_platform" = "pc" ]; then
menuentry "Boot from 1st hard/flash drive" {
insmod part_msdos
insmod chain
set oldroot="$root"
set root=(hd0)
chainloader +1
set root="$oldroot"
}
menuentry "Boot from 2st hard/flash drive" {
insmod part_msdos
insmod chain
set oldroot="$root"
set root=(hd1)
chainloader +1
set root="$oldroot"
}
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment