Skip to content

Commit

Permalink
Merge pull request metal3-io#533 from elfosardo/update-ipxe
Browse files Browse the repository at this point in the history
⚠️ Update ipxe version
  • Loading branch information
metal3-io-bot committed Jul 30, 2024
2 parents c467d7e + bd9319c commit 81032e7
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,16 @@ ARG BASE_IMAGE=quay.io/centos/centos:stream9

FROM $BASE_IMAGE AS ironic-builder

ARG IPXE_COMMIT_HASH=9062544f6a0c69c249b90d21a08d05518aafc2ec

RUN dnf install -y gcc git make xz-devel

WORKDIR /tmp

RUN git clone --depth 1 --branch v1.21.1 https://github.com/ipxe/ipxe.git && \
cd ipxe/src && \
RUN git clone https://github.com/ipxe/ipxe.git && \
cd ipxe && \
git reset --hard $IPXE_COMMIT_HASH && \
cd src && \
ARCH=$(uname -m | sed 's/aarch/arm/') && \
# NOTE(elfosardo): warning should not be treated as errors by default
NO_WERROR=1 make bin/undionly.kpxe "bin-$ARCH-efi/snponly.efi"
Expand Down

0 comments on commit 81032e7

Please sign in to comment.