47d9b05b8c
Just a cosmetic fixup (until not paired up with translations): "2nd" means "second", "1st" meant "first".
20 lines
395 B
INI
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
|