- Install linux-image-generic-hwe-24.04 (6.14+) for RTL8125BP XID 689 support - Enable noble-updates and noble-security repositories in chroot - Add explicit rdinit=/init and panic=-1 kernel parameters for boot robustness - Rename CLAUDE.md to AGENTS.md for broader AI assistant coverage - Document dracut module alternative and verify-image.sh utility - Clean up initramfs netboot script comments
11 lines
493 B
Plaintext
11 lines
493 B
Plaintext
#!ipxe
|
|
echo Booting Ubuntu Noble K3s Node via iPXE
|
|
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 initrd=initrd-netboot.img rdinit=/init boot=netboot root=http://192.168.100.1:8800/filesystem.squashfs rootfstype=squashfs overlayroot=tmpfs ip=dhcp console=tty0 console=ttyS0,115200 loglevel=7 panic=-1
|
|
echo Booting system...
|
|
boot
|