wok view ipxe/stuff/ipxe.cmd @ rev 18859

Up 1.0v to 1.0.1v
author Leonardo Laporte <hackdorte@sapo.pt>
date Wed Jan 27 06:07:29 2016 +0000 (2016-01-27)
parents 962c4700fe2b
children 3432c28d8372
line source
1 #!ipxe
3 set menu-timeout 3000
4 dhcp ||
6 :menu
7 menu SliTaz net boot menu
8 item --key b boot Local boot
9 item --key l lan Your PXE boot
10 item --key w web SliTaz WEB boot
11 item --key r rolling SliTaz development version
12 item --key c config iPXE configuration
13 item --key e exit iPXE command line
14 choose --timeout ${menu-timeout} --default web target || goto exit
15 set menu-timeout 0
16 goto ${target}
18 :boot
19 exit
21 :exit
22 help
23 echo Type 'exit' to get the back to the menu
24 shell
25 goto menu
27 :web
28 imgfree
29 set weburl http://mirror.slitaz.org/pxe/
30 chain --autofree ${weburl}ipxe/menu.ipxe && boot ||
31 set weburl http://mirror.switch.ch/ftp/mirror/slitaz/pxe/
32 chain --autofree ${weburl}ipxe/menu.ipxe && boot ||
33 set weburl http://download.tuxfamily.org/slitaz/pxe/
34 chain --autofree ${weburl}ipxe/menu.ipxe && boot ||
35 set weburl http://mirror1.slitaz.org/pxe/
36 chain --autofree ${weburl}ipxe/menu.ipxe && boot ||
37 set weburl http://mirror2.slitaz.org/pxe/
38 chain --autofree ${weburl}ipxe/menu.ipxe && boot ||
39 set weburl http://mirror3.slitaz.org/pxe/
40 chain --autofree ${weburl}ipxe/menu.ipxe && boot ||
41 goto menu
43 :lan
44 autoboot ||
45 goto menu
47 :rolling
48 sanboot http://mirror.slitaz.org/iso/rolling/slitaz-rolling.iso ||
49 goto menu
51 :config
52 config
53 goto menu