Initial commit from Ventoy@7cbdc5c

This commit is contained in:
2026-08-23 00:38:40 -04:00
commit e9a7a16826
2848 changed files with 439164 additions and 0 deletions
+27
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
}