From 87c68159fd2d85035ab28ec9b727794098cfb7fc Mon Sep 17 00:00:00 2001 From: akanealw Date: Sun, 3 Dec 2023 02:13:10 -0600 Subject: [PATCH] testing --- files/debian-11.7/boot-auto.ipxe | 2 ++ files/debian-11.7/boot-manual.ipxe | 2 ++ files/debian-12.2/boot-auto.ipxe | 8 ++++++-- files/debian-12.2/boot-manual.ipxe | 9 ++++++--- files/debianlive-12.2/boot-live.ipxe | 11 +++++++---- files/debianlivecustom-12.2/boot-live.ipxe | 9 ++++++--- 6 files changed, 29 insertions(+), 12 deletions(-) diff --git a/files/debian-11.7/boot-auto.ipxe b/files/debian-11.7/boot-auto.ipxe index a6050d9..c4aca3f 100755 --- a/files/debian-11.7/boot-auto.ipxe +++ b/files/debian-11.7/boot-auto.ipxe @@ -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 diff --git a/files/debian-11.7/boot-manual.ipxe b/files/debian-11.7/boot-manual.ipxe index d6facd6..f4f124e 100755 --- a/files/debian-11.7/boot-manual.ipxe +++ b/files/debian-11.7/boot-manual.ipxe @@ -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 diff --git a/files/debian-12.2/boot-auto.ipxe b/files/debian-12.2/boot-auto.ipxe index 3e8920c..d360153 100755 --- a/files/debian-12.2/boot-auto.ipxe +++ b/files/debian-12.2/boot-auto.ipxe @@ -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 diff --git a/files/debian-12.2/boot-manual.ipxe b/files/debian-12.2/boot-manual.ipxe index 9c8d4ab..304a975 100755 --- a/files/debian-12.2/boot-manual.ipxe +++ b/files/debian-12.2/boot-manual.ipxe @@ -1,5 +1,8 @@ #!ipxe -kernel vmlinuz initrd=initrd -initrd initrd -boot \ No newline at end of file +set path http://192.168.1.50/files/debian-12.2 + +kernel ${path}/vmlinuz initrd=${path}/initrd +initrd ${path}/initrd + +boot diff --git a/files/debianlive-12.2/boot-live.ipxe b/files/debianlive-12.2/boot-live.ipxe index e0f44c6..30921d6 100755 --- a/files/debianlive-12.2/boot-live.ipxe +++ b/files/debianlive-12.2/boot-live.ipxe @@ -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 \ No newline at end of file +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 diff --git a/files/debianlivecustom-12.2/boot-live.ipxe b/files/debianlivecustom-12.2/boot-live.ipxe index 7cc24d0..9640fab 100755 --- a/files/debianlivecustom-12.2/boot-live.ipxe +++ b/files/debianlivecustom-12.2/boot-live.ipxe @@ -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 \ No newline at end of file