diff --git a/.gitignore b/.gitignore index 4408cb5..c2b1cf8 100644 --- a/.gitignore +++ b/.gitignore @@ -222,3 +222,7 @@ /lorax-37.6.tar.gz /lorax-37.7.tar.gz /lorax-37.8.tar.gz +/lorax-37.9.tar.gz +/lorax-37.10.tar.gz +/lorax-37.11.tar.gz +/lorax-37.12.tar.gz diff --git a/lorax.spec b/lorax.spec index fb056d1..098a513 100644 --- a/lorax.spec +++ b/lorax.spec @@ -3,7 +3,7 @@ %define debug_package %{nil} Name: lorax -Version: 37.8 +Version: 37.12 Release: 1%{?dist} Summary: Tool for creating the anaconda install images @@ -172,6 +172,25 @@ make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install %{_datadir}/lorax/templates.d/* %changelog +* Wed Aug 09 2023 Brian C. Lane 37.12-1 +- Exclude more obsoleted libertas firmware packages (awilliam@redhat.com) + +* Mon Aug 07 2023 Brian C. Lane 37.11-1 +- runtime-install: excluded renamed olpc firmware package (awilliam@redhat.com) +- runtime-install: exclude renamed iwl firmware packages (awilliam@redhat.com) + +* Mon Dec 12 2022 Brian C. Lane 37.10-1 +- tests: Add tzdata package to minimizer test setup (bcl@redhat.com) +- test: Use Fedora 37 container (bcl@redhat.com) +- mkksiso: Disable running mkefiboot in container tests (bcl@redhat.com) +- mkksiso: Rebuild efiboot.img for UEFI enabled isos (bcl@redhat.com) +- gitleaks: Add config file to ignore known fake secrets (bcl@redhat.com) +- workflows: Switch to actions/checkout@v3 (bcl@redhat.com) + +* Mon Nov 28 2022 Brian C. Lane 37.9-1 +- Use unicode.pf2 from /usr/share/grub/ (bcl@redhat.com) +- On ppc64le Use core.elf from grub2 package (bcl@redhat.com) + * Mon Jul 25 2022 Brian C. Lane 37.8-1 - mkksiso: Optionally support 3 arguments or --ks (bcl@redhat.com) - mkksiso: Add -U to xorriso on ppc64le (bcl@redhat.com) diff --git a/sources b/sources index 7dfc877..63d364d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (lorax-37.8.tar.gz) = 8669ea6b873f4376cf5cace5d2eaab969bfe49f5f594f3bb0968319049c99d052379bfb7c6e5233bae7aa6a525c61c5220a3a0b3e58c7bbbecf1d72498ded25f +SHA512 (lorax-37.12.tar.gz) = 56fbbdc5240e828e03b626f7931893d9b8fd3b16188d0793f71ba556f52988428ccbae17c1671a3fe83bfc7ab4473d6d0ef1ba04f250229ba93edf41870fcff8 diff --git a/tests/scripts/run_tests.sh b/tests/scripts/run_tests.sh index d544946..3b67dc7 100755 --- a/tests/scripts/run_tests.sh +++ b/tests/scripts/run_tests.sh @@ -199,12 +199,12 @@ function run_all { umount_dirs } -# All of the changes as a user (lorax-ted) +# All of the changes as a user (lorax-ted) with --skip-mkefiboot function run_as_user { running "Use all the options as a user" [ ! -e "/home/lorax-ted" ] && useradd -m lorax-ted - su - lorax-ted -c "mkksiso -a /etc/services -V "mkksiso-test" -c "console=ttyS0,115200n8" --rm "quiet" --ks $KS $BOOTISO $OUTISO" || exit 1 + su - lorax-ted -c "mkksiso --skip-mkefiboot -a /etc/services -V "mkksiso-test" -c "console=ttyS0,115200n8" --rm "quiet" --ks $KS $BOOTISO $OUTISO" || exit 1 mount $OUTISO $ISODIR || exit 1 test_ks @@ -213,7 +213,7 @@ function run_as_user { test_files test_quiet - status "Use all the options as a user" + status "Use all the options as a user with --skip-mkefiboot" umount_dirs } @@ -230,7 +230,7 @@ fi # Run lorax using the host's repository configuration file if [ ! -e "$BOOTISO" ]; then running "Build boot.iso with lorax" - lorax --product="Fedora" --version=rawhide --release=rawhide --volid="Fedora-rawhide-test" \ + lorax --product="Fedora" --version=37 --release=37 --volid="Fedora-37-test" \ $REPOS --isfinal --nomacboot /var/tmp/lorax-fedora-iso/ || exit 1 fi