We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c7373a5 + a320441 commit 09058c0Copy full SHA for 09058c0
tools-image/Dockerfile
@@ -96,6 +96,7 @@ COPY ./config.yaml /config/manifest.yaml
96
COPY ./entrypoint.sh /entrypoint.sh
97
COPY ./add-cloud-init.sh /add-cloud-init.sh
98
COPY ./os-release.tmpl /os-release.tmpl
99
+COPY ./ipxe.tmpl /ipxe.tmpl
100
COPY ./update-os-release.sh /update-os-release.sh
101
102
# ARM helpers
tools-image/ipxe.tmpl
@@ -0,0 +1,7 @@
1
+#!ipxe
2
+
3
+set dns 8.8.8.8
4
+ifconf
5
+kernel ${RELEASE_URL}/${VERSION}/${ISO_NAME}-kernel root=live:${RELEASE_URL}/${VERSION}/${ISO_NAME}.squashfs initrd=${ISO_NAME}-initrd rd.neednet=1 ip=dhcp rd.cos.disable netboot nodepair.enable config_url=${config} console=tty1 console=ttyS0 rd.live.overlay.overlayfs ${cmdline}
6
+initrd ${RELEASE_URL}/${VERSION}/${ISO_NAME}-initrd
7
+boot
0 commit comments