blob: 2e415af5f93465b8c95a76c62844a96e21a68664 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
set default=0
set timeout=3
insmod efi_gop
insmod efi_uga
menuentry "ODOS 1" {
echo "Loading ODOS from first partition"
set root=(hd0,2)
linux (hd0,2)/boot/kernel root=/dev/mmcblk1p2 rootfstype=ext4 rootwait panic=10
}
menuentry "ODOS 2" {
echo "Loading ODOS from second partition"
set root=(hd0,3)
linux (hd0,3)/boot/kernel root=/dev/mmcblk1p3 rootfstype=ext4 rootwait panic=10
}
|