grub.cfg 394 B

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