Skip to content

Instantly share code, notes, and snippets.

@vielmetti
Forked from zsmithnyc/gist:fbde5fde4d46ca380dcc9da33185e3ae
Last active February 11, 2018 10:05
Show Gist options
  • Save vielmetti/0d1cb0d956635064f12676dd60ae9a03 to your computer and use it in GitHub Desktop.
Save vielmetti/0d1cb0d956635064f12676dd60ae9a03 to your computer and use it in GitHub Desktop.
ipxe boot fedora27
#!ipxe
# Set source URI to Zac's new mirror
set mirror http://fedoramirror.joecompany.com/fedora-secondary/releases/27
# Set CPU architecture and repository URI
set arch aarch64
set repo ${mirror}/Everything/aarch64/os
# Start installer
#
# configure console
# force early console (earlycon)
# force ACPI instead of device tree
# blacklist "thunderx_zip" module
#
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