slitaz-forge view mirror/root/ipxe/tiny.ipxe @ rev 699

Update webboot with slitaz-rolling-core-5in1.iso
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon May 13 09:29:34 2019 +0200 (2019-05-13)
parents f974819085be
children
line source
1 #!ipxe
3 set menu-timeout 3000
5 :menu
6 menu Tiny SliTaz Web boot (needs a 386sx with 8Mb)
7 item --key q return ..
8 item --gap
9 item --key u tinyus Tiny Slitaz (us)
10 item --key f tinyfr Tiny Slitaz (fr)
11 item --key v tinyvnc Tiny VNC
12 choose --timeout ${menu-timeout} target || goto exit
13 set menu-timeout 0
14 goto ${target}
16 :tinyus
17 imgfree
18 kernel /pxe/tiny/bzImage.gz
19 initrd /pxe/tiny/rootfs.gz
20 boot
21 goto menu
23 :tinyfr
24 imgfree
25 kernel /pxe/tiny/bzImage.gz
26 initrd /pxe/tiny/rootfs-fr.gz
27 boot
28 goto menu
30 :tinyvnc
31 imgfree
32 kernel /pxe/tiny/vnc/bzImage.gz vga=ask
33 initrd /pxe/tiny/vnc/rootfs.gz
34 boot
35 goto menu
37 :return
38 chain --autofree /pxe/ipxe/menu.ipxe
39 goto menu