mirror of
https://github.com/ventoy/Ventoy.git
synced 2025-05-30 06:45:40 -04:00
Add GUI LiveCD
This commit is contained in:
parent
d72bb15956
commit
32c5b5deea
19 changed files with 315 additions and 3 deletions
3
LiveCDGUI/ISO/EFI/VentoyLiveCD
Normal file
3
LiveCDGUI/ISO/EFI/VentoyLiveCD
Normal file
|
@ -0,0 +1,3 @@
|
|||
VentoyLiveCD
|
||||
|
||||
https://www.ventoy.net
|
27
LiveCDGUI/ISO/EFI/boot/grub.cfg
Normal file
27
LiveCDGUI/ISO/EFI/boot/grub.cfg
Normal 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
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue