Build-configs/acorbootloaders/isolinux/recovery.cfg

57 lines
1.6 KiB
INI
Raw Normal View History

2023-03-03 09:49:54 -01:00
### recovery.cfg for Live-Session
include stdmenu.cfg
2023-11-25 17:22:07 -01:00
menu title AcorOS Recovery Options
2023-03-03 09:49:54 -01:00
label R-sda2
2023-11-25 17:22:07 -01:00
menu label ^AcorOS on sda2
2023-03-03 09:49:54 -01:00
linux /live/vmlinuz
initrd /live/initrd.img
append boot=local root=/dev/sda2 ro quiet splash
label R-sda3
2023-11-25 17:22:07 -01:00
menu label ^AcorOS on sda3
2023-03-03 09:49:54 -01:00
linux /live/vmlinuz
initrd /live/initrd.img
append boot=local root=/dev/sda3 ro quiet splash
label R-nvme0n1p2
2023-11-25 17:22:07 -01:00
menu label ^AcorOS on nvme0n1p2
2023-03-03 09:49:54 -01:00
linux /live/vmlinuz
initrd /live/initrd.img
append boot=local root=/dev/nvme0n1p2 ro quiet splash
label R-nvme0n1p3
2023-11-25 17:22:07 -01:00
menu label ^AcorOS on nvme0n1p3
2023-03-03 09:49:54 -01:00
linux /live/vmlinuz
initrd /live/initrd.img
append boot=local root=/dev/nvme0n1p3 ro quiet splash
label R-mmcblk0p2
2023-11-25 17:22:07 -01:00
menu label ^AcorOS on mmcblk0p2
2023-03-03 09:49:54 -01:00
linux /live/vmlinuz
initrd /live/initrd.img
append boot=local root=/dev/mmcblk0p2 ro quiet splash
label R-mmcblk0p3
2023-11-25 17:22:07 -01:00
menu label ^AcorOS on mmcblk0p3
2023-03-03 09:49:54 -01:00
linux /live/vmlinuz
initrd /live/initrd.img
append boot=local root=/dev/mmcblk0p3 ro quiet splash
#### ### ## # This line is intentionaly left blank. # ## ### ####
### By following the constucts above, We can add additional entries
#label Alternative boot
2023-11-25 17:22:07 -01:00
# menu label ^Alternative AcorOS (amd64)
2023-03-03 09:49:54 -01:00
# linux /live/vmlinuz
# initrd /live/initrd.img
# append boot=live components quiet splash persistence
# say Now booting alternative method
### By following the constucts above, We can add additional entries
#label Alternative boot
2023-11-25 17:22:07 -01:00
# menu label ^Alternative AcorOS (amd64)
2023-03-03 09:49:54 -01:00
# linux /live/vmlinuz
# initrd /live/initrd.img
# append boot=live components quiet splash persistence
# say Now booting alternative method
2023-11-25 17:22:07 -01:00