Add GUI LiveCD

This commit is contained in:
longpanda 2021-09-29 19:26:50 +08:00
parent d72bb15956
commit 32c5b5deea
19 changed files with 315 additions and 3 deletions

View file

@ -0,0 +1,3 @@
VentoyLiveCD
https://www.ventoy.net

View file

@ -0,0 +1,27 @@
set timeout=3
set default=LiveCD
clear
menuentry 'Ventoy xxx LiveCD GUI' --id=LiveCD {
echo downloading kernel ...
linux /EFI/boot/vmlinuz quiet first_run rdinit=/VTOY/init
echo downloading initrd ...
initrd /EFI/boot/initrd
echo booting LiveCD ...
boot
}
menuentry 'Ventoy xxx LiveCD GUI (Debug Mode)' {
echo downloading kernel ...
linux /EFI/boot/vmlinuz debug loglevel=7 first_run rdinit=/VTOY/init
echo downloading initrd ...
initrd /EFI/boot/initrd
echo booting LiveCD ...
boot
}