summaryrefslogtreecommitdiff
path: root/resources/grub/config/menuentries/common.cfg
blob: eebfbc29476c9b606310a84b1747772c33333b1a (plain)
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
menuentry 'Load Operating System' {
	set root='ahci0,msdos1'
	linux  /vmlinuz root=/dev/sda1 rw
	if [ -f "/initrd.img" ] ; then
		initrd /initrd.img
	fi
}
menuentry 'Parse ISOLINUX menu (USB)' {
	set root='usb0'
	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 '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
	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
}