]> glassweightruler.freedombox.rocks Git - Ventoy.git/blob - LiveCDGUI/ISO/EFI/boot/grub.cfg
1.1.01
[Ventoy.git] / LiveCDGUI / ISO / EFI / boot / grub.cfg
1
2 set timeout=3
3 set default=LiveCD
4
5 clear
6
7 menuentry 'Ventoy xxx LiveCD GUI' --id=LiveCD {
8 echo downloading kernel ...
9 linux /EFI/boot/vmlinuz quiet first_run rdinit=/VTOY/init
10
11 echo downloading initrd ...
12 initrd /EFI/boot/initrd
13
14 echo booting LiveCD ...
15 boot
16 }
17
18 menuentry 'Ventoy xxx LiveCD GUI (Debug Mode)' {
19 echo downloading kernel ...
20 linux /EFI/boot/vmlinuz debug loglevel=7 first_run rdinit=/VTOY/init
21
22 echo downloading initrd ...
23 initrd /EFI/boot/initrd
24
25 echo booting LiveCD ...
26 boot
27 }