Skip to content

Commit

Permalink
Fix #23 build UEFI iPXE image
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjsimpson committed Dec 2, 2024
1 parent b7d2b41 commit 494089c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ jobs:
EOF
- name: iPXE Build iPXE ISO
# Why do I see "file:autoexec.ipxe not found" when
# this ipxe.iso boots?
# Answer: It's not an error, it's information and not requried.
# See https://github.com/ipxe/ipxe/issues/643#issuecomment-2486543385
#
run: |
cd ipxe/src
pwd
Expand All @@ -78,11 +83,10 @@ jobs:
echo Enable https download
sed -i 's/undef.*DOWNLOAD_PROTO_HTTPS/define DOWNLOAD_PROTO_HTTPS/g' config/general.h
echo Build iPXE ISO
make \
make bin-x86_64-efi/ipxe.iso \
DEBUG=tls,httpcore,x509,certstore \
CERT=ca.pem,isrgrootx1.pem,lets-encrypt-r3.pem \
TRUST=ca.pem,isrgrootx1.pem,lets-encrypt-r3.pem \
bin/ipxe.iso \
EMBED=script.ipxe
- name: iPXE Publish iPXE ISO artifact
Expand Down

0 comments on commit 494089c

Please sign in to comment.