aboutsummaryrefslogtreecommitdiff
path: root/tftp
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2025-10-11 11:34:59 +0100
committerdiogo464 <[email protected]>2025-10-11 11:34:59 +0100
commit521218ce06fbb7bd518eb6a069406936079e3ec2 (patch)
tree862e84ec23175119abb7652e197a4113e7fcc31b /tftp
parent89db26c86bf48a4c527778fc254765a38b7e9085 (diff)
initial working version
Diffstat (limited to 'tftp')
-rw-r--r--tftp/ipxe.efibin1044480 -> 0 bytes
-rw-r--r--tftp/test.ipxe25
2 files changed, 0 insertions, 25 deletions
diff --git a/tftp/ipxe.efi b/tftp/ipxe.efi
deleted file mode 100644
index d1c12b3..0000000
--- a/tftp/ipxe.efi
+++ /dev/null
Binary files differ
diff --git a/tftp/test.ipxe b/tftp/test.ipxe
deleted file mode 100644
index f4ee267..0000000
--- a/tftp/test.ipxe
+++ /dev/null
@@ -1,25 +0,0 @@
1#!ipxe
2
3:start
4#console --picture http://boot.ipxe.org/ipxe.png
5menu debian
6item --gap -- ---------------------- Net installer -----------------------------
7item --key 3 Debian9_x86 Debian 9 (3)2-bit net install
8item --key 6 Debian9_x86_64 Debian 9 (6)4-bit net install
9item --gap -- ------------------------- Options --------------------------------
10item --key g goback (G)o back to previous menu
11choose version && goto ${version} || goto start
12
13:Debian9_x86
14echo Booting Debian 9 32-bit
15kernel http://deb.debian.org/debian/dists/stretch/main/installer-i386/current/images/netboot/debian-installer/i386/linux initrd=initrd.gz
16initrd http://deb.debian.org/debian/dists/stretch/main/installer-i386/current/images/netboot/debian-installer/i386/initrd.gz
17boot || imgfree
18goto start
19
20:Debian9_x86_64
21echo Booting Debian 9 64-bit
22kernel http://deb.debian.org/debian/dists/trixie/main/installer-amd64/current/images/netboot/debian-installer/amd64/linux initrd=initrd.gz
23initrd http://deb.debian.org/debian/dists/trixie/main/installer-amd64/current/images/netboot/debian-installer/amd64/initrd.gz
24boot || imgfree
25goto start