This commit is contained in:
2023-12-03 02:13:10 -06:00
parent 9e9fae5170
commit 87c68159fd
6 changed files with 29 additions and 12 deletions

View File

@@ -2,6 +2,8 @@
set path http://192.168.1.50/files/debian-11.7
set preseed http://192.168.1.50/files/debian
kernel ${path}/vmlinuz initrd=${path}/initrd hostname=debian domain=local auto=true url=${preseed}/debian-bullseye-preseed.cfg
initrd ${path}/initrd
boot

View File

@@ -1,6 +1,8 @@
#!ipxe
set path http://192.168.1.50/files/debian-11.7
kernel ${path}/vmlinuz initrd=${path}/initrd
initrd ${path}/initrd
boot

View File

@@ -1,5 +1,9 @@
#!ipxe
kernel vmlinuz initrd=initrd hostname=debian domain=local auto=true url=http://192.168.1.50/files/debian/debian-bookworm-preseed.cfg
initrd initrd
set path http://192.168.1.50/files/debian-12.2
set preseed http://192.168.1.50/files/debian
kernel ${path}/vmlinuz initrd=${path}/initrd hostname=debian domain=local auto=true url=${preseed}/debian-bookworm-preseed.cfg
initrd ${path}/initrd
boot

View File

@@ -1,5 +1,8 @@
#!ipxe
kernel vmlinuz initrd=initrd
initrd initrd
boot
set path http://192.168.1.50/files/debian-12.2
kernel ${path}/vmlinuz initrd=${path}/initrd
initrd ${path}/initrd
boot

View File

@@ -1,6 +1,9 @@
#!ipxe
kernel http://192.168.1.50/files/debianlive-12.2/live/vmlinuz
initrd http://192.168.1.50/files/debianlive-12.2/live/initrd.img
imgargs vmlinuz boot=live config hooks=filesystem username=live noeject fetch=http://192.168.1.50/files/debianlive-12.2/live/filesystem.squashfs
boot
set path http://192.168.1.50/files/debianlive-12.2/live
kernel ${path}/vmlinuz
initrd ${path}/initrd.img
imgargs vmlinuz boot=live config hooks=filesystem username=live noeject fetch=${path}/filesystem.squashfs
boot

View File

@@ -1,6 +1,9 @@
#!ipxe
kernel http://192.168.1.50/files/debianlivecustom-12.2/live/vmlinuz
initrd http://192.168.1.50/files/debianlivecustom-12.2/live/initrd
imgargs vmlinuz boot=live config hooks=filesystem username=live noeject fetch=http://192.168.1.50/files/debianlivecustom-12.2/live/filesystem.squashfs
set path http://192.168.1.50/files/debianlivecustom-12.2/live
kernel ${path}/vmlinuz
initrd ${path}/initrd
imgargs ${path}/vmlinuz boot=live config hooks=filesystem username=live noeject fetch=${path}/filesystem.squashfs
boot