20 lines
819 B
Bash
20 lines
819 B
Bash
menu_init
|
|
|
|
default='scan'
|
|
|
|
menuentry ' scan →' --id 'scan' { menu 'scan' }
|
|
menuentry '↑ gfx →' { menu 'gfx' }
|
|
menuentry '↑ env →' { menu 'env' }
|
|
menuentry '↑ set →' { menu 'set' }
|
|
menuentry '↑ cmd →' { menu 'cmd' }
|
|
menu_split
|
|
menuentry 'configfile' { configfile "${live}/configfile.sh" }
|
|
menuentry 'check_squashfs = enforce' { check_squashfs='enforce' }
|
|
menuentry 'check_squashfs = no' { check_squashfs='no' }
|
|
menuentry 'live_from = ram' { live_from='ram' }
|
|
menuentry 'live_from = media' { live_from='media' }
|
|
menu_split
|
|
menuentry 'bash / stable / tui' { debsquash '/boot/bash/stable/tui' }
|
|
menuentry 'bash / stable / gui' { debsquash '/boot/bash/stable/gui' }
|
|
menuentry 'bash / latest / tui' { debsquash '/boot/bash/latest/tui' }
|
|
menuentry 'bash / latest / gui' { debsquash '/boot/bash/latest/gui' }
|