Created
February 9, 2018 21:43
-
-
Save anonymous/7c028e7195217cb9269a429a701317df to your computer and use it in GitHub Desktop.
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://download-ib01.fedoraproject.org/pub/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/vmlinuz initrd=initrd.img repo=${repo} console=ttyAMA0,115200 | |
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