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