forked from skunkie/ipxe-phpmenu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.php
50 lines (38 loc) · 1.59 KB
/
menu.php
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
<?php
require_once('params.php');
echo ":menu\n";
echo $header;
title("Disk Utilities", "hp");
item("GNOME Partition Editor (GParted)", "gparted", "gparted.php", "hp");
item("Clonezilla", "clonezilla", "clonezilla.php", "hp");
item("Acronis ...", "acronis", "submenu_acronis.php", "hp");
title("Diagnostics Utilities", "hp");
item("Memtest86+", "memtest86plus", "memtest86plus.php", "hp");
item("Hardware Detection Tool", "hdt", "hdt.php", "hp");
item_cmd("Config iPXE", "configipxe", "config", "p");
item_cmd("iPXE shell", "ipxeshell", "shell", "p");
title("Windows Preinstallation Environment", "hp");
item("Windows 7 PE", "win7pe", "win7pe.php", "hp");
item("Windows 7 PE [reboot.pro]", "win7pe_reboot_pro", "win7pe_reboot_pro.php", "hp");
title("Windows Deployment Services", "hp");
item("Deploy", "wdsdeploy", "wdsdeploy.php", "hp");
item("Capture", "wdscapture", "wdscapture.php", "hp");
title("Installation of Operating Systems", "p");
item("CentOS 6 x86_64", "install_centos6", "install_centos6.php", "p");
title("Live OS", "p");
item("CentOS 7 Live", "centos7live", "centos7live.php", "p");
title("VMware", "p");
item("Install VMware ESXi for HP server", "esxihp", "esxihp.php", "p");
item("Install VMware ESXi for Fujitsu server", "esxifujitsu", "esxifujitsu.php", "p");
echo "item --gap\n";
echo "item backtotop Back to top\n";
echo "item signin Sign in as a different user\n";
echo $default;
foreach ($entries as $i) {
echo "{$i}\n";
}
echo ":backtotop\n";
echo "goto menu\n";
echo ":signin\n";
echo "chain --replace --autofree {$url}boot.php\n";
?>