diff --git a/debpreseedtest.ipxe b/debpreseedtest.ipxe new file mode 100644 index 0000000..516fd28 --- /dev/null +++ b/debpreseedtest.ipxe @@ -0,0 +1,12 @@ +#!ipxe + +# Round up our variables and display on the screen from boot.ipxe.cfg +echo Manufacturer: ${manufacturer} +echo Platform: ${platform} +echo Deployment Server: ${deploysvr} +echo TFTP URL: ${tftp-path} +echo HTTP URL: ${http-path} + +kernel ${tftp-path}\debian\linux url=${http-path}/preseed/testing.txt +initrd ${tftp-path}\debian\initrd.gz +boot \ No newline at end of file diff --git a/menu.ipxe b/menu.ipxe index e92b2ea..d61b22c 100644 --- a/menu.ipxe +++ b/menu.ipxe @@ -55,7 +55,7 @@ item deblive Debian Live System item fedoralatest Fedora Installer Latest (42) 64-bit item fedora41 Fedora Installer 41 64-bit item arch64 Arch Linux x64 -item alpine Alpine Linux Latest (3.21) +item alpine Alpine Linux Latest (3.22) choose --default debinst12 --timeout 600000 target && goto ${target} @@ -99,7 +99,7 @@ initrd ${tftp-path}\arch\amd-ucode.img boot :alpine -kernel ${tftp-path}\alpine\vmlinuz-virt console=tty0 modules=loop,squashfs nomodeset alpine_repo=https://dl-cdn.alpinelinux.org/alpine/v3.21/main modloop=${http-path}/isosrc/alpine/modloop-virt +kernel ${tftp-path}\alpine\vmlinuz-virt console=tty0 modules=loop,squashfs nomodeset alpine_repo=https://dl-cdn.alpinelinux.org/alpine/v3.22/main modloop=${http-path}/isosrc/alpine/modloop-virt initrd ${tftp-path}\alpine\initramfs-virt boot @@ -141,11 +141,11 @@ boot menu Testing Menu item --gap Testing Menu item mainmenu <--- Back -item deb12newsrv Debian 12 Installer - New Servers +item debtest Debian Preseed TESTING choose --default mainmenu --timeout 600000 target && goto ${target} -:deb12newsrv -kernel ${tftp-path}\debian\linux url=${http-path}/preseed/tng-srvnew.txt +:debtest +kernel ${tftp-path}\debian\linux url=${http-path}/preseed/testing.txt initrd ${tftp-path}\debian\initrd.gz boot \ No newline at end of file