import ipxe-20181214-3.git133f4c47.el8

This commit is contained in:
CentOS Sources 2019-11-05 15:18:44 -05:00 committed by Andrew Lukoshko
parent 77bfb79dfa
commit 9be55f83b7

View File

@ -49,7 +49,7 @@
Name: ipxe Name: ipxe
Version: %{date} Version: %{date}
Release: 1.git%{hash}%{?dist} Release: 3.git%{hash}%{?dist}
Summary: A network boot loader Summary: A network boot loader
Group: System Environment/Base Group: System Environment/Base
@ -164,16 +164,18 @@ make_ipxe ISOLINUX_BIN=/usr/share/syslinux/isolinux.bin \
mkdir bin-combined mkdir bin-combined
for rom in %{qemuroms}; do for rom in %{qemuroms}; do
make_ipxe CONFIG=qemu bin/${rom}.rom make_ipxe CONFIG=qemu bin/${rom}.rom
make_ipxe CONFIG=qemu bin-i386-efi/${rom}.efidrv
make_ipxe CONFIG=qemu bin-x86_64-efi/${rom}.efidrv make_ipxe CONFIG=qemu bin-x86_64-efi/${rom}.efidrv
vid="0x${rom%%????}" vid="0x${rom%%????}"
did="0x${rom#????}" did="0x${rom#????}"
EfiRom -f "$vid" -i "$did" --pci23 \ EfiRom -f "$vid" -i "$did" --pci23 \
-b bin/${rom}.rom \ -b bin/${rom}.rom \
-ec bin-i386-efi/${rom}.efidrv \
-ec bin-x86_64-efi/${rom}.efidrv \ -ec bin-x86_64-efi/${rom}.efidrv \
-o bin-combined/${rom}.rom -o bin-combined/${rom}.rom
EfiRom -d bin-combined/${rom}.rom EfiRom -d bin-combined/${rom}.rom
# truncate to at least 256KiB
truncate -s \>256K bin-combined/${rom}.rom
# verify rom fits in 256KiB
test $(stat -c '%s' bin-combined/${rom}.rom) -le $((256 * 1024))
done done
%endif %endif
@ -236,6 +238,13 @@ done
%endif %endif
%changelog %changelog
* Tue Aug 13 2019 Danilo de Paula <ddepaula@redhat.com> - 20181210-3.git133f4c47
- Release bump
* Thu Jul 25 2019 Danilo de Paula <ddepaula@redhat.com> - 20181210-2.git133f4c47
- Resolves rhbz#1723702
(virtio rom near 256k boundary)
* Fri Dec 14 2018 Neil Horman <nhorman@redhat.com> - 20181210-1.git133f4c47 * Fri Dec 14 2018 Neil Horman <nhorman@redhat.com> - 20181210-1.git133f4c47
- Update to latest upstream - Update to latest upstream
- Add vlan cmds - Add vlan cmds