forked from netbootxyz/netboot.xyz-custom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bios-submenu.ipxe
35 lines (31 loc) · 1.35 KB
/
bios-submenu.ipxe
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
#!ipxe
###
### netboot.xyz-custom menu
###
goto ${dasboot-main-menu_choice} ||
:bios-submenu
clear bios-submenu_choice
menu DasBoot
# 74 characters max
item --gap ============================== BIOS Updates ===============================
#tem --gap -- ------------------------- BIOS ------------------------------
#tem --gap -- ------------------------- BIOS ------------------------------
#tem --gap -- ------------------------- Diagnostics ------------------------------
#tem --gap -- ------------------------- Firmware ------------------------------
#tem --gap -- ------------------------- Sanitation ------------------------------
#tem --gap -- ------------------------- SysInfo ------------------------------
#tem --gap -- ------------------------- Tools ------------------------------
item --key d bios-submenu-dell (D)ellEMC
item --key h bios-submenu-hp (H)ewlett-Packard
item --key l bios-submenu-lenovo (L)enovo
item --key x bios-submenu-exit e(X)it and return to Netboot.xyz menu
choose bios-submenu_choice || goto error
echo ${cls}
goto ${bios-submenu} || goto error
goto bios-submenu
:bios-submenu-exit
exit
:error
echo Error occured, press any key to return to DasBoot - BIOS Updates menu ...
prompt
goto bios-submenu