Skip to content

Commit

Permalink
fix: ipxe prompt arm64
Browse files Browse the repository at this point in the history
Fixes iPXE prompt hanging on ARM64

The fix is not added as a patch since `src/config/local` is supposed to
be user fixes added in iPXE and gitignored by the iPXE project

Fixes: siderolabs/sidero#806

Signed-off-by: Noel Georgi <git@frezbo.dev>
  • Loading branch information
frezbo committed Mar 31, 2022
1 parent 6041fd7 commit 4dace49
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ipxe/pkg.yaml
Expand Up @@ -17,6 +17,14 @@ steps:
tar -xzf ipxe.tar.gz --strip-components=1
patch -p1 < /pkg/patches/https.patch
# ref: https://github.com/siderolabs/sidero/issues/806
{{ if eq .ARCH "aarch64" }}
cat <<EOF > src/config/local/nap.h
#undef NAP_EFIARM
#define NAP_NULL
EOF
{{ end }}
build:
- |
cd src/
Expand Down

0 comments on commit 4dace49

Please sign in to comment.