mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-15 18:13:33 +00:00
a1c6fe2d24
support to browse and boot files in local disk.
18 lines
484 B
INI
18 lines
484 B
INI
submenu "Power" --class=debug_power --class=F5tool {
|
|
menuentry Reboot --class=debug_reboot --class=debug_power --class=F5tool {
|
|
echo -e '\n\nSystem is rebooting ... \n'
|
|
sleep 1
|
|
reboot
|
|
}
|
|
|
|
menuentry Halt --class=debug_halt --class=debug_power --class=F5tool {
|
|
echo -e '\n\nSystem is halting ... \n'
|
|
sleep 1
|
|
halt
|
|
}
|
|
|
|
menuentry 'Return to previous menu [Esc]' --class=vtoyret VTOY_RET {
|
|
echo 'Return ...'
|
|
}
|
|
}
|