iPXE discussion forum
IPXE can't find my initramfs - Printable Version

+- iPXE discussion forum (https://forum.ipxe.org)
+-- Forum: iPXE user forums (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: IPXE can't find my initramfs (/showthread.php?tid=15006)



IPXE can't find my initramfs - ChrisLucas29 - 2018-11-09 14:20

Hello,
I create my own initramfs image and trying to load using an embedded IPXE script. The problem is that I don't know where I should put my initramfs file. This is my script:
Code:
#!ipxe
dhcp
kernel http://<path>
initrd init.igz
boot

I get a "No such file or direcory". I've put my initramfs image in /boot.


RE: IPXE can't find my initramfs - tbk - 2018-11-09 18:31

Hi,

you have to address the initrd also with the http://<path>


RE: IPXE can't find my initramfs - ChrisLucas29 - 2018-11-12 12:52

That's what I ended up doing. A bit of a detour but as long as it works, it's ok.