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.
This commit is contained in:
parent
d36acb28b9
commit
b9bbd4c38e
13
features.in/grub/cfg.in/10localboot_bios.cfg
Normal file
13
features.in/grub/cfg.in/10localboot_bios.cfg
Normal file
@ -0,0 +1,13 @@
|
||||
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
|
19
features.in/grub/cfg.in/95sdab_bios.cfg
Normal file
19
features.in/grub/cfg.in/95sdab_bios.cfg
Normal file
@ -0,0 +1,19 @@
|
||||
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
|
Loading…
Reference in New Issue
Block a user