summaryrefslogtreecommitdiffstats
path: root/server/ipxe/main.ipxe
blob: f6f3c00ec7d58c350e0d1ece5e10a6a1acb483b0 (plain) (blame)
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
#!ipxe
dhcp

# Wallpaper
set img http://christophermckinney.net/wp-content/uploads/2017/08/Wallpaper.png
console --picture ${img} --x 800 --y 600

:start
menu Please choose a webserver to load the ipxe menu:
item js Jannik
item uw Udo
item ch Chris
item sh [Shell]
choose target && goto ${target}

:js
chain http://10.4.9.123/boot.php
goto start
:uw
chain http://10.4.9.115/boot.php
goto start
:ch
chain http://10.4.9.122/boot.php
goto start
:sh
shell
goto start