debug.cfg 1.51 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
submenu 'Check plugin json configuration (ventoy.json)' {
    menuentry 'Check global control plugin configuration' {
        set pager=1
        vt_check_plugin_json $iso_path control $iso_path
        
        echo -e "\npress ENTER to exit ..."
        read vtInputKey
        unset pager
    }
    
    menuentry 'Check theme plugin configuration' {
        set pager=1
        vt_check_plugin_json $iso_path theme $iso_path
        
        echo -e "\npress ENTER to exit ..."
        read vtInputKey
        unset pager
    }
    
    menuentry 'Check auto install plugin configuration' {
        set pager=1
        vt_check_plugin_json $iso_path auto_install $iso_path
        
        echo -e "\npress ENTER to exit ..."
        read vtInputKey
        unset pager
    }
    
    menuentry 'Check persistence plugin configuration' {
        set pager=1
        vt_check_plugin_json $iso_path persistence $iso_path
        
        echo -e "\n############### dump persistence ###############"
        vt_dump_persistence
        
        echo -e "\npress ENTER to exit ..."
        read vtInputKey
        unset pager
    }
    
    menuentry 'Check menu alias plugin configuration' {
        set pager=1
        vt_check_plugin_json $iso_path menu_alias $iso_path
        
        echo -e "\npress ENTER to exit ..."
        read vtInputKey
        unset pager
    }
    
    menuentry 'Return to previous menu [Esc]' VTOY_RET {
        echo 'Return ...'
    }
}

menuentry 'Return to previous menu [Esc]' VTOY_RET {
    echo 'Return ...'
}