Last active
February 11, 2018 18:03
-
-
Save zsmithnyc/fbde5fde4d46ca380dcc9da33185e3ae to your computer and use it in GitHub Desktop.
ipxe boot fedora27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Jon Masters suggests adding
acpi=force
to the kernel boot line