• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2title=" COMBOOT Menu System "
3
4# location of help directory
5helpdir="/isolinux/help"
6pwdfile="/isolinux/password"
7
8# skip the menu if shift is pressed or Caps is on
9# if the menu is skipped run "skipcmd"
10# in our case we run the OS on the first harddisk
11skipcondn=shift-caps
12skipcmd="chain.c32 hd 0"
13
14# person with root privileges can exit menu
15# others just repeat
16exitcmd=".exit"
17onerrorcmd=".beep 2 % % .help hlp00025.txt % .exit"
18
19startfile="hlp00026.txt"
20
21timeoutcmd=".wait"
22totaltimeoutcmd="chain.c32 hd 0"
23
24[netmenu]
25title=" Init Network "
26
27item="<N>one"
28info="Dont start network"
29type=radioitem
30data="network=no"
31
32item="<d>hcp"
33info="Use DHCP"
34type=radioitem
35data="network=dhcp"
36
37[testing]
38title=" Testing "
39
40item="<M>emory Test"
41info="Perform extensive memory testing"
42data="memtest"
43helpid=25
44ipappend=3
45
46item="<I>nvisible"
47info="You dont see this"
48type=invisible
49
50item="<E>xit menu"
51info="Go one level up"
52type=exitmenu
53
54[rescue]
55title=" Rescue Options "
56
57item="<L>inux Rescue"
58info="Run linresc"
59data="linresc"
60
61item="<D>os Rescue"
62info="dosresc"
63data="dosresc"
64
65item="<W>indows Rescue"
66info="winresc"
67data="winresc"
68
69item="<E>xit this menu"
70info="Go one level up"
71type=exitmenu
72
73[prep]
74title=" Prep options "
75
76item="<b>aseurl by IP?"
77info="Specify gui baseurl by IP address"
78type=checkbox
79data="baseurl=http://192.168.0.1"
80
81item="<m>ountcd?"
82info="Mount the cdrom drive?"
83type=checkbox
84data="mountcd"
85
86item="Network Initialization"
87info="How to initialise network device?"
88type=radiomenu
89data="netmenu"
90
91type=sep
92
93item="Reinstall <w>indows"
94info="Re-install the windows side of a dual boot setup"
95type=checkbox
96data="repair=win"
97
98item="Reinstall <l>inux"
99info="Re-install the linux side of a dual boot setup"
100type=checkbox
101data="repair=lin"
102
103type=sep
104
105item="<R>un prep now"
106info="Execute prep with the above options"
107data="prep"
108argsmenu="prep"
109
110item="<E>xit this menu"
111info="Go up one level"
112type=exitmenu
113
114[main]
115
116title=" Main Menu "
117
118type=login
119
120item="<P>repare"
121info="prep"
122data="prep"
123
124item="<P>rep options..."
125info="Options for prep"
126type=submenu
127data="prep"
128
129item="<R>escue options..."
130info="Troubleshoot a system"
131type=submenu
132data="rescue"
133helpid=26
134
135item="<T>esting..."
136info="Options to test hardware"
137type=submenu
138data="testing"
139
140item="<E>xit to prompt"
141info="Exit the menu system"
142type=exitmenu
143