iPXE discussion forum
boot command does not do anything - Printable Version

+- iPXE discussion forum (https://forum.ipxe.org)
+-- Forum: iPXE user forums (/forumdisplay.php?fid=1)
+--- Forum: General (/forumdisplay.php?fid=2)
+--- Thread: boot command does not do anything (/showthread.php?tid=27221)



boot command does not do anything - rodehoed - 2020-08-14 15:25

I'm slowly converting some ipxe scripts to be compatible with EFI, and making progress!

I got one problem left and I cannot see the reason why (maybe I have stared to it, the whole day!). So I really someone can help me out!

In the old (BIOS) situation I had an ISO of GRML (small linux distro for recovery which I could load with the memdisk.iso hack. Ofcourse this won't work with UEFI and I have made the following config:

Code:
dhcp net0
set httpsrc http://x.x.x.x.x/grml
echo 'Loading initrd...'
set httpsrc http://185.67.200.45/grml
initrd ${httpsrc}/boot/grml64small/initrd.img initrd
echo 'Chaining'
chain ${httpsrc}/boot/grml64small/vmlinuz boot=live fetch=${httpsrc}/live/grml64-small/grml64-small.squashfs apm=power-off nomce noprompt noeject grml2ram vga=791 lang=de ssh=grml
sleep 2
boot

The above code should work on BIOS mode, but when reaching the boot command nothing happens, no errors, just nothing Huh

imgstat:
Code:
vmlinuz : 5751952 bytes [EFI] [SELECTED] "boot=live fetch=http://185.67.200.45/grml/live/grml64-small/grml64-small.squashfs apm=power-off nomce noprompt noeject grml2ram vga=791 lang=de ssh=grml"                                
initrd.img : 30557204 bytes "initrd.img"

Big Heart if anyone could point me to the right direction!

References:
http://ml.grml.org/pipermail/grml/2017-November/011716.html
http://www.jimmy.co.at/weblog/2016/04/22/booting-grml-via-ipxe/ (the old hacky way)