- Hardcode ROOT_URL and OVERLAYROOT in netboot script - Remove cmdline parsing that was failing silently - Simplify boot.ipxe to chain to netboot.ipxe - Add rebuild-initramfs.sh helper script Resolves kernel panic caused by cmdline parsing issues.
6 lines
134 B
Plaintext
6 lines
134 B
Plaintext
#!ipxe
|
|
echo Configuring network via DHCP...
|
|
dhcp
|
|
echo Chaining to dynamic boot script...
|
|
chain http://192.168.100.1:8800/netboot.ipxe
|