Skip to content

Instantly share code, notes, and snippets.

@zsmithnyc
Last active February 11, 2018 18:03
Show Gist options
  • Save zsmithnyc/fbde5fde4d46ca380dcc9da33185e3ae to your computer and use it in GitHub Desktop.
Save zsmithnyc/fbde5fde4d46ca380dcc9da33185e3ae to your computer and use it in GitHub Desktop.
ipxe boot fedora27
#!ipxe
# Set source URI
set mirror http://fedoramirror.joecompany.com/fedora-secondary/releases/27
# Detect CPU architecture and calculate repository URI
set arch aarch64
set repo ${mirror}/Everything/aarch64/os
# Start installer
kernel ${repo}/images/pxeboot/vmlinux.efi initrd=initrd.img inst.repo=${repo} console=ttyAMA0,115200 earlycon=pl011,0x87e024000000 acpi=force modprobe.blacklist=thunderx_zip
initrd ${repo}/images/pxeboot/initrd.img
boot
@vielmetti
Copy link

Jon Masters suggests adding acpi=force to the kernel boot line

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment