mkimage-profiles/features.in/grub/cfg.in/95sdab_bios.cfg
Michael Shigorin 47d9b05b8c grub: fix typo in menu entry
Just a cosmetic fixup (until not paired up with translations):
"2nd" means "second", "1st" meant "first".
2021-04-28 19:34:45 +07:00

20 lines
395 B
INI

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 2nd hard/flash drive" {
insmod part_msdos
insmod chain
set oldroot="$root"
set root=(hd1)
chainloader +1
set root="$oldroot"
}
fi