File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,7 @@ COPY ./config.yaml /config/manifest.yaml
9696COPY ./entrypoint.sh /entrypoint.sh
9797COPY ./add-cloud-init.sh /add-cloud-init.sh
9898COPY ./os-release.tmpl /os-release.tmpl
99+ COPY ./ipxe.tmpl /ipxe.tmpl
99100COPY ./update-os-release.sh /update-os-release.sh
100101
101102# ARM helpers
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments