From a9b18b58210f3ca2bbdcb9644f47dcebf5fc1510 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B8rn=20Lindahl?= Date: Sun, 1 Feb 2026 01:00:00 +0100 Subject: [PATCH] simplified, removed --name etc --- http/boot.ipxe | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/http/boot.ipxe b/http/boot.ipxe index 0056641..f594a4a 100644 --- a/http/boot.ipxe +++ b/http/boot.ipxe @@ -1,10 +1,10 @@ #!ipxe echo Booting Ubuntu Noble K3s Node via iPXE -echo Loading kernel from http://192.168.100.1:8800/vmlinuz -kernel --name vmlinuz http://192.168.100.1:8800/vmlinuz -echo Loading initramfs from http://192.168.100.1:8800/initrd-netboot.img -initrd --name initrd http://192.168.100.1:8800/initrd-netboot.img +echo Loading kernel... +kernel http://192.168.100.1:8800/vmlinuz +echo Loading initramfs... +initrd http://192.168.100.1:8800/initrd-netboot.img echo Setting kernel arguments for HTTP root mounting -imgargs vmlinuz boot=netboot root=http://192.168.100.1:8800/filesystem.squashfs rootfstype=squashfs overlayroot=tmpfs ip=dhcp console=tty0 console=ttyS0,115200 earlyprintk=serial,ttyS0,115200 loglevel=7 +imgargs vmlinuz initrd=initrd-netboot.img boot=netboot root=http://192.168.100.1:8800/filesystem.squashfs rootfstype=squashfs overlayroot=tmpfs ip=dhcp console=tty0 console=ttyS0,115200 loglevel=7 echo Booting system... -boot vmlinuz +boot