From cc4ae5d19bad4fc40df8616b21e08110444f2e6a Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Tue, 19 Jun 2018 08:59:36 -0700 Subject: [PATCH] Build lorax-composer and composer-cli without lorax files lorax is built from rhel7-branch This also changes the lorax Requires to 19.7.16 The lorax package will change at a slower rate than lorax-composer, so making it require the exact same version doesn't make sense. --- lorax-composer.spec | 115 +++++ lorax.spec | 1188 ------------------------------------------- 2 files changed, 115 insertions(+), 1188 deletions(-) create mode 100644 lorax-composer.spec delete mode 100644 lorax.spec diff --git a/lorax-composer.spec b/lorax-composer.spec new file mode 100644 index 00000000..c3583c01 --- /dev/null +++ b/lorax-composer.spec @@ -0,0 +1,115 @@ +%define debug_package %{nil} + +Name: lorax-composer +Version: 19.7.16 +Release: 2%{?dist} +Summary: Lorax Image Composer API Server + +Group: Applications/System +License: GPLv2+ +URL: https://github.com/weldr/lorax +# To generate Source0 do: +# git clone https://github.com/weldr/lorax +# git checkout -b archive-branch lorax-%%{version}-%%{release} +# tito build --tgz +Source0: %{name}-%{version}.tar.gz + +BuildRequires: python2-devel +# For Sphinx documentation build +BuildRequires: python-sphinx yum python-mako pykickstart +BuildRequires: python-flask python-gobject libgit2-glib python2-pytoml python-semantic_version + +Requires: lorax >= 19.7.16 +Requires(pre): /usr/bin/getent +Requires(pre): /usr/sbin/groupadd +Requires(pre): /usr/sbin/useradd + +Requires: python2-pytoml +Requires: python-semantic_version +Requires: libgit2 +Requires: libgit2-glib +Requires: python-flask +Requires: python-gevent +Requires: anaconda-tui +Requires: qemu-img +Requires: tar + +%{?systemd_requires} +BuildRequires: systemd + +%description +lorax-composer provides a REST API for building images using lorax. + +%package -n composer-cli +Summary: A command line tool for use with the lorax-composer API server + +Requires: python-urllib3 + +%description -n composer-cli +A command line tool for use with the lorax-composer API server. Examine recipes, +build images, etc. from the command line. + +%prep +%setup -q + +%build +make docs + +%install +rm -rf $RPM_BUILD_ROOT +make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install + +# Do Not Package the lorax files +rm -f $RPM_BUILD_ROOT/%{python_sitelib}/lorax-*.egg-info +rm -rf $RPM_BUILD_ROOT/%{python_sitelib}/pylorax/*py +rm -rf $RPM_BUILD_ROOT/%{python_sitelib}/pylorax/*py? +rm -rf $RPM_BUILD_ROOT/%{_datadir}/lorax/appliance +rm -rf $RPM_BUILD_ROOT/%{_datadir}/lorax/config_files +rm -rf $RPM_BUILD_ROOT/%{_datadir}/lorax/live +rm -rf $RPM_BUILD_ROOT/%{_datadir}/lorax/pxe-live +rm -rf $RPM_BUILD_ROOT/%{_mandir}/man1/* +rm -f $RPM_BUILD_ROOT/%{_datadir}/lorax/*tmpl +rm -f $RPM_BUILD_ROOT/%{_sbindir}/lorax +rm -f $RPM_BUILD_ROOT/%{_sbindir}/livemedia-creator +rm -f $RPM_BUILD_ROOT/%{_sbindir}/mkefiboot +rm -f $RPM_BUILD_ROOT/%{_bindir}/image-minimizer +rm -f $RPM_BUILD_ROOT/%{_bindir}/mk-s390-cdboot +rm -f $RPM_BUILD_ROOT/%{_sysconfdir}/lorax/lorax.conf + +%pre +getent group weldr >/dev/null 2>&1 || groupadd -r weldr >/dev/null 2>&1 || : +getent passwd weldr >/dev/null 2>&1 || useradd -r -g weldr -d / -s /sbin/nologin -c "User for lorax-composer" weldr >/dev/null 2>&1 || : + +%post +%systemd_post lorax-composer.service +%systemd_post lorax-composer.socket + +%preun +%systemd_preun lorax-composer.service +%systemd_preun lorax-composer.socket + +%postun +%systemd_postun_with_restart lorax-composer.service +%systemd_postun_with_restart lorax-composer.socket + +%files +%defattr(-,root,root,-) +%doc COPYING AUTHORS +%doc docs/html +%dir %{_sysconfdir}/lorax/ +%config(noreplace) %{_sysconfdir}/lorax/composer.conf +%{python_sitelib}/pylorax/api/* +%dir %{_datadir}/lorax/composer +%{_datadir}/lorax/composer/* +%{_sbindir}/lorax-composer +%{_unitdir}/lorax-composer.service +%{_unitdir}/lorax-composer.socket +%{_tmpfilesdir}/lorax-composer.conf + +%files -n composer-cli +%{_bindir}/composer-cli +%{python_sitelib}/composer/* + +%changelog +* Tue Jun 19 2018 Brian C. Lane - 19.7.16-2 +- New lorax-composer only package diff --git a/lorax.spec b/lorax.spec deleted file mode 100644 index e41fc95f..00000000 --- a/lorax.spec +++ /dev/null @@ -1,1188 +0,0 @@ -%define debug_package %{nil} - -Name: lorax -Version: 19.7.17 -Release: 1%{?dist} -Summary: Tool for creating the anaconda install images - -Group: Applications/System -License: GPLv2+ -URL: https://github.com/weldr/lorax -# To generate Source0 do: -# git clone https://github.com/weldr/lorax -# git checkout -b archive-branch lorax-%%{version}-%%{release} -# tito build --tgz -Source0: %{name}-%{version}.tar.gz - -BuildRequires: python2-devel -BuildRequires: python-sphinx yum python-mako pykickstart - -Requires: GConf2 -Requires: cpio -Requires: device-mapper -Requires: dosfstools -Requires: e2fsprogs -Requires: findutils -Requires: gawk -Requires: genisoimage -Requires: glib2 -Requires: glibc -Requires: glibc-common -Requires: gzip -Requires: isomd5sum -Requires: libselinux-python -Requires: module-init-tools -Requires: parted -Requires: python-mako -Requires: squashfs-tools >= 4.2 -Requires: util-linux -Requires: xz -Requires: yum -Requires: pykickstart -Requires: dracut >= 030 - -%if 0%{?fedora} -# Fedora specific deps -Requires: fedup-dracut -Requires: fedup-dracut-plymouth -%endif - -%if 0%{?el7} -# RHEL 7 specific deps -Requires: redhat-upgrade-dracut -Requires: redhat-upgrade-dracut-plymouth -%endif - -%ifarch %{ix86} x86_64 -Requires: syslinux >= 4.02-5 -%endif - -%ifarch ppc ppc64 ppc64le -Requires: kernel-bootwrapper -Requires: grub2 -Requires: grub2-tools -%endif - -%ifarch s390 s390x -Requires: openssh -%endif - -# Moved image-minimizer tool to lorax -Provides: appliance-tools-minimizer = %{version}-%{release} -Obsoletes: appliance-tools-minimizer < 007.7-3 - -%description -Lorax is a tool for creating the anaconda install images. - -It also includes livemedia-creator which is used to create bootable livemedia, -including live isos and disk images. It can use libvirtd for the install, or -Anaconda's image install feature. - -%prep -%setup -q - -%build -make docs - -%install -rm -rf $RPM_BUILD_ROOT -make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install - -# Do Not Package lorax-composer or composer-cli files -rm -rf $RPM_BUILD_ROOT/%{python_sitelib}/pylorax/api -rm -rf $RPM_BUILD_ROOT/%{python_sitelib}/composer -rm -rf $RPM_BUILD_ROOT/%{_datadir}/lorax/composer -rm -f $RPM_BUILD_ROOT/%{_sysconfdir}/lorax/composer.conf -rm -f $RPM_BUILD_ROOT/%{_sbindir}/lorax-composer -rm -f $RPM_BUILD_ROOT/%{_bindir}/composer-cli -rm -f $RPM_BUILD_ROOT/%{_unitdir}/lorax-composer.* -rm -f $RPM_BUILD_ROOT/%{_tmpfilesdir}/lorax-composer.conf - -%files -%defattr(-,root,root,-) -%doc COPYING AUTHORS README.livemedia-creator README.product -%doc docs/*ks -%doc docs/html -%{python_sitelib}/pylorax -%exclude %{python_sitelib}/pylorax/api -%{python_sitelib}/*.egg-info -%{_sbindir}/lorax -%{_sbindir}/mkefiboot -%{_sbindir}/livemedia-creator -%{_bindir}/image-minimizer -%{_bindir}/mk-s390-cdboot -%dir %{_sysconfdir}/lorax -%config(noreplace) %{_sysconfdir}/lorax/lorax.conf -%dir %{_datadir}/lorax -%{_datadir}/lorax/* -%exclude %{_datadir}/lorax/composer -%{_mandir}/man1/*.1* - -%changelog -* Tue Jun 19 2018 Brian C. Lane 19.7.17-1 -- Exclude lorax-composer and composer-cli code from the lorax build (bcl) - Resolves: rhbz#1547759 - -* Fri Jun 15 2018 Brian C. Lane 19.7.16-2 -- Fixup the lorax.spec after rebasing on 19.6.105-1 (bcl) - Resolves: rhbz#1547759 - -* Fri Jun 15 2018 Brian C. Lane 19.7.16-2 -- Rebase of lorax-composer branch onto 19.6.105-1 -- See https://github.com/weldr/lorax/tree/lorax-composer for individual commits - for 19.7.1-1 thru 19.7.16-1 - Resolves: rhbz#1547759 - -* Mon Jun 11 2018 Brian C. Lane 19.6.105-1 -- Retry losetup if loop_attach fails (bcl) - Resolves: rhbz#1589084 -- Add reqpart to example kickstart files (bcl) - Resolves: rhbz#1545289 -- Increase default ram used with lmc and virt to 2048 (bcl) - Resolves: rhbz#1538747 -- Add --virt-uefi to boot the VM using OVMF (bcl) - Resolves: rhbz#1546715 - Resolves: rhbz#1544805 -- Add --dracut-arg support to lorax (bcl) - Resolves: rhbz#1452220 -- livemedia-creator: Search for kernel/initrd under /images/pxeboot (bcl) - Resolves: rhbz#1522629 - -* Wed Jan 24 2018 Brian C. Lane 19.6.104-1 -- Replace fedora-gnome-theme with gnome-themes-standard (bcl) - Resolves: rhbz#1537573 - -* Thu Jan 11 2018 Brian C. Lane 19.6.103-1 -- Keep hid-multitouch and i2c-hid modules. (rhbz#1526323) (sbueno+anaconda) - Resolves: rhbz#1526323 - -* Tue Jan 02 2018 Brian C. Lane 19.6.102-1 -- Add grub2-tools to aarch64 (bcl) - Resolves: rhbz#1489707 - -* Tue Oct 17 2017 Brian C. Lane 19.6.101-1 -- Restore all of the grub2-tools on x86_64 and i386 (bcl) - Resolves: rhbz#1489707 - -* Mon Oct 09 2017 Brian C. Lane 19.6.100-1 -- Add dependencies for SE/HMC (vponcova) - Resolves: rhbz#1498834 - -* Fri Sep 29 2017 Brian C. Lane 19.6.99-1 -- s390 doesn't need to graft product.img and updates.img into /images (bcl) - Related: rhbz#1478448 - -* Wed Sep 27 2017 Brian C. Lane 19.6.98-1 -- Write a list of installed packages to /root/lorax-packages.log (bcl) - Resolves: rhbz#1416155 -- Set the releasever and install gpg keys when using --repo (bcl) - Related: rhbz#1430479 - -* Fri Aug 18 2017 Brian C. Lane 19.6.97-1 -- Remove -boot-info-table from s390 boot.iso creation (bcl) - Related: rhbz#1478448 - -* Tue Aug 15 2017 Brian C. Lane 19.6.96-1 -- Install mk-s390-cdboot to /usr/bin/ (bcl) - Related: rhbz#1478448 - -* Fri Aug 11 2017 Brian C. Lane 19.6.95-1 -- IsoMountpoint: Add ppc64le kernel to search (bcl) - Resolves: rhbz#1373358 -- livemedia-creator: Report correct results dir (bcl) - Resolves: rhbz#1374609 -- Add creation of a bootable s390 iso (bcl) - Resolves: rhbz#1478448 -- Add mk-s360-cdboot utility (bcl) - Related: rhbz#1478448 -- Fix systemctl command (bcl) - Resolves: rhbz#1478247 -- Add the version to the log (bcl) - Resolves: rhbz#1335456 -- Include the dracut fips module in the initrd (bcl) - Resolves: rhbz#1341280 -- Fix loop_wait (bcl) - Resolves: rhbz#1462150 -- Document kickstart restrictions on %%include (bcl) - Resolves: rhbz#1418500 -- Add support for --repo to read yum .repo files directly (bcl) - Resolves: rhbz#1430479 -- Package grub2-efi-ia32 need to be added explicitly to example kickstarts. - (mhruscak) - Resolves: rhbz#1458937 - -* Fri Jun 23 2017 Brian C. Lane 19.6.94-1 -- Fix waiting for loop devices (bcl) - Resolves: rhbz#1462150 - -* Thu Jun 22 2017 Brian C. Lane 19.6.93-1 -- Make sure loop device is setup (bcl) - Resolves: rhbz#1462150 - -* Tue Jun 20 2017 Brian C. Lane 19.6.92-1 -- Remove the iso-graft check from the aarch64.tmpl (bcl) - Resolves: rhbz#1369014 - -* Thu Jun 15 2017 Brian C. Lane 19.6.91-1 -- Update livemedia-creator examples (bcl) - Resolves: rhbz#1458937 - -* Mon Jun 05 2017 Brian C. Lane 19.6.90-1 -- Fix aarch64 efi.tmpl invocation for live images (bcl) - Related: rhbz#1310775 - -* Wed May 31 2017 Brian C. Lane 19.6.89-1 -- Remove incorrect variables from rhel7-livemedia.ks example (bcl) - Resolves: rhbz#1430547 - -* Tue May 30 2017 Brian C. Lane 19.6.88-1 -- Add support for aarch64 live images (bcl) - Resolves: rhbz#1369014 - -* Thu May 18 2017 Brian C. Lane 19.6.87-1 -- Increase rootfs size for rhel7-livemedia.ks example (bcl) - Resolves: rhbz#1451760 -* Tue Apr 11 2017 Brian C. Lane 19.6.86-1 -- lorax: Remove cairo-sphinx from the image (bcl) - Resolves: rhbz#1355681 - -* Fri Apr 07 2017 Brian C. Lane 19.6.85-1 -- Fix aarch64 efi.tmpl invocation (pjones) - Related: rhbz#1310775 - -* Tue Mar 28 2017 Brian C. Lane 19.6.84-1 -- runtime-cleanup.tmpl: don't delete localedef (jlebon) - Related: rhbz#1429576 - -* Wed Mar 22 2017 Brian C. Lane 19.6.83-1 -- Make 64-bit kernel on 32-bit firmware work for x86 efi machines (pjones) - Resolves: rhbz#1310775 - -* Fri Mar 17 2017 Brian C. Lane 19.6.82-1 -- Add --noverifyssl to lorax (bcl) - Resolves: rhbz#1430483 - -* Thu Mar 02 2017 Brian C. Lane 19.6.81-1 -- Keep fsfreeze in install environment (rmarshall) - Related: rhbz#1315468 -- Fix duplicate kernel messages in /tmp/syslog (rvykydal) - Resolves: rhbz#1382611 - -* Wed Feb 22 2017 Brian C. Lane 19.6.80-1 -- Add dependency for lvmdump -l command (jkonecny) - Related: rhbz#1255659 - -* Fri Feb 17 2017 Brian C. Lane 19.6.79-1 -- templates: Enusre basic.target.wants dir exists for rngd (walters) - Resolves: rhbz#1377430 - -* Thu Sep 08 2016 Brian C. Lane 19.6.78-1 -- Don't log dracut initrd regeneration messages into /tmp/syslog (rvykydal) - Related: rhbz#1369439 -- Use imjournal for rsyslogd instead of sharing /dev/log with journal (rvykydal) - Resolves: rhbz#1369439 - -* Mon Aug 01 2016 Brian C. Lane 19.6.77-1 -- livemedia-creator: Install genericdvd.prm (bcl) - Related: rhbz#1269213 -- livemedia-creator: Use imgutils.copytree for results (bcl) - Resolves: rhbz#1362157 - -* Thu Jul 28 2016 Brian C. Lane 19.6.76-1 -- livemedia-creator: Fix logging (bcl) - Resolves: rhbz#1361031 - -* Tue Jul 26 2016 Brian C. Lane 19.6.75-1 -- livemedia-creator: Use hd:LABEL for stage2 iso (bcl) - Resolves: rhbz#1355882 - -* Mon Jul 18 2016 Brian C. Lane 19.6.74-1 -- Keep fb_sys_fops module needed for ast support (bcl) - Resolves: rhbz#1272658 - -* Fri Jun 24 2016 Brian C. Lane 19.6.73-1 -- Add back libraries needed by spice-vdagent (dshea) - Resolves: rhbz#1347737 - -* Wed Jun 22 2016 Brian C. Lane 19.6.72-1 -- Make sure cmdline config file exists (bcl) - Resolves: rhbz#1348302 -- Keep all of the kernel drivers/target/ modules (bcl) - Resolves: rhbz#1348381 -- Keep the pci utilities for use in kickstarts (bcl) - Resolves: rhbz#1344926 - -* Thu May 05 2016 Brian C. Lane 19.6.71-1 -- Create an empty selinux config file (bcl) - Resolves: rhbz#1332147 - -* Thu Apr 21 2016 Brian C. Lane 19.6.70-1 -- Use eurlatgr as the console font (bcl) - Resolves: rhbz#1265354 - -* Fri Apr 15 2016 Brian C. Lane 19.6.69-1 -- Remove Metacity override and theme (bcl) - Resolves: rhbz#1324890 -- Copying same file shouldn't crash (bcl) - Resolves: rhbz#1269213 - -* Wed Mar 30 2016 Brian C. Lane 19.6.68-1 -- livemedia-creator: Use correct suffix on default image names (bcl) - Resolves: rhbz#1318958 -- Fix livemedia-creator manpage (bcl) - Resolves: rhbz#1318952 - -* Tue Mar 01 2016 Brian C. Lane 19.6.67-1 -- templates: Reinstate gpgme-pthread.so for ostree (walters) -- Resolves: rhbz#1311793 -- Add rng-tools and start rngd.service by default (bcl) -- Resolves: rhbz#1258516 -- Add (bcl) -- Resolves: rhbz#1269891 -- Include grub2-efi-modules on the boot.iso (bcl) -- Resolves: rhbz#1277227 -- Keep modules needed for ast video driver support (bcl) -- Resolves: rhbz#1272658 -- configure NetworkManager to loglevel=DEBUG (rvykydal) -- Resolves: rhbz#1274647 -- Update docs for product.img (bcl) -- Resolves: rhbz#1272361 -- paste is needed by os-prober (bcl) -- Resolves: rhbz#1275105 -- Keep libthread so that gdb will work correctly (bcl) -- Resolves: rhbz#1269055 -- Add --installpkgs argument (walters) -- Resolves: rhbz#1272222 -- livemedia-creator: Clean up resultdir handling (bcl) -- Resolves: rhbz#1290552 -- https is a sane package source URL scheme (walters) -- Resolves: rhbz#1292680 -- Add product.img support for s390 templates (dan) -- Resolves: rhbz#1272359 - -* Wed Sep 02 2015 Brian C. Lane 19.6.66-1 -- livemedia-creator: Remove random-seed from images (bcl) - Resolves: rhbz#1258986 - -* Tue Sep 01 2015 Brian C. Lane 19.6.65-1 -- Don't include early microcode in initramfs (bcl) -- Resolves: rhbz#1258498 - -* Mon Aug 31 2015 Brian C. Lane 19.6.64-1 -- Fix metacity theme path (bcl) - Related: rhbz#1231856 -- Run spice-vdagentd without systemd-logind integration (dshea) - Related: rhbz#1169991 - -* Thu Aug 27 2015 Brian C. Lane 19.6.63-1 -- Replace the metacity theme file. (dshea) - Related: rhbz#1231856 - -* Sun Aug 16 2015 Brian C. Lane 19.6.62-1 -- Change default releasever to 7 (bcl) -- Resolves: rhbz#1253242 - -* Wed Aug 12 2015 Brian C. Lane 19.6.61-1 -- Add lldptool (rvykydal) - Related: rhbz#1085325 - -* Wed Aug 05 2015 Brian C. Lane 19.6.60-1 -- Fix tito tagger to bump version, not release (bcl) - Related: rhbz#1085013 - -* Wed Aug 05 2015 Brian C. Lane 19.6.59-2 -- Fix chronyd not working in the installation (jkonecny) - Related: rhbz#1085013 - -* Tue Jul 14 2015 Brian C. Lane 19.6.59-1 -- Add installimg command for use in the templates (bcl@redhat.com) - Related: rhbz#1202278 - -* Tue Jun 30 2015 Brian C. Lane 19.6.58-1 -- Keep hyperv_fb driver in the image (bcl@redhat.com) - Resolves: rhbz#834791 - -* Fri Jun 26 2015 Brian C. Lane 19.6.57-1 -- livemedia-creator: fix base repo log monitor (#1196721) (bcl@redhat.com) - Related: rhbz#1196721 -- network: turn slaves autoconnection on (rvykydal@redhat.com) - Resolves: rhbz#1172751 - Resolves: rhbz#1134090 - -* Thu Jun 25 2015 Brian C. Lane 19.6.56-1 -- Add ability for external templates to graft content into boot.iso (walters@verbum.org) - Resolves: rhbz#1202278 -- Update templates to use installimg for product and updates (bcl@redhat.com) - Related: rhbz#1202278 - -* Mon Jun 22 2015 Brian C. Lane 19.6.55-1 -- Add ntp configuration file to installation (jkonecny@redhat.com) - Related: rhbz#1085013 -- livemedia-creator: Add option to create qcow2 disk images (bcl@redhat.com) - Resolves: rhbz#1210413 -- Add support for creating qcow2 images (bcl@redhat.com) - Related: rhbz#1210413 -- Install the oscap-anaconda-addon (vpodzime@redhat.com) - Resolves: rhbz#1190685 - -* Mon Jun 15 2015 Brian C. Lane 19.6.54-1 -- Add removekmod template command (bcl@redhat.com) - Resolves: rhbz#1230356 -- Disable systemd-tmpfiles-clean (bcl@redhat.com) - Resolves: rhbz#1202545 -- Add bridge-utils (bcl@redhat.com) - Resolves: rhbz#1188812 - -* Fri Jun 05 2015 Brian C. Lane 19.6.53-1 -- Keep the zram kernel module (bcl@redhat.com) -- Keep seq and getconf utilities in the image (vpodzime@redhat.com) -- Don't remove usr/lib/rpm/platform/ (#1116450) (bcl@redhat.com) -- Include /sbin/ldconfig from glibc. (dlehman@redhat.com) - -* Fri Apr 17 2015 Brian C. Lane 19.6.52-1 -- Backport --make-ostree-live (rvykydal) - Resolves: rhbz#1184021 - -* Fri Jan 16 2015 Brian C. Lane 19.6.51-1 -- Remove imggraft from aarch64.tmpl (bcl@redhat.com) - Related: rhbz#1174475 - -* Wed Jan 14 2015 Brian C. Lane 19.6.50-1 -- Use gcdaa64.efi and make boot.iso on aarch64 (pjones@redhat.com) - Resolves: rhbz#1174475 - -* Wed Jan 07 2015 Brian C. Lane 19.6.49-1 -- runtime-cleanup.tmpl: keep virtio-rng (#1179000) (lersek@redhat.com) - Resolves: rhbz#1179000 - -* Fri Dec 19 2014 Brian C. Lane 19.6.48-1 -- aarch64 no longer needs explicit console setting (#1170413) (bcl@redhat.com) - Resolves: rhbz#1170413 - -* Tue Dec 02 2014 Brian C. Lane 19.6.47-1 -- Drop 32 bit for loop from ppc64 grub2 config (#1169878) (bcl@redhat.com) - Resolves: rhbz#1169878 - -* Thu Nov 20 2014 Brian C. Lane 19.6.46-1 -- Add --add-template{,-var} (walters@verbum.org) - Resolves: rhbz#1157777 - -* Fri Oct 31 2014 Brian C. Lane 19.6.45-1 -- Don't include the stock lvm.conf. (dlehman@redhat.com) - -* Wed Oct 22 2014 Brian C. Lane 19.6.44-1 -- move image-minimizer to lorax (bcl@redhat.com) - Resolves: rhbz#1082642 - -* Thu Oct 16 2014 Brian C. Lane 19.6.43-1 -- Use all upper case for shim in live/efi.tmpl (bcl@redhat.com) - Related: rhbz#1100048 - -* Tue Oct 07 2014 Brian C. Lane 19.6.42-1 -- Revert "Don't remove /usr/share/doc/anaconda." (mkolman@redhat.com) - Related: rhbz#1072033 -- Look for "BOOT${efiarch}.EFI" in mkefiboot as well. (pjones@redhat.com) - Related: rhbz#1100048 -- Libgailutil is required yelp, don't remove it (mkolman@redhat.com) - Related: rhbz#1072033 - -* Fri Oct 03 2014 Brian C. Lane 19.6.41-1 -- Make sure shim is actually in the package list on aarch64 as well. (pjones@redhat.com) - Related: rhbz#1100048 - -* Thu Oct 02 2014 Brian C. Lane 19.6.40-1 -- Use shim on aarch64. (pjones@redhat.com) - Related: rhbz#1100048 -- Keep the /etc/lvm/profiles directory in the image (vpodzime@redhat.com) - Related: rhbz#869456 - -* Tue Sep 30 2014 Brian C. Lane 19.6.39-1 -- Don't remove /usr/share/doc/anaconda. (clumens@redhat.com) - Resolves: rhbz#1147518 -- Stop removing libXt from the installation media. (clumens@redhat.com) - Related: rhbz#1147518 -- network: add support for bridge (#1075195) (rvykydal@redhat.com) - Related: rhbz#1075195 - -* Tue Sep 23 2014 Brian C. Lane 19.6.38-1 -- livemedia-creator: Make sure ROOT_PATH exists (bcl@redhat.com) - Related: rhbz#1144140 -- livemedia-creator: Use RHEL7 version of kickstart (bcl@redhat.com) - Related: rhbz#1144140 -- RHEL7 doesn't include pigz or pbzip2 (bcl@redhat.com) - Related: rhbz#1144140 -- livemedia-creator: Add --no-recursion to mktar (bcl@redhat.com) - Related: rhbz#1144140 -- livemedia-creator: Add support for making tarfiles (bcl@redhat.com) - Resolves: rhbz#1144140 -- livemedia-creator: Check fsimage kickstart for single partition (bcl@redhat.com) - Related: rhbz#1144140 -- livemedia-creator: Copy fsimage if hardlink fails (bcl@redhat.com) - Related: rhbz#1144140 -- livemedia-creator: Make --make-fsimage work with virt-install (bcl@redhat.com) - Related: rhbz#1144140 - -* Mon Sep 15 2014 Brian C. Lane 19.6.37-1 -- Let the plymouth dracut module back into the ppc64 upgrade.img (dshea@redhat.com) - Resolves: rhbz#1069671 - -* Tue Sep 09 2014 Brian C. Lane 19.6.36-1 -- Add more tools for rescue mode (bcl@redhat.com) - Resolves: rhbz#1109785 -- Add kexec anaconda addon (bcl@redhat.com) - Resolves: rhbz#1116335 - -* Wed Sep 03 2014 Brian C. Lane 19.6.35-1 -- Add ppc64le arch (bcl@redhat.com) - Resolves: rhbz#1136490 - -* Fri Aug 29 2014 Brian C. Lane 19.6.34-1 -- allow setting additional dracut parameters for DVD s390x installs (dan@danny.cz) - Resolves: rhbz#1132050 - -* Thu Aug 28 2014 Brian C. Lane 19.6.33-1 -- livemedia-creator: Update ppc64 live to use grub2 (bcl@redhat.com) - Related: rhbz#1102318 - Related: rhbz#1131199 - -* Tue Aug 19 2014 Brian C. Lane 19.6.32-1 -- Yaboot to grub2 conversion cleanup. (dwa@redhat.com) - Related: rhbz#1131199 -- GRUB2 as the ISO boot loader for POWER arch (#1131199) (pfsmorigo@br.ibm.com) - Resolves: rhbz#1131199 -- Revert "Require 32bit glibc on ppc64" (bcl@redhat.com) - Related: rhbz#1131199 - -* Fri Aug 15 2014 Brian C. Lane 19.6.31-1 -- Add efibootmgr to installpkg list for aarch64. (dmarlin@redhat.com) - Resolves: rhbz#1130366 - -* Tue Aug 12 2014 Brian C. Lane 19.6.30-1 -- livemedia-creator: Cleanup temp yum files (bcl@redhat.com) - Resolves: rhbz#1073502 -- Require 32bit glibc on ppc64 (bcl@redhat.com) - Resolves: rhbz#1105054 -- Add xfsdump and remove extra files from xfsprogs (bcl@redhat.com) - Resolves: rhbz#1118654 -- Add ipmitool and drivers (bcl@redhat.com) - Resolves: rhbz#1126009 -- Update grub2-efi.cfg for aarch64 to more closely match x86 (dmarlin@redhat.com) - Resolves: rhbz#1089418 - -* Fri Aug 08 2014 Brian C. Lane 19.6.29-1 -- utf-8 encode yum actions before displaying them (#1072362) (bcl@redhat.com) -- Use BOOTAA64.efi for AARCH64 bootloader filename (#1080113) (bcl@redhat.com) -- Drop devicetree from aarch64 grub2-efi.cfg (#1089418) (bcl@redhat.com) -- livemedia-creator: Add ppc64 live creation support (#1102318) - (bcl@redhat.com) -- runtime-install: Add rpm-ostree (walters@verbum.org) - -* Wed Apr 23 2014 Brian C. Lane 19.6.28-1 -- Install rdma so that dracut will use it along with libmlx4 (bcl) - Resolves: rhbz#1089564 - -* Thu Apr 03 2014 Brian C. Lane 19.6.27-1 -- Stop removing curl after adding it (#1083205) (bcl@redhat.com) - -* Fri Feb 28 2014 Brian C. Lane 19.6.26-1 -- Use string for releasever not int (bcl@redhat.com) - Related: rhbz#1067746 -- Make lorax's installation of lockdown.efi conditional on its existence. (pjones@redhat.com) - Resolves: rhbz#1071380 - -* Wed Feb 26 2014 Brian C. Lane 19.6.25-1 -- createrepo is needed by driver disks (bcl@redhat.com) - Related: rhbz#1016004 - -* Tue Feb 25 2014 Brian C. Lane 19.6.24-1 -- Improve aarch64 UEFI support (dmarlin@redhat.com) - Resolves: rhbz#1067671 - -* Fri Feb 21 2014 Brian C. Lane 19.6.23-1 -- livemedia-creator: Set the product and release version env variables (bcl@redhat.com) - Resolves: rhbz#1067746 -- Remove unneeded images from the product -logos (bcl@redhat.com) - Resolves: rhbz#1068721 - -* Tue Feb 18 2014 Brian C. Lane 19.6.22-1 -- fedora- services are named rhel- (#1066118) (bcl@redhat.com) -- Remove unneeded packages from runtime-install (#1065557) (bcl@redhat.com) - -* Thu Feb 13 2014 Brian C. Lane 19.6.21-1 -- Check initrd size on ppc64 and warn (#1060691) (bcl@redhat.com) -- Remove drivers and modules on ppc64 (#1060691) (bcl@redhat.com) - -* Wed Feb 12 2014 Brian C. Lane 19.6.20-1 -- Include mesa-dri-drivers (#1053940) (bcl@redhat.com) - -* Tue Feb 11 2014 Brian C. Lane 19.6.19-1 -- livemedia-creator: virt-image needs ram in MiB not KiB (#1061773) - (bcl@redhat.com) -- Include all the example kickstarts (#1019728) (bcl@redhat.com) - -* Wed Feb 05 2014 Brian C. Lane 19.6.18-1 -- Remove floppy and scsi_debug from initrd (#1060691) (bcl@redhat.com) - -* Fri Jan 31 2014 Brian C. Lane 19.6.17-1 -- Don't activate default auto connections after switchroot (#1012511) - (rvykydal@redhat.com) - Related: rhbz#1012511 - -* Fri Jan 24 2014 Brian C. Lane 19.6.16-1 -- Activate anaconda-shell@.service on switch to empty VT (#980062) - (wwoods@redhat.com) -- flush data to disk after mkfsimage (#1052175) (bcl@redhat.com) - -* Tue Dec 17 2013 Brian C. Lane 19.6.15-1 -- Add initial 64-bit ARM (aarch64) support (#1034432) (dmarlin@redhat.com) - -* Mon Dec 16 2013 Brian C. Lane 19.6.14-1 -- s390 switch to generic condev (#1042765) (bcl@redhat.com) - -* Fri Nov 15 2013 Brian C. Lane 19.6.13-1 -- Add SB lockdown to EFI grub menu (#1030495) (bcl@redhat.com) - Resolves: rhbz#1030495 - -* Thu Nov 14 2013 Brian C. Lane 19.6.12-1 -- Include partx (#1022899) (bcl@redhat.com) - Resolves: rhbz#1022899 - -* Thu Nov 14 2013 Brian C. Lane 19.6.11-1 -- Create upgrade.img using redhat-upgrade-dracut (dshea@redhat.com) - -* Mon Nov 11 2013 Vratislav Podzimek 19.6.10-1 -- Do not remove libdaemon from the runtime environment (vpodzime) - Resolves: rhbz#1028938 - -* Thu Nov 07 2013 Brian C. Lane 19.6.9-1 -- Install subscription-manager (#1026304) (bcl@redhat.com) - Resolves: rhbz#1026304 -* Fri Nov 01 2013 Brian C. Lane 19.6.8-1 -- Set UEFI defaults to match BIOS (#1021451,#1021446) (bcl@redhat.com) - Resolves: rhbz#1021451 - Resolves: rhbz#1021446 -- livemedia-creator: Set default name to Red Hat Enterprise Linux 7 (#1002027) - (bcl@redhat.com) - Resolves: rhbz#1002027 -- livemedia-creator: Add minimal disk example kickstart (#1019728) - (bcl@redhat.com) - Resolves: rhbz#1019728 - -* Thu Oct 17 2013 Brian C. Lane 19.6.7-1 -- Keep virtio_console module (#750231) (bcl@redhat.com) - -* Mon Oct 07 2013 Brian C. Lane 19.6.6-1 -- livemedia-creator: Update minimal packages in README (#1003078) (bcl@redhat.com) -- macboot defaults to no on rhel7 (#1012529) (bcl@redhat.com) -- Add macboot option (#1012529) (bcl@redhat.com) - -* Wed Sep 25 2013 Brian C. Lane 19.6.5-1 -- drop dracut args from config files (#1008054) (bcl@redhat.com) - -* Fri Sep 20 2013 Brian C. Lane 19.6.4-1 -- livemedia-creator: Fix gcdx64.efi path to work for other distros than Fedora - (#1003078) (bcl@redhat.com) -- livemedia-creator: Update example kickstart for rhel7 (#922064) - (bcl@redhat.com) - -* Fri Aug 23 2013 Brian C. Lane 19.6.3-1 -- Keep liblzo2.* (#997976) (dshea@redhat.com) - -* Thu Aug 01 2013 Brian C. Lane 19.6.2-1 -- dracut-nohostonly and dracut-norescue got renamed for dracut >= 030 (#990305) - (harald@redhat.com) -- Don't remove xkeyboard-config message files (#989757) (dshea@redhat.com) - -* Fri Jul 26 2013 Brian C. Lane 19.6.1-1 -- remove yum-plugin-fastestmirror (#876135) (bcl@redhat.com) - -* Fri Jul 26 2013 Brian C. Lane 19.6-1 -- Add manpage for lorax (bcl@redhat.com) -- Add manpage for livemedia-creator (bcl@redhat.com) -- livemedia-creator: pass inst.cmdline for headless installs (#985487) - (bcl@redhat.com) -- Stop using /usr/bin/env (#987028) (bcl@redhat.com) -- livemedia-creator: clarify required package errors (#985340) (bcl@redhat.com) -- Include device-mapper-persistent-data in images for thinp support. - (dlehman@redhat.com) - -* Thu Jun 13 2013 Brian C. Lane 19.5-1 -- Let sshd decide which keys to create (#971856) (bcl@redhat.com) -- Don't remove thbrk.tri (#886250) (bcl@redhat.com) -- Switch from xorg-x11-fonts-ethiopic to sil-abyssinica-fonts (#875664) - (bcl@redhat.com) -- Make ignoring yum_lock messages in anaconda easier. (clumens@redhat.com) -- Bump image size up to 2G (#967556) (bcl@redhat.com) -- livemedia-creator: Fix logic for anaconda test (#958036) (bcl@redhat.com) - -* Tue May 21 2013 Brian C. Lane 19.4-1 -- Add command for opening anaconda log file to history (mkolman@gmail.com) -- Do not install chrony and rdate explicitly (vpodzime@redhat.com) - -* Mon Apr 29 2013 Brian C. Lane 19.3-1 -- Remove /var/log/journal so journald won't write to overlay - (wwoods@redhat.com) -- Leave /etc/os-release in the initrd (#956241) (bcl@redhat.com) -- no standalone modutils package (dan@danny.cz) -- remove no longer supported arm kernel variants add the new lpae one - (dennis@ausil.us) -- livemedia-creator: Update example kickstarts (bcl@redhat.com) -- livemedia-creator: Ignore rescue kernels (bcl@redhat.com) - -* Mon Apr 15 2013 Brian C. Lane 19.2-1 -- Let devices get detected and started automatically. (dlehman@redhat.com) -- Fix import of version (bcl@redhat.com) -- fix version query and add one to the log file (hamzy@us.ibm.com) -- Do not remove files required by tools from the s390utils-base package. - (jstodola@redhat.com) - -* Tue Mar 19 2013 Brian C. Lane 19.1-1 -- Print & log messages on scriptlet/transaction errors (wwoods@redhat.com) -- sysutils: add -x to cp in linktree (wwoods@redhat.com) -- treebuilder: fix "Can't stat exclude path "/selinux"..." message - (wwoods@redhat.com) -- runtime: install dracut-{nohostonly,norescue} (wwoods@redhat.com) -- runtime-install: install shim-unsigned (wwoods@redhat.com) -- Add explicit install of net-tools (#921619) (bcl@redhat.com) -- Don't remove hmac files for ssh and sshd (#882153) (bcl@redhat.com) -- Raise an error when there are no initrds (bcl@redhat.com) -- Add yum logging to yum.log (bcl@redhat.com) -- remove sparc support (dennis@ausil.us) -- Change Makefile to produce .tgz (bcl@redhat.com) - -* Thu Feb 28 2013 Brian C. Lane 19.0-1 -- New Version 19.0 -- Remove some env variables (#907692) (bcl@redhat.com) -- Make sure tmpfs is enabled (#908253) (bcl@redhat.com) - -* Tue Feb 12 2013 Brian C. Lane 18.31-1 -- add syslinux and ssm (bcl@redhat.com) -- Add filesystem image install support (bcl@redhat.com) - -* Thu Jan 31 2013 Brian C. Lane 18.30-1 -- yum changed the callback info (bcl@redhat.com) -- tigervnc-server-module depends on Xorg, which doesn't exist on s390x - (dan@danny.cz) -- tools not existing on s390x (dan@danny.cz) -- specspo is dead for a long time (dan@danny.cz) -- no Xorg on s390x (dan@danny.cz) -- Make boot configs consistent. (dmach@redhat.com) -- Dynamically generate the list of installed platforms for .treeinfo - (dmarlin@redhat.com) -- Add a U-Boot wrapped image of 'upgrade.img'. (dmarlin@redhat.com) -- Add trigger for Anaconda's exception handling to bash_history - (vpodzime@redhat.com) -- livemedia-creator: update example kickstarts (bcl@redhat.com) -- livemedia-creator: don't pass console=ttyS0 (bcl@redhat.com) -- Fix gcdx64.efi path to work for other distros than Fedora. (dmach@redhat.com) - -* Thu Dec 20 2012 Martin Gracik 18.29-1 -- Do not remove gtk3 share files (mgracik@redhat.com) - -* Wed Dec 19 2012 Martin Gracik 18.28-1 -- Fix rexists (mgracik@redhat.com) -- Several 'doupgrade' fixes in the x86 template. (dmach@redhat.com) -- Missing semicolon (mgracik@redhat.com) - -* Tue Dec 18 2012 Martin Gracik 18.27-1 -- Only run installupgradeinitrd if upgrade on s390x (mgracik@redhat.com) - -* Tue Dec 18 2012 Martin Gracik 18.26-1 -- Only run installupgradeinitrd if upgrade (mgracik@redhat.com) - -* Tue Dec 18 2012 Martin Gracik 18.25-1 -- Add --noupgrade option (mgracik@redhat.com) -- Require fedup-dracut* only on Fedora. (dmach@redhat.com) - -* Fri Dec 14 2012 Brian C. Lane 18.24-1 -- imgutils: use -s for kpartx, wait for device creation (bcl@redhat.com) -- livemedia-creator: Use SELinux Permissive mode (bcl@redhat.com) -- livemedia-creator: use cmdline mode (bcl@redhat.com) -- use correct variable for upgrade image on s390 (dan@danny.cz) -- only ix86/x86_64 and ppc/ppc64 need grub2 (dan@danny.cz) -- no mount (sub-)package since RHEL-2 (dan@danny.cz) -- Correct argument to installupgradeinitrd. (dmarlin@redhat.com) -- Added fedup requires to spec (bcl@redhat.com) - -* Wed Dec 05 2012 Brian C. Lane 18.23-1 -- remove multipath rules (#880263) (bcl@redhat.com) -- add installupgradeinitrd function and use it to install the upgrade initrds - (dennis@ausil.us) -- use installinitrd to install the upgrade.img initramfs so that we get correct - permissions (dennis@ausil.us) -- ppc and arm need to use kernel.upgrade not kernel.upgrader (dennis@ausil.us) -- remove upgrade from the sparc and sysylinux config templates - (dennis@ausil.us) -- Add the 'fedup' plymouth theme if available (wwoods@redhat.com) -- make templates install upgrade.img (wwoods@redhat.com) -- build fedup upgrade.img (wwoods@redhat.com) -- treebuilder: improve findkernels() initrd search (wwoods@redhat.com) -- treebuilder: add 'prefix' to rebuild_initrds() (wwoods@redhat.com) -- Add thai-scalable-waree-fonts (#872468) (mgracik@redhat.com) -- Do not remove the fipscheck package (#882153) (mgracik@redhat.com) -- Add MokManager.efi to EFI/BOOT (#882101) (mgracik@redhat.com) - -* Tue Nov 06 2012 Brian C. Lane 18.22-1 -- Install the yum-langpacks plugin (#868869) (jkeating@redhat.com) -- perl is required by some low-level tools on s390x (#868824) (dan@danny.cz) - -* Thu Oct 11 2012 Brian C. Lane 18.21-1 -- Change the install user's shell for tmux (jkeating@redhat.com) -- Set permissions on the initrd (#863018) (mgracik@redhat.com) -- Remove the default word from boot menu (#848676) (mgracik@redhat.com) -- Disable a whole bunch more keyboard shortcuts (#863823). (clumens@redhat.com) -- use /var/tmp instead of /tmp (bcl@redhat.com) -- remove rv from unmount error log (bcl@redhat.com) - -* Wed Sep 19 2012 Brian C. Lane 18.20-1 -- Remove grub 0.97 splash (bcl@redhat.com) -- livemedia-creator: use rd.live.image instead of liveimg (bcl@redhat.com) - -* Mon Sep 17 2012 Brian C. Lane 18.19-1 -- There's no lang-table in anaconda anymore (#857925) (mgracik@redhat.com) -- add convienience functions for running commands (bcl@redhat.com) -- restore CalledProcessError handling (bcl@redhat.com) -- add CalledProcessError to execWith* functions (bcl@redhat.com) -- live uses root not inst.stage2 (bcl@redhat.com) -- Revert "X needs the DRI drivers" (#855289) (bcl@redhat.com) - -* Fri Sep 07 2012 Brian C. Lane 18.18-1 -- Keep the dracut-lib.sh around for runtime (#851362) (jkeating@redhat.com) -- X needs the DRI drivers (#855289) (bcl@redhat.com) - -* Fri Aug 31 2012 Brian C. Lane 18.17-1 -- use inst.stage2=hd:LABEL (#848641) (bcl@redhat.com) -- Disable the maximize/unmaximize key bindings (#853410). (clumens@redhat.com) - -* Thu Aug 30 2012 Brian C. Lane 18.16-1 -- Revert "Mask the tmp.mount service to avoid tmpfs" (jkeating@redhat.com) - -* Thu Aug 23 2012 Brian C. Lane 18.15-1 -- change grub-cd.efi to gcdx64.efi (#851326) (bcl@redhat.com) -- use wildcard for product path to efi binaries (#851196) (bcl@redhat.com) -- Add yum-plugin-fastestmirror (#849797) (bcl@redhat.com) -- livemedia-creator: update templates for grub2-efi support (bcl@redhat.com) -- imgutils: fix umount retry handling (bcl@redhat.com) -- livemedia-creator: use stage2 instead of root (bcl@redhat.com) -- livemedia-creator: add location option (bcl@redhat.com) -- nm-connection-editor was moved to separate package (#849056) - (rvykydal@redhat.com) - -* Thu Aug 16 2012 Brian C. Lane 18.14-1 -- remove cleanup of some essential libraries (bcl@redhat.com) -- Mask the tmp.mount service to avoid tmpfs (jkeating@redhat.com) - -* Wed Aug 15 2012 Brian C. Lane 18.13-1 -- Add a command line option to override the ARM platform. (dmarlin@redhat.com) -- Don't remove krb5-libs (#848227) (mgracik@redhat.com) -- Add grub2-efi support and Secure Boot shim support. (pjones@redhat.com) -- Fix GPT code to allocate space for /2/ tables. (pjones@redhat.com) -- Add platforms to the treeinfo for Beaker support. (dmarlin@redhat.com) -- add logging to lorax (bcl@redhat.com) -- move live templates into their own subdir of share (bcl@redhat.com) -- clean up command execution (bcl@redhat.com) -- livemedia-creator: cleanup logging a bit (bcl@redhat.com) - -* Wed Jul 25 2012 Martin Gracik 18.12-1 -- Add 'mvebu' to list of recognized ARM kernels. (dmarlin@redhat.com) -- Cleanup boot menus (#809663) (mgracik@redhat.com) -- Don't remove chvt from the install image (#838554) (mgracik@redhat.com) -- Add llvm-libs (#826351) (mgracik@redhat.com) - -* Fri Jul 20 2012 Brian C. Lane 18.11-1 -- livemedia-creator: add some error checking (bcl@redhat.com) - -* Tue Jul 10 2012 Martin Gracik 18.10-1 -- Don't set a root= argument (wwoods@redhat.com) - Resolves: rhbz#837208 -- Don't remove the id tool (mgracik@redhat.com) - Resolves: rhbz#836493 -- Xauth is in bin (mgracik@redhat.com) - Resolves: rhbz#837317 -- Actually add plymouth to the initramfs (wwoods@redhat.com) -- don't use --prefix with dracut anymore (wwoods@redhat.com) -- newui requires checkisomd5 to run media check. (clumens@redhat.com) - -* Thu Jun 21 2012 Martin Gracik 18.9-1 -- Add initial support for ARM based systems (dmarlin) (mgracik@redhat.com) -- Add plymouth to the installer runtime (wwoods@redhat.com) -- add 'systemctl' command and use it in postinstall (wwoods@redhat.com) -- add dracut-shutdown.service (and its dependencies) (wwoods@redhat.com) -- leave pregenerated locale files (save RAM) (wwoods@redhat.com) -- runtime-cleanup: log broken symlinks being removed (wwoods@redhat.com) -- Add some documentation to LoraxTemplateRunner (wwoods@redhat.com) -- fix '-runcmd' and improve logging (wwoods@redhat.com) -- mkefiboot: add --debug (wwoods@redhat.com) -- pylorax.imgutils: add retry loop and "lazy" to umount() (wwoods@redhat.com) -- pylorax.imgutils: add debug logging (wwoods@redhat.com) -- pylorax: set up logging as recommended by logging module (wwoods@redhat.com) -- remove dmidecode (wwoods@redhat.com) -- clean up net-tools properly (wwoods@redhat.com) -- runtime-cleanup: correctly clean up kbd (wwoods@redhat.com) -- runtime-cleanup: correctly clean up iproute (wwoods@redhat.com) -- runtime-cleanup: drop a bunch of do-nothing removals (wwoods@redhat.com) -- Create missing /etc/fstab (wwoods@redhat.com) -- Fix systemd unit cleanup in runtime-postinstall (wwoods@redhat.com) -- Disable Alt+Tab in metacity (mgracik@redhat.com) -- Add pollcdrom module to dracut (bcl@redhat.com) - -* Wed Jun 06 2012 Martin Gracik 18.8-1 -- Check if selinux is enabled before getting the mode (mgracik@redhat.com) -- Add grub2 so that rescue is more useful (bcl@redhat.com) - -* Mon Jun 04 2012 Martin Gracik 18.7-1 -- Comment on why selinux needs to be in permissive or disabled - (mgracik@redhat.com) -- Verify the yum transaction (mgracik@redhat.com) -- Do not remove shared-mime-info (#825960) (mgracik@redhat.com) -- Add a --required switch to installpkg (mgracik@redhat.com) -- livemedia-creator: Hook up arch option (bcl@redhat.com) -- livemedia-creator: Add appliance creation (bcl@redhat.com) -- livemedia-creator: handle failed mount for ami (bcl@redhat.com) - -* Fri Jun 01 2012 Martin Gracik 18.6-1 -- Fix the rpm call (mgracik@redhat.com) -- Use selinux python module to get enforcing mode (mgracik@redhat.com) - -* Thu May 31 2012 Martin Gracik 18.5-1 -- Don't remove sha256sum from the install image (mgracik@redhat.com) -- Check if selinux is not in Enforcing mode (#824835) (mgracik@redhat.com) -- Install rpcbind (#824835) (mgracik@redhat.com) -- Remove hfsplus-tools dependency (#818913) (mgracik@redhat.com) -- Copy mapping and magic to BOOTDIR on ppc (#815550) (mgracik@redhat.com) -- Automatic commit of package [lorax] release [18.4-1]. (mgracik@redhat.com) - -* Fri May 25 2012 Martin Gracik 18.4-1 -- Initialized to use tito. -- Use gz not bz2 for source -- remove 'loadkeys' stub (#804306) -- add name field to .treeinfo its a concatination of family and version -- Fix typo in help (#819476) -- include the new cmsfs-fuse interface -- linuxrc.s390 is dead in anaconda -- Add the ppc magic file -- Install proper branding packages from repo (#813969) -- Use --mac for isohybrid only if doing macboot images -- Add --nomacboot option -- Add packages needed for NTP functionality in the installer -- livemedia-creator: check kickstart for display modes (#819660) -- livemedia-creator: Removed unused ImageMount class -- livemedia-creator: cleanup after a crash -- livemedia-creator: start using /var/tmp instead of /tmp -- livemedia-creator: make libvirt module optional -- stop moving /run (#818918) - -* Thu May 03 2012 Brian C. Lane 18.3-1 -- Added BCM4331 firmware (#817151) (mgracik) -- mkefiboot: Add support for disk label files (mjg) -- Add 'tmux' to runtime image (wwoods) -- Add /etc/sysctl.d/anaconda.conf, set kernel.printk=1 (#816022) (wwoods) -- reduce image size from 2GB to 1GB (wwoods) -- keep all filesystem tools (wwoods) -- Leave some of the grub2 utilities in the install image (#749323) (mgracik) -- add media check menu option (bcl) -- remove unneeded dracut bootargs (bcl) -- mkefiboot: Copy Mac bootloader, rather than linking it (mjg) -- Remove workdir if it was created by lorax (#807964) (mgracik) -- add gdisk to install image (#811083) (bcl) -- Don't use --allbut for xfsprogs cleanup (#804779) (mgracik) -- Log all removed files (mgracik) -- Add spice-vdagent to initrd (#804739) (mgracik) -- Add ntfs-3g to initrd (#804302) (mgracik) -- ntfs-3g now uses /usr/lib (#810039) (bcl) - -* Fri Mar 30 2012 Brian C. Lane 18.2-1 -- Merge noloader commits from f17-branch (bcl) -- mkefiboot: Make Apple boot images appear in the startup preferences (mjg) -- add symlink from /mnt/install -> /run/install (wwoods) -- Don't trash all the initscripts 'fedora*' services (wwoods) -- remove anaconda-copy-ks.sh (wwoods) -- add anaconda dracut module (wwoods) -- runtime-postinstall: remove references to loader (wwoods) -- runtime-postinstall: remove keymap stuff (wwoods) -- Add the icfg package (#771733) (mgracik) -- Log the output of mkfs (#769928) (mgracik) -- Fix product name replacing in templates (#799919) (mgracik) -- Fix requires (mgracik) -- use cache outside the installtree (bcl) -- add iscsi-initiator-utils (#804522) (bcl) -- livemedia-creator: update TreeBuilder use for isolabel (bcl) - -* Tue Mar 06 2012 Brian C. Lane 18.1-1 -- livemedia-creator: update README (bcl) -- example livemedia kickstart for ec2 (bcl) -- livemedia-creator: console=ttyS0 not /dev/ttyS0 (bcl) -- livemedia-creator: Add support for making ami images (bcl) -- Don't remove btrfs utils (#796511) (mgracik) -- Remove root and ip parameters from generic.prm (#796572) (mgracik) -- Check if the volume id is not longer than 32 chars (#786832) (mgracik) -- Add option to specify volume id on command line (#786834) (mgracik) -- Install nhn-nanum-gothic-fonts (#790266) (mgracik) -- Change the locale to C (#786833) (mgracik) -- iputils is small and required by dhclient-script (bcl) -- util-linux-ng is now util-linux (bcl) - -* Mon Feb 20 2012 Brian C. Lane 18.0-1 -- use --prefix=/run/initramfs when building initramfs (wwoods) -- dhclient-script needs cut and arping (bcl) -- Fix missing CalledProcessError import (bcl) -- metacity now depends on gsettings-desktop-schemas (bcl) -- Add findiso to grub config (mjg) -- add memtest to the boot.iso for x86 (#787234) (bcl) -- Don't use mk-s390-cdboot (dhorak) (mgracik) -- Add dracut args to grub.conf (bcl) -- Change the squashfs image section in .treeinfo (mgracik) -- Add path to squashfs image to the treeinfo (mgracik) -- Add runtime basename variable to the template (mgracik) -- use internal implementation of the addrsize utility (dan) -- Make sure var/run is not a symlink on s390x (#787217) (mgracik) -- Create var/run/dbus directory on s390x (#787217) (mgracik) - -* Wed Feb 08 2012 Brian C. Lane 17.3-1 -- keep convertfs.sh script in image (#787893) (bcl) -- Add dracut convertfs module (#787893) (bcl) -- fix templates to work with F17 usrmove (tflink) -- changing hfs to hfsplus so that the correct mkfs binary is called (tflink) -- Add luks, md and dm dracut args to bootloaders (bcl) -- update lorax and livemedia_creator to use isfinal (bcl) -- lorax: copy kickstarts into sysroot (#743135) (bcl) -- livemedia-creator: Mount iso if rootfs is LiveOS (bcl) -- Log output of failed command (mgracik) -- Add packages required for gtk3 and the new anaconda UI. (clumens) - -* Thu Jan 12 2012 Martin Gracik 17.2-1 -- Allow specifying buildarch on the command line (#771382) (mgracik) -- lorax: Don't touch /etc/mtab in cleanup (bcl) -- Update TODO and POLICY to reflect the current state of things (wwoods) -- consider %%ghost files part of the filelists in templates (wwoods) -- lorax: Add option to exclude packages (bcl) -- dracut needs kbd directories (#769932) (bcl) -- better debug, handle relative output paths (bcl) - -* Wed Dec 21 2011 Brian C. Lane 17.1-1 -- lorax: check for output directory early and quit (bcl) -- lorax: Add --proxy command (bcl) -- lorax: add --config option (bcl) -- Modify spec file for livemedia-creator (bcl) -- Add no-virt mode to livemedia-creator (bcl) -- Add livemedia-creator README and example ks (bcl) -- Add config files for live media (bcl) -- Add livemedia-creator (bcl) -- Allow a None to be passed as size to create_runtime (bcl) -- Add execWith utils from anaconda (bcl) -- Changes needed for livecd creation (bcl) -- dracut has moved to /usr/bin (bcl) - -* Fri Oct 21 2011 Will Woods 17.0-1 -- Merges the 'treebuilder' branch of lorax -- images are split into two parts again (initrd.img, LiveOS/squashfs.img) -- base memory use reduced to ~200M (was ~550M in F15, ~320MB in F16) -- initrd.img is now built by dracut -- booting now requires correct "root=live:..." argument -- boot.iso is EFI hybrid capable (copy iso to USB stick, boot from EFI) -- Better support for Apple EFI (now with custom boot icon!) -- new syslinux config (#734170) -- add fpaste to installer environment (#727842) -- rsyslog.conf: hardcode hostname for virtio forwarding (#744544) -- Use a predictable ISO Volume Label (#732298) -- syslinux-vesa-splash changed filename (#739345) -- don't create /etc/sysconfig/network (#733425) -- xauth and libXmu are needed for ssh -X (#731046) -- add libreport plugins (#729537), clean up libreport -- keep nss certs for libreport (#730438) -- keep ModemManager (#727946) -- keep vmmouse binaries (#723831) -- change isbeta to isfinal, default to isFinal=False (#723901) -- use pungi's installroot rather than making our own (#722481) -- keep ntfsresize around (#722711) -- replace cjkuni-uming-fonts with wqy-microhei-fonts (#709962) -- install all firmware packages (#703291, #705392) -- keep libmodman and libproxy (#701622) -- write the lorax verion in the .buildstamp (#689697) -- disable rsyslogd rate limiting on imuxsock (#696943) -- disable debuginfo package - -* Wed Apr 13 2011 Martin Gracik 0.5-1 -- Remove pungi patch -- Remove pseudo code -- Add a /bin/login shim for use only in the installation environment. -- Set the hostname from a config file, not programmatically. -- Add systemd and agetty to the installation environment. -- Specify "cpio -H newc" instead of "cpio -c". -- Provide shutdown on s390x (#694518) -- Fix arch specific requires in spec file -- Add s390 modules and do some cleanup of the template -- Generate ssh keys on s390 -- Don't remove tr, needed for s390 -- Do not check if we have all commands -- Change location of addrsize and mk-s390-cdboot -- Shutdown is in another location -- Do not skip broken packages -- Don't install network-manager-netbook -- Wait for subprocess to finish -- Have to call os.makedirs -- images dir already exists, we just need to set it -- Do not remove libassuan. -- The biarch is a function not an attribute -- Create images directory in outputtree -- Use gzip on ppc initrd -- Create efibootdir if doing efi images -- Get rid of create_gconf(). -- gconf/metacity: have only one workspace. -- Add yum-langpacks yum plugin to anaconda environment (notting) -- Replace variables in yaboot.conf -- Add sparc specific packages -- Skip keymap creation on s390 -- Copy shutdown and linuxrc.s390 on s390 -- Add packages for s390 -- Add support for sparc -- Use factory to get the image classes -- treeinfo has to be addressed as self.treeinfo -- Add support for s390 -- Add the xen section to treeinfo on x86_64 -- Fix magic and mapping paths -- Fix passing of prepboot and macboot arguments -- Small ppc fixes -- Check if the file we want to remove exists -- Install x86 specific packages only on x86 -- Change the location of zImage.lds -- Added ppc specific packages -- memtest and efika.forth are in /boot -- Add support for ppc -- Minor sparc pseudo code changes -- Added sparc pseudo code (dgilmore) -- Added s390 and x86 pseudo code -- Added ppc pseudo code - -* Mon Mar 14 2011 Martin Gracik 0.4-1 -- Add the images-xen section to treeinfo on x86_64 -- Print a message when no arguments given (#684463) -- Mako template returns unicode strings (#681003) -- The check option in options causes ValueError -- Disable all ctrl-alt-arrow metacity shortcuts -- Remove the locale-archive explicitly -- Use xz when compressing the initrd -- Keep the source files for locales and get rid of the binary form -- Add /sbin to $PATH (for the tty2 terminal) -- Create /var/run/dbus directory in installtree -- Add mkdir support to template -- gpart is present only on i386 arch (#672611) -- util-linux-ng changed to util-linux - -* Mon Jan 24 2011 Martin Gracik 0.3-1 -- Don't remove libmount package -- Don't create mtab symlink, already exists -- Exit with error if we have no lang-table -- Fix file logging -- Overwrite the /etc/shadow file -- Use [images-xen] section for PAE and xen kernels - -* Fri Jan 14 2011 Martin Gracik 0.2-2 -- Fix the gnome themes -- Add biosdevname package -- Edit .bash_history file -- Add the initrd and kernel lines to .treeinfo -- Don't remove the gamin package from installtree - -* Wed Dec 01 2010 Martin Gracik 0.1-1 -- First packaging of the new lorax tool.