blob: 5299da27123cbcd5ce11822793095afd429294f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
menuentry 'Load Operating System' {
insmod regexp
insmod ahci
insmod part_msdos
insmod part_gpt
for x in (ahci0,*); do
if [ -f "$x/grub/libreboot_grub.cfg" ] ; then
set root=$x
configfile /grub/libreboot_grub.cfg
fi
if [ -f "$x/boot/grub/libreboot_grub.cfg" ] ; then
set root=$x
configfile /boot/grub/libreboot_grub.cfg
fi
done
set root='ahci0,1'
linux /vmlinuz root=/dev/sda1 rw
if [ -f "/initrd.img" ] ; then
initrd /initrd.img
fi
}
menuentry 'Parse ISOLINUX menu (USB)' {
for x in (usb0) (usb0,*); do
set root=$x
if [ -f "/menu.cfg" ] ; then
syslinux_configfile -i /menu.cfg
elif [ -f "/txt.cfg" ] ; then
syslinux_configfile -i /txt.cfg
elif [ -f "/isolinux/menu.cfg" ] ; then
syslinux_configfile -i /isolinux/menu.cfg
elif [ -f "/isolinux/txt.cfg" ] ; then
syslinux_configfile -i /isolinux/txt.cfg
elif [ -f "/isolinux/isolinux.cfg" ] ; then
syslinux_configfile -i /isolinux/isolinux.cfg
fi
done
}
menuentry 'Parse ISOLINUX menu (CD)' {
set root='ata0'
if [ -f "/menu.cfg" ] ; then
syslinux_configfile -i /menu.cfg
elif [ -f "/txt.cfg" ] ; then
syslinux_configfile -i /txt.cfg
elif [ -f "/isolinux/menu.cfg" ] ; then
syslinux_configfile -i /isolinux/menu.cfg
elif [ -f "/isolinux/txt.cfg" ] ; then
syslinux_configfile -i /isolinux/txt.cfg
elif [ -f "/isolinux/isolinux.cfg" ] ; then
syslinux_configfile -i /isolinux/isolinux.cfg
fi
}
menuentry 'Switch to grubtest.cfg' {
set root='cbfsdisk'
configfile (cbfsdisk)/grubtest.cfg
}
menuentry 'Search for GRUB configuration on internal storage' {
insmod regexp
insmod ahci
insmod part_msdos
insmod part_gpt
for x in (ahci0,*) ; do
if [ -f "$x/grub/grub.cfg" ] ; then
submenu "Load Config from $x" $x {
root=$2
source /grub/grub.cfg
unset superusers
}
fi
if [ -f "$x/boot/grub/grub.cfg" ] ; then
submenu "Load Config from $x" $x {
root=$2
source /boot/grub/grub.cfg
unset superusers
}
fi
done
}
|