Compare commits

...
Sign in to create a new pull request.

8 commits

Author SHA1 Message Date
Brian C. Lane
82e500f8c9 - Exclude more obsoleted libertas firmware packages (awilliam@redhat.com) 2023-08-09 10:58:17 -07:00
Brian C. Lane
bf51cf435f - runtime-install: excluded renamed olpc firmware package (awilliam@redhat.com)
- runtime-install: exclude renamed iwl firmware packages (awilliam@redhat.com)
- remove included renamed iwl firmware patch
2023-08-07 15:07:41 -07:00
Adam Williamson
a4397e55c3 Backport PR #1332 to handle renamed iwl firmware packages 2023-07-04 13:49:15 -07:00
Brian C. Lane
6bd35a6c7c Add updated lorax.spec 2023-05-31 09:28:53 -07:00
Brian C. Lane
957b54d5aa - Fix tmt test to use Fedora 37 repos instead of rawhide 2023-05-31 09:27:53 -07:00
Brian C. Lane
efc143dbf1 - Run user test with --skip-mkefiboot 2022-12-13 11:12:52 -08:00
Brian C. Lane
c96db89bcf - 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)
2022-12-12 14:53:21 -08:00
Brian C. Lane
4ec9c8420c - Use unicode.pf2 from /usr/share/grub/ (bcl@redhat.com)
- On ppc64le Use core.elf from grub2 package (bcl@redhat.com)
2022-11-28 14:47:52 -08:00
4 changed files with 29 additions and 6 deletions

4
.gitignore vendored
View file

@ -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

View file

@ -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 <bcl@redhat.com> 37.12-1
- Exclude more obsoleted libertas firmware packages (awilliam@redhat.com)
* Mon Aug 07 2023 Brian C. Lane <bcl@redhat.com> 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 <bcl@redhat.com> 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 <bcl@redhat.com> 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 <bcl@redhat.com> 37.8-1
- mkksiso: Optionally support 3 arguments or --ks (bcl@redhat.com)
- mkksiso: Add -U to xorriso on ppc64le (bcl@redhat.com)

View file

@ -1 +1 @@
SHA512 (lorax-37.8.tar.gz) = 8669ea6b873f4376cf5cace5d2eaab969bfe49f5f594f3bb0968319049c99d052379bfb7c6e5233bae7aa6a525c61c5220a3a0b3e58c7bbbecf1d72498ded25f
SHA512 (lorax-37.12.tar.gz) = 56fbbdc5240e828e03b626f7931893d9b8fd3b16188d0793f71ba556f52988428ccbae17c1671a3fe83bfc7ab4473d6d0ef1ba04f250229ba93edf41870fcff8

View file

@ -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