Skip to content

Commit

Permalink
Update ipxe to a more recent version
Browse files Browse the repository at this point in the history
This is a tentative to make ipxe more close to the current version
and include some improvements and bug fixes.
Also improves compatibility with recent gcc and build libraries.

Signed-off-by: Riccardo Pittau <elfosardo@gmail.com>
  • Loading branch information
elfosardo committed Jul 25, 2024
1 parent ec1b879 commit 732b38d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ 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 9062544f6a0c69c249b90d21a08d05518aafc2ec && \
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 732b38d

Please sign in to comment.