grub.cfg 560 Bytes
Newer Older
longpanda's avatar
longpanda committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
}