Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Booting Linux kernel under UEFI hangs immediately after download
2016-09-08, 22:27
Post: #1
Booting Linux kernel under UEFI hangs immediately after download
I am attempting to use iPXE to load the installers for various Linux Distributions onto UEFI enabled servers. The server's are able to boot correctly in BIOS mode, but fail when UEFI is enabled. When they fail, it is immediately after successfully downloading both the kernel and initrd. Nothing is printed after the ok message for the ftp download of the initrd and it hangs forever. This happens whether attempting to boot the installer for Ubuntu 16.04, Fedora 24, or CentOS 7.2.

This same setup works correctly when attempting to booth these same installers using the UEFI mode in a KVM/Qemu virtual machine.

Also, experiments with using PXE Grub on real hardware to boot the same kernels have been successful, but it relies on TFTP which is much slower.

Here's my script for installing Ubuntu 16.04:

#!ipxe
kernel ftp://server/pxeboot/ubuntu-installer/amd64/linux initrd=initramfs
initrd --name initramfs ftp://server/pxeboot/ubuntu-installer/amd64/initrd.gz
boot
Find all posts by this user
Quote this message in a reply
2016-09-09, 19:26
Post: #2
RE: Booting Linux kernel under UEFI hangs immediately after download
Add a echo something before boot so you know the initrd download succeeds, or an imgstat might be interesting.

Something that I can think of is if secure boot is enabled (a few implementations I have used of efi allowed ipxe to boot, but not to boot anything from within ipxe)

Building with make DEBUG=efi_image should give you some more output on what it does directly before executing your efi kernel.

Use GitHub Discussions
VRAM bin
Visit this user's website Find all posts by this user
Quote this message in a reply
2016-09-10, 00:36
Post: #3
RE: Booting Linux kernel under UEFI hangs immediately after download
I've discovered that a simple sleep 1 before the boot line is all it takes for most installers to boot correctly. Remove any sleep statement and it hangs as it did previously just when executing boot. If there is an imgstat or echo, it does print, but still hangs after if there's no sleep.

There's still an odd issue where CentOS fails to find the mount the initrd rootfs and panics when booting on hardware, yet works in a UEFI-enabled virtual machine. However, Ubuntu and Fedora fully load into the installer with the above fix.

Here's the output with imgstat and EFI debug enabled for Fedora:

tftp://10.1.1.1/ipxe/linux/fc24.bios... ok
EFIIMAGE 0xcc054688 could not load: Error 0x7f048183 (http://ipxe.org/7f048183)
http://ftp.10.1.1.1/fedora/isolinux/vmlinuz... ok
http://ftp.10.1.1.1/fedora/isolinux/initrd.img... ok
EFIIMAGE 0xcc054988 could not load: Error 0x7f048183 (http://ipxe.org/7f048183)
vmlinuz : 6277656 bytes [EFI] [SELECTED] "initrd=initramfs"
initramfs : 48206188 bytes
Sleeping...

And here's the script I used to boot it:

#!ipxe
kernel http://ftp.10.1.1.1/fedora/isolinux/vmlinuz initrd=initramfs
initrd --name initramfs http://ftp.10.1.1.1/fedora/isolinux/initrd.img
imgstat
echo Sleeping...
sleep 60
echo Boot
boot
Find all posts by this user
Quote this message in a reply
2016-09-10, 09:50
Post: #4
RE: Booting Linux kernel under UEFI hangs immediately after download
The issue with kernel not finding intird might be the pre 3.16 kernel bug see this post

For the other issue, which ipxe binary are you using, and are you using the latest git master?

Use GitHub Discussions
VRAM bin
Visit this user's website Find all posts by this user
Quote this message in a reply
2016-09-10, 15:28
Post: #5
RE: Booting Linux kernel under UEFI hangs immediately after download
In the case of CentOS 7.x if you download the initrd FIRST then the kernel, things generally work a little better because of memory mapping.

Code:
initrd --name initramfs ftp://10.1.1.1/fedora/isolinux/initrd.img
kernel ftp://10.1.1.1/fedora/isolinux/vmlinuz initrd=initramfs
imgstat
echo Sleeping...
sleep 60
echo Boot
boot

"Thus far, you have been adrift within the sheltered harbor of my patience..."
Find all posts by this user
Quote this message in a reply
2016-09-12, 17:58
Post: #6
RE: Booting Linux kernel under UEFI hangs immediately after download
When I first found the issue, I was still sitting on a mid-June version of the software, but after rebuilding with debugging and still seeing the issue, I pulled the latest from master and am using the August 31 commit 827dd1 as confirmed on the boot message printed by iPXE. It still requires I place a sleep 1 before the boot statement for it to boot on hardware. I am testing on a Dell PowerEdge R710, specifically. I'm using bin-x86_64-efi/snponly.efi

Swapping the order of initrd and kernel did fix the issue with CentOS.
Find all posts by this user
Quote this message in a reply
2016-09-12, 18:00 (This post was last modified: 2016-09-13 12:35 by MultimediaMan.)
Post: #7
RE: Booting Linux kernel under UEFI hangs immediately after download
(2016-09-12 17:58)langlorx Wrote:  When I first found the issue, I was still sitting on a mid-June version of the software, but after rebuilding with debugging and still seeing the issue, I pulled the latest from master and am using the August 31 commit 827dd1 as confirmed on the boot message printed by iPXE. It still requires I place a sleep 1 before the boot statement for it to boot on hardware. I am testing on a Dell PowerEdge R710, specifically. I'm using bin-x86_64-efi/snponly.efi

Swapping the order of initrd and kernel did fix the issue with CentOS.

Glad that worked for you.

If you use a different protocol, like http:// or nfs:// do you still need the sleep statement? It would be interesting to see the FTP server's logs as well (with and without the sleep statement).

"Thus far, you have been adrift within the sheltered harbor of my patience..."
Find all posts by this user
Quote this message in a reply
Post Reply 




User(s) browsing this thread: 1 Guest(s)