diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/grub/files/grub.cfg | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/package/grub/files/grub.cfg b/package/grub/files/grub.cfg index 2e415af5f..66ce6e0a0 100644 --- a/package/grub/files/grub.cfg +++ b/package/grub/files/grub.cfg @@ -1,15 +1,7 @@ set default=0 set timeout=3 -insmod efi_gop -insmod efi_uga -menuentry "ODOS 1" { - echo "Loading ODOS from first partition" +menuentry "OpenADK" { 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 + linux (hd0,2)/boot/kernel root=/dev/sda2 rootfstype=ext4 rootwait panic=10 } |