ishcherb / rpms / lorax

Forked from rpms/lorax 6 years ago
Clone
3970f01
# NOTE: This specfile is generated from upstream at https://github.com/rhinstaller/lorax
3970f01
# NOTE: Please submit changes as a pull request
Martin Gracik 75675ef
%define debug_package %{nil}
Martin Gracik 75675ef
Martin Gracik 6d90247
Name:           lorax
3d1268f
Version:        27.11
Iryna Shcherbina e9b8bbd
Release:        2%{?dist}
Martin Gracik 6d90247
Summary:        Tool for creating the anaconda install images
Martin Gracik 6d90247
Martin Gracik 6d90247
Group:          Applications/System
Martin Gracik 6d90247
License:        GPLv2+
c88a149
URL:            https://github.com/rhinstaller/lorax
0aea81e
# To generate Source0 do:
0aea81e
# git clone https://github.com/rhinstaller/lorax
0aea81e
# git checkout -b archive-branch lorax-%%{version}-%%{release}
0aea81e
# tito build --tgz
0aea81e
Source0:        %{name}-%{version}.tar.gz
Martin Gracik 6d90247
d588db6
BuildRequires:  python3-devel
Martin Gracik 829626c
0076416
Requires:       lorax-templates
0076416
Martin Gracik 829626c
Requires:       GConf2
Martin Gracik 6d90247
Requires:       cpio
Martin Gracik 6d90247
Requires:       device-mapper
Martin Gracik 6d90247
Requires:       dosfstools
Martin Gracik 829626c
Requires:       e2fsprogs
Martin Gracik 829626c
Requires:       findutils
Martin Gracik 829626c
Requires:       gawk
Martin Gracik 6d90247
Requires:       genisoimage
46bfeb7
Requires:       glib2
Martin Gracik 829626c
Requires:       glibc
Martin Gracik 829626c
Requires:       glibc-common
Martin Gracik 16297df
Requires:       gzip
Martin Gracik 829626c
Requires:       isomd5sum
Martin Gracik 829626c
Requires:       module-init-tools
Martin Gracik 829626c
Requires:       parted
7695dd2
Requires:       squashfs-tools >= 4.2
Martin Gracik 829626c
Requires:       util-linux
Martin Gracik 829626c
Requires:       xz
0012092
Requires:       pigz
9675a26
Requires:       dracut >= 030
80cc094
Requires:       kpartx
d588db6
d588db6
# Python modules
d588db6
Requires:       libselinux-python3
d588db6
Requires:       python3-mako
d588db6
Requires:       python3-kickstart
6fef7db
Requires:       python3-dnf >= 2.0.0
d588db6
0968815
0968815
%if 0%{?fedora}
0968815
# Fedora specific deps
b1a3aeb
%ifarch x86_64
d588db6
Requires:       hfsplus-tools
b1a3aeb
%endif
0968815
%endif
Martin Gracik 6d90247
Martin Gracik 16297df
%ifarch %{ix86} x86_64
b771e1f
Requires:       syslinux >= 6.02-4
Martin Gracik 77fd217
%endif
Martin Gracik 77fd217
ad5fad5
%ifarch ppc ppc64 ppc64le
7695dd2
Requires:       kernel-bootwrapper
7d9b154
Requires:       grub2
7d9b154
Requires:       grub2-tools
7695dd2
%endif
7695dd2
Martin Gracik 0153a7c
%ifarch s390 s390x
Martin Gracik 0153a7c
Requires:       openssh
Martin Gracik 0153a7c
%endif
Martin Gracik 0153a7c
7fc00eb
%ifarch %{arm}
7fc00eb
Requires:       uboot-tools
7fc00eb
%endif
7fc00eb
5ed738d
# Moved image-minimizer tool to lorax
5ed738d
Provides:       appliance-tools-minimizer
ebd1882
Obsoletes:      appliance-tools-minimizer < 007.7-3
5ed738d
Martin Gracik 6d90247
%description
Martin Gracik 6d90247
Lorax is a tool for creating the anaconda install images.
Martin Gracik 6d90247
7695dd2
It also includes livemedia-creator which is used to create bootable livemedia,
7695dd2
including live isos and disk images. It can use libvirtd for the install, or
7695dd2
Anaconda's image install feature.
7695dd2
d588db6
%package lmc-virt
d588db6
Summary:  livemedia-creator libvirt dependencies
d588db6
Requires: lorax = %{version}-%{release}
626cb1e
Requires: qemu
dff2bd1
dff2bd1
# Fedora edk2 builds currently only support these arches
dff2bd1
%ifarch %{ix86} x86_64 %{arm} aarch64
6eacccb
Requires: edk2-ovmf
dff2bd1
%endif
626cb1e
Recommends: qemu-kvm
d588db6
d588db6
%description lmc-virt
626cb1e
Additional dependencies required by livemedia-creator when using it with qemu.
d588db6
d588db6
%package lmc-novirt
d588db6
Summary:  livemedia-creator no-virt dependencies
d588db6
Requires: lorax = %{version}-%{release}
d588db6
Requires: anaconda-core
d588db6
Requires: anaconda-tui
d588db6
d588db6
%description lmc-novirt
d588db6
Additional dependencies required by livemedia-creator when using it with --no-virt
d588db6
to run Anaconda.
d588db6
0076416
%package templates-generic
0076416
Summary:  Generic build templates for lorax and livemedia-creator
0076416
Requires: lorax = %{version}-%{release}
0076416
Provides: lorax-templates
0076416
0076416
%description templates-generic
0076416
Lorax templates for creating the boot.iso and live isos are placed in
0076416
/usr/share/lorax/templates.d/99-generic
d588db6
Martin Gracik 6d90247
%prep
0aea81e
%setup -q -n %{name}-%{version}
Iryna Shcherbina e9b8bbd
# Fix shebang.
Iryna Shcherbina e9b8bbd
sed -i '1s=^#!/usr/bin/python=#!%{__python3}=' src/bin/mk-s390-cdboot
Martin Gracik 6d90247
Martin Gracik 6d90247
%build
Martin Gracik 6d90247
Martin Gracik 6d90247
%install
Martin Gracik 6d90247
rm -rf $RPM_BUILD_ROOT
03dcc45
make DESTDIR=$RPM_BUILD_ROOT mandir=%{_mandir} install
Martin Gracik 6d90247
Martin Gracik 6d90247
%files
Martin Gracik 6d90247
%defattr(-,root,root,-)
c88a149
%license COPYING
d588db6
%doc AUTHORS docs/livemedia-creator.rst docs/product-images.rst
9fa0a77
%doc docs/*ks
d588db6
%{python3_sitelib}/pylorax
d588db6
%{python3_sitelib}/*.egg-info
Martin Gracik 6d90247
%{_sbindir}/lorax
7695dd2
%{_sbindir}/mkefiboot
7695dd2
%{_sbindir}/livemedia-creator
5ed738d
%{_bindir}/image-minimizer
3d1268f
%{_bindir}/mk-s390-cdboot
Martin Gracik 6d90247
%dir %{_sysconfdir}/lorax
Martin Gracik 6d90247
%config(noreplace) %{_sysconfdir}/lorax/lorax.conf
Martin Gracik 6d90247
%dir %{_datadir}/lorax
03dcc45
%{_mandir}/man1/*.1*
Martin Gracik 6d90247
d588db6
%files lmc-virt
d588db6
d588db6
%files lmc-novirt
d588db6
0076416
%files templates-generic
0076416
%{_datadir}/lorax/templates.d/*
0076416
0076416
Martin Gracik 6d90247
%changelog
Iryna Shcherbina e9b8bbd
* Wed Oct 11 2017 Iryna Shcherbina <ishcherb@redhat.com> 27.11-2
Iryna Shcherbina e9b8bbd
- Fix generating both Python 2 and 3 dependency for lorax (#1497141)
Iryna Shcherbina e9b8bbd
3d1268f
* Wed Sep 27 2017 Brian C. Lane <bcl@redhat.com> 27.11-1
3d1268f
- s390 doesn't need to graft product.img and updates.img into /images (#1496461) (bcl@redhat.com)
3d1268f
- distribute the mk-s390-cdboot utility (dan@danny.cz)
3d1268f
- update graft variable in s390 template (dan@danny.cz)
3d1268f
0043a21
* Mon Sep 18 2017 Brian C. Lane <bcl@redhat.com> 27.10-1
0043a21
- Restore all of the grub2-tools on x86_64 and i386 (#1492197) (bcl@redhat.com)
0043a21
067e779
* Fri Aug 25 2017 Brian C. Lane <bcl@redhat.com> 27.9-1
067e779
- x86.tmpl: initially define compressargs as empty string (awilliam@redhat.com)
067e779
- x86.tmpl: ensure efiarch64 is defined (awilliam@redhat.com)
067e779
d08d5b3
* Thu Aug 24 2017 Brian C. Lane <bcl@redhat.com> 27.8-1
d08d5b3
- Fix grub2-efi-ia32-cdboot and shim-ia32 bits. (pjones@redhat.com)
d08d5b3
a6a34f8
* Thu Aug 24 2017 Brian C. Lane <bcl@redhat.com> 27.7-1
a6a34f8
- Make 64-bit kernel on 32-bit firmware work for x86 efi machines (pjones@redhat.com)
a6a34f8
- Don't install rdma bits on 32-bit ARM (#1483278) (awilliam@redhat.com)
a6a34f8
4ce8608
* Mon Aug 14 2017 Brian C. Lane <bcl@redhat.com> 27.6-1
4ce8608
- Add creation of a bootable s390 iso (#1478448) (bcl@redhat.com)
4ce8608
- Add mk-s360-cdboot utility (#1478448) (bcl@redhat.com)
4ce8608
- Fix systemctl command (#1478247) (bcl@redhat.com)
4ce8608
- Add version output (#1335456) (bcl@redhat.com)
4ce8608
- Include the dracut fips module in the initrd (#1341280) (bcl@redhat.com)
4ce8608
- Make sure loop device is setup (#1462150) (bcl@redhat.com)
4ce8608
d0eda70
* Wed Aug 02 2017 Brian C. Lane <bcl@redhat.com> 27.5-1
d0eda70
- runtime-cleanup: preserve a couple more gstreamer libs (awilliam@redhat.com)
d0eda70
- perl is needed on all arches now (dennis@ausil.us)
8526bb6
3dfdd58
* Mon Jul 10 2017 Brian C. Lane <bcl@redhat.com> 27.4-1
3dfdd58
- runtime-cleanup.tmpl: don't delete localedef (jlebon@redhat.com)
3dfdd58
8d986c5
* Tue Jun 20 2017 Brian C. Lane <bcl@redhat.com> 27.3-1
8d986c5
- Don't remove libmenu.so library during cleanup on PowerPC (sinny@redhat.com)
8d986c5
40af269
* Thu Jun 01 2017 Brian C. Lane <bcl@redhat.com> 27.2-1
40af269
- Remove filegraft from arm.tmpl (#1457906) (bcl@redhat.com)
40af269
- Use anaconda-core to detect buildarch (sgallagh@redhat.com)
40af269
eee34b7
* Wed May 31 2017 Brian C. Lane <bcl@redhat.com> 27.1-1
eee34b7
- arm.tmpl import basename (#1457055) (bcl@redhat.com)
eee34b7
645b9ed
* Tue May 30 2017 Brian C. Lane <bcl@redhat.com> 27.0-1
645b9ed
- Bump version to 27.0 (bcl@redhat.com)
645b9ed
- Try all packages when installpkg --optional is used. (bcl@redhat.com)
645b9ed
- Add support for aarch64 live images (bcl@redhat.com)
645b9ed
- pylint: Ignore different argument lengths for dnf callback. (bcl@redhat.com)
645b9ed
- Adds additional callbacks keyword for start() (jmracek@redhat.com)
645b9ed
- Add ppc64-diag for Power64 platforms (pbrobinson@gmail.com)
645b9ed
- livemedia-creator: Add release license files to / of the iso (bcl@redhat.com)
645b9ed
- lorax: Add release license files to / of the iso (bcl@redhat.com)
645b9ed
- INSTALL_ROOT and LIVE_ROOT are not available during %%post (bcl@redhat.com)
645b9ed
- Add --noverifyssl to lorax (#1430483) (bcl@redhat.com)
645b9ed
9f8f21e
* Mon Mar 06 2017 Brian C. Lane <bcl@redhat.com> 26.7-1
9f8f21e
- add ostree to get installed in anaconda environment (dusty@dustymabe.com)
9f8f21e
- Add dependency for lvmdump -l command (#1255659) (jkonecny@redhat.com)
9f8f21e
e800298
* Tue Feb 21 2017 Brian C. Lane <bcl@redhat.com> 26.6-1
e800298
- Create /dev/random and /dev/urandom before running rpm -qa (#1420523) (bcl@redhat.com)
e800298
- Fix duplicate kernel messages in /tmp/syslog (#1382611) (rvykydal@redhat.com)
e800298
cc42309
* Mon Feb 06 2017 Brian C. Lane <bcl@redhat.com> 26.5-1
cc42309
- Print the full NEVRA when installing packages. (bcl@redhat.com)
cc42309
0922438
* Fri Jan 13 2017 Brian C. Lane <bcl@redhat.com> 26.4-1
0922438
- Only cleanup libhistory from readline (dennis@ausil.us)
0922438
- Do not install rsh to anaconda chroot (gitDeveloper@bitthinker.com)
0922438
- Fixed NameError on result_dir when calling with --image-only (yturgema@redhat.com)
2a1712a
dff2bd1
* Tue Dec 06 2016 Brian C. Lane <bcl@redhat.com> 26.3-1
dff2bd1
- New lorax documentation - 26.2 (bcl@redhat.com)
dff2bd1
- runtime-postinstall: PYTHONDIR is no longer used. (bcl@redhat.com)
dff2bd1
- Only require edk2-ovmf on supported arches. (bcl@redhat.com)
dff2bd1
c6043a8
* Tue Nov 22 2016 Brian C. Lane <bcl@redhat.com> 26.2-1
c6043a8
- add exception for lulzbot-marlin-firmware (pbrobinson@gmail.com)
c6043a8
- drop kexec arch conditional for aarch64 (pbrobinson@gmail.com)
c6043a8
- imgutils: Don't relabel /ostree (walters@verbum.org)
c6043a8
- Added option to remove packages (parallel to installpkgs) (riehecky@fnal.gov)
c6043a8
- templates: When a subprocess fatally errors, output its stderr directly (walters@verbum.org)
c6043a8
0bc221a
* Mon Oct 17 2016 Brian C. Lane <bcl@redhat.com> 26.1-1
0bc221a
- Add missing fonts (#1370118) (vponcova@redhat.com)
0bc221a
- drop ssh server key generation for s390(x) (#1383641) (dan@danny.cz)
0bc221a
6fef7db
* Fri Sep 30 2016 Brian C. Lane <bcl@redhat.com> 26.0-1
6fef7db
- Bump version to 26.0 (bcl@redhat.com)
6fef7db
- adapt to DNF 2.0 API changes (i.gnatenko.brain@gmail.com)
6fef7db
3ff46ff
* Mon Sep 26 2016 Brian C. Lane <bcl@redhat.com> 25.16-1
3ff46ff
- Fix broken sshd.inst boot option (#1378378) (jjelen@redhat.com)
3ff46ff
- Don't log dracut initrd regeneration messages into /tmp/syslog (#1369439) (rvykydal@redhat.com)
3ff46ff
- Use imjournal for rsyslogd instead of sharing /dev/log with journal (#1369439) (rvykydal@redhat.com)
3ff46ff
- livemedia-creator: Check for packaging failures in the logs (#1374809) (bcl@redhat.com)
3ff46ff
- templates: Enusre basic.target.wants dir exists for rngd (walters@verbum.org)
3ff46ff
920fb7e
* Thu Sep 08 2016 Brian C. Lane <bcl@redhat.com> 25.15-1
920fb7e
- Keep fsfreeze in install environment (#1315468) (rmarshall@redhat.com)
920fb7e
- Add ppc64le kernel path (mkumatag@in.ibm.com)
920fb7e
- Install storaged-iscsi to the runtime (#1347415) (vpodzime@redhat.com)
920fb7e
5816249
* Tue Aug 23 2016 Brian C. Lane <bcl@redhat.com> 25.14-1
5816249
- lorax: Add --rootfs-size (#1368743) (bcl@redhat.com)
5816249
- Revert "Use size=10 by default" (bcl@redhat.com)
9807b82
630f383
* Fri Aug 12 2016 Brian C. Lane <bcl@redhat.com> 25.13-1
630f383
- as of Fedora 25 s390x now has docker (pbrobinson@fedoraproject.org)
630f383
- ppc64le doesn't have pcmciatools (pbrobinson@fedoraproject.org)
630f383
- add grub2-tools to aarch64, drop duplicate grubby (pbrobinson@fedoraproject.org)
630f383
- Allow supplying a disk image for PXE live systems (code@schoeller.se)
630f383
- Use size=10 by default (walters@verbum.org)
630f383
5c1ec24
* Thu Jul 28 2016 Brian C. Lane <bcl@redhat.com> 25.12-1
5c1ec24
- New lorax documentation - 25.12 (bcl@redhat.com)
5c1ec24
- Don't install python3-dnf-langpacks (vpodzime@redhat.com)
5c1ec24
849ebc3
* Wed Jul 20 2016 Brian C. Lane <bcl@redhat.com> 25.11-1
849ebc3
- Fix aarch64 installs due to missing/unsupported packages
849ebc3
  (pbrobinson@gmail.com)
849ebc3
- Keep fb_sys_fops module needed for ast support (#1272658) (bcl@redhat.com)
d5fea97
aceebe3
* Wed Jul 13 2016 Brian C. Lane <bcl@redhat.com> 25.10-1
aceebe3
- Installing *-firmware should be optional (bcl@redhat.com)
aceebe3
f4bc93f
* Fri Jul 08 2016 Brian C. Lane <bcl@redhat.com> 25.9-1
f4bc93f
- Fix installpkg error handling (bcl@redhat.com)
f4bc93f
- Switch installpkg default to --required (bcl@redhat.com)
f4bc93f
- Keep all of the kernel drivers/target/ modules (#1348381) (bcl@redhat.com)
f4bc93f
- Keep the pci utilities for use in kickstarts (#1344926) (bcl@redhat.com)
f4bc93f
- Make sure cmdline config file exists (#1348304) (bcl@redhat.com)
f4bc93f
- Stop using undocumented DNF logging API (bcl@redhat.com)
f4bc93f
1141368
* Thu Jun 02 2016 Brian C. Lane <bcl@redhat.com> 25.8-1
1141368
- livemedia-creator: Always copy novirt logs before cleanup (bcl@redhat.com)
1141368
6eacccb
* Fri May 27 2016 Brian C. Lane <bcl@redhat.com> 25.7-1
6eacccb
- do not remove libutempter as tmux gained a dep on it (dennis@ausil.us)
6eacccb
- New lorax documentation - 25.6 (bcl@redhat.com)
6eacccb
- Update lmc UEFI support to use the edk2-ovmf package (bcl@redhat.com)
6eacccb
6d411cb
* Fri May 13 2016 Brian C. Lane <bcl@redhat.com> 25.6-1
6d411cb
- Add efi, product, and updates image paths to treeinfo (bcl@redhat.com)
6d411cb
- livemedia-creator: Update make-pxe-live to support missing initramfs
6d411cb
  (bcl@redhat.com)
6d411cb
- Rebuild initramfs if it is missing (bcl@redhat.com)
6d411cb
- Add a new error to the log monitor. (bcl@redhat.com)
6d411cb
- Fix DataHolder to handle hasattr (bcl@redhat.com)
6d411cb
07cf13a
* Fri Apr 29 2016 Brian C. Lane <bcl@redhat.com> 25.5-1
07cf13a
- Add example kickstart for Atomic PXE live no-virt (bcl@redhat.com)
07cf13a
- Update ostree boot handling (bcl@redhat.com)
07cf13a
- pylorax: Add delete option to umount (bcl@redhat.com)
07cf13a
- Refactor PXE live creation code (bcl@redhat.com)
07cf13a
- Change --make-pxe-live --no-virt use a fsimage (bcl@redhat.com)
07cf13a
- Allow ostreesetup kickstart (bcl@redhat.com)
07cf13a
46bac76
* Mon Apr 18 2016 Brian C. Lane <bcl@redhat.com> 25.4-1
46bac76
- livemedia-creator: Make sure make-iso kickstart includes dracut-live
46bac76
  (bcl@redhat.com)
46bac76
- livemedia-creator: Simplify cleanup for no-virt (bcl@redhat.com)
46bac76
- Copying same file shouldn't crash (#1269213) (bcl@redhat.com)
46bac76
626cb1e
* Wed Mar 30 2016 Brian C. Lane <bcl@redhat.com> 25.3-1
626cb1e
- livemedia-creator: Use correct suffix on default image names (#1318958)
626cb1e
  (bcl@redhat.com)
626cb1e
- livemedia-creator: Pass -Xbcj to mksquashfs (bcl@redhat.com)
626cb1e
- templates: On 32 bit systems limit the amount of memory xz uses
626cb1e
  (bcl@redhat.com)
626cb1e
- ltmpl: Add compressor selection and argument passing to installimg
626cb1e
  (bcl@redhat.com)
626cb1e
- livemedia-creator: Update example kickstarts (bcl@redhat.com)
626cb1e
- image-minimizer: Fix argument parsing (bcl@redhat.com)
626cb1e
- livemedia-creator: Check selinux state and exit (bcl@redhat.com)
626cb1e
- livemedia-creator: Catch dnf download error (bcl@redhat.com)
626cb1e
- templates: Fix runtime_img check (bcl@redhat.com)
626cb1e
- Remove gnome-icon-theme (dshea@redhat.com)
626cb1e
- Exclude unused firmware from package selection. (dshea@redhat.com)
626cb1e
- Add a means of excluding packages from a glob (dshea@redhat.com)
626cb1e
- Clean up /dev. (dshea@redhat.com)
626cb1e
- Remove /var/lib/dnf (dshea@redhat.com)
626cb1e
- Remove a bunch of stuff pulled in by webkitgtk (dshea@redhat.com)
626cb1e
- lorax-lmc-virt now uses qemu not libvirt and virt-install (bcl@redhat.com)
626cb1e
- New lorax documentation - 25.2 (bcl@redhat.com)
626cb1e
- Use Sphinx to generate manpages (bcl@redhat.com)
626cb1e
- livemedia-creator: Use sphinx-argparse to document args (bcl@redhat.com)
626cb1e
- Move argument parsers into pylorax.cmdline (bcl@redhat.com)
626cb1e
- livemedia-creator: Fix off by 1024 error (bcl@redhat.com)
626cb1e
- Create UDF iso when stage2 is >= 4GiB (#1312158) (bcl@redhat.com)
626cb1e
393c918
* Tue Mar 15 2016 Brian C. Lane <bcl@redhat.com> 25.2-1
393c918
- Not all arches currently have docker (#1317632) (pbrobinson@gmail.com)
393c918
4b91920
* Wed Mar 09 2016 Brian C. Lane <bcl@redhat.com> 25.1-1
4b91920
- Change location of basearch to dnf.rpm.basearch (#1312087) (bcl@redhat.com)
4b91920
- livemedia-creator: Change fsck.ext4 discard failures to errors
4b91920
  (bcl@redhat.com)
4b91920
- pylorax: proc.returncode can be None (bcl@redhat.com)
4b91920
- livemedia-creator: Create runtime using kickstart partition size
4b91920
  (bcl@redhat.com)
4b91920
- livemedia-creator: Update kickstarts for rawhide (bcl@redhat.com)
4b91920
- pylorax: Fix undefind strings on subprocess crash (bcl@redhat.com)
4b91920
- Keep /usr/bin/xrdb (#1241724) (dshea@redhat.com)
4b91920
- Install the libblockdev-lvm-dbus plugin (#1264816) (vpodzime@redhat.com)
4b91920
- livemedia-creator: Bump default releasever to 25 (bcl@redhat.com)
4b91920
- Add docker-anaconda-addon (bcl@redhat.com)
4b91920
- livemedia-creator: Use qemu instead of virt-install (bcl@redhat.com)
4b91920
- Bump version to 25.0 (bcl@redhat.com)
4b91920
8d3f144
* Tue Mar 01 2016 Brian C. Lane <bcl@redhat.com> 24.14-1
8d3f144
- Add glibc-all-langpacks (#1312607) (dshea@redhat.com)
8d3f144
3a03f49
* Thu Feb 25 2016 Brian C. Lane <bcl@redhat.com> 24.13-1
3a03f49
- templates: Reinstate gpgme-pthread.so for ostree (walters@verbum.org)
3a03f49
- Include grub2-efi-modules on the boot.iso (#1277227) (bcl@redhat.com)
3a03f49
- Keep modules needed for ast video driver support (#1272658) (bcl@redhat.com)
3a03f49
f31f321
* Fri Feb 19 2016 Brian C. Lane <bcl@redhat.com> 24.12-1
f31f321
- Put the NM loglevel config in the right place. (bcl@redhat.com)
f31f321
dd8ecd5
* Fri Feb 19 2016 Brian C. Lane <bcl@redhat.com> 24.11-1
dd8ecd5
- configure NetworkManager to loglevel=DEBUG (#1274647) (rvykydal@redhat.com)
dd8ecd5
- New lorax documentation - 24.10 (bcl@redhat.com)
dd8ecd5
0076416
* Fri Feb 12 2016 Brian C. Lane <bcl@redhat.com> 24.10-1
0076416
- Add rng-tools and start rngd.service by default (#1258516) (bcl@redhat.com)
0076416
- livemedia-creator: Stop passing --repo to anaconda (#1304802)
0076416
  (bcl@redhat.com)
0076416
- livemedia-creator: Add /usr/share/lorax/templates.d/ support (bcl@redhat.com)
0076416
- Move templates to /usr/share/lorax/templates.d/99-generic (bcl@redhat.com)
0076416
- Add check for templates.d in the sharedir (bcl@redhat.com)
0076416
- Add documentation for the lorax command and templates (bcl@redhat.com)
0076416
- Remove the removal of the eintr checker, which has been removed
0076416
  (dshea@redhat.com)
0fdf978
5c45fad
* Wed Jan 13 2016 Brian C. Lane <bcl@redhat.com> 24.9-1
5c45fad
- livemedia-creator: Add kernel-modules and kernel-modules-extra to examples
5c45fad
  (bcl@redhat.com)
5c45fad
- livemedia-creator: Make sure the rootfs.img can be compressed
5c45fad
  (bcl@redhat.com)
5c45fad
3b23bae
* Tue Jan 12 2016 Brian C. Lane <bcl@redhat.com> 24.8-1
3b23bae
- Make arm .treeinfo match reality (dennis@ausil.us)
3b23bae
- Add --iso-name to use with --iso-only (bcl@redhat.com)
3b23bae
80cc094
* Fri Jan 08 2016 Brian C. Lane <bcl@redhat.com> 24.7-1
80cc094
- Add kpartx to Requires (bcl@redhat.com)
80cc094
- Prefix temporary files and directories with lmc- (bcl@redhat.com)
80cc094
- Add --iso-only option to --make-iso (bcl@redhat.com)
80cc094
- livemedia-creator: Fix calculation of disk_size in some cases
80cc094
  (logans@cottsay.net)
80cc094
- docs: Update documentation for livemedia-creator (bcl@redhat.com)
80cc094
- livemedia-creator: Add --image-type and --qemu-args options (bcl@redhat.com)
80cc094
- pylorax: Add mkqemu_img function, alias mkqcow2 to it. (bcl@redhat.com)
80cc094
- Update things to make pylint 1.5.1 happy (bcl@redhat.com)
80cc094
- Write a list of debuginfo packages to /root/debug-pkgs.log (#1068675)
80cc094
  (bcl@redhat.com)
80cc094
- Also remove uboot from live arm.tmpl (bcl@redhat.com)
80cc094
- no longer make u-boot wrapped kernels (dennis@ausil.us)
80cc094
- Fix chronyd not working in the installation (#1288905) (jkonecny@redhat.com)
80cc094
- Update Lorax documentation - 24.6 (bcl@redhat.com)
80cc094
- Update docs for product.img (bcl@redhat.com)
80cc094
3970f01
* Wed Dec 02 2015 Brian C. Lane <bcl@redhat.com> 24.6-1
3970f01
- livemedia-creator: Raise an error if url is used without networking
3970f01
  (fabiand@fedoraproject.org)
3970f01
- livemedia-creator: Fix a small typo (fabiand@fedoraproject.org)
3970f01
- livemedia-creator: Use discard during installation
3970f01
  (fabiand@fedoraproject.org)
3970f01
- livemedia-creator: Use cache=unsafe for the installation disk
3970f01
  (fabiand@fedoraproject.org)
3970f01
- Remove requires for pocketlint as it is not used in build process
3970f01
  (bcl@redhat.com)
3970f01
- Include qemu modules in the initrd (bcl@redhat.com)
3970f01
- livemedia-creator: Check kickstart for shutdown (#1207959) (bcl@redhat.com)
3970f01
- livemedia-creator: Correctly handle not mounting image (bcl@redhat.com)
3970f01
- livemedia-creator: Use hd:LABEL for stage2 iso (bcl@redhat.com)
3970f01
- Add support for .repo files (#1264058) (bcl@redhat.com)
3970f01
- livemedia-creator: Actually pass vcpus to virt-install (bcl@redhat.com)
3970f01
- paste is needed by os-prober (#1275105) (bcl@redhat.com)
f500c82
b892b76
* Fri Nov 06 2015 Brian C. Lane <bcl@redhat.com> 24.5-1
b892b76
- Add --virt-uefi to boot the VM using OVMF (bcl@redhat.com)
b892b76
- Enable gtk inspector. (dshea@redhat.com)
b892b76
- lorax: Improve argument parsing and help (bcl@redhat.com)
b892b76
- lorax: Add --sharedir to override configuration path (bcl@redhat.com)
b892b76
27517b4
* Wed Oct 28 2015 Brian C. Lane <bcl@redhat.com> 24.4-1
27517b4
- livemedia-creator: Allow novirt ostree partitioned images (#1273199)
27517b4
  (bcl@redhat.com)
27517b4
- Add documentation and kickstart for --make-vagrant (bcl@redhat.com)
27517b4
- livemedia-creator: Make --make-vagrant work with --no-virt (bcl@redhat.com)
27517b4
- livemedia-creator: Add --make-vagrant command (bcl@redhat.com)
27517b4
- Add selinux switch to mktar (bcl@redhat.com)
27517b4
- livemedia-creator: Make --make-oci work with --no-virt (bcl@redhat.com)
27517b4
- Add documentation for --make-oci (bcl@redhat.com)
27517b4
- livemedia-creator: Add --make-oci for Open Container Initiative images
27517b4
  (bcl@redhat.com)
27517b4
- Add submount directory to PartitionMount class (bcl@redhat.com)
27517b4
- Keep libthread so that gdb will work correctly (#1269055) (bcl@redhat.com)
27517b4
- Update Lorax documentation - 24.3 (bcl@redhat.com)
27517b4
863bf59
* Tue Oct 06 2015 Brian C. Lane <bcl@redhat.com> 24.3-1
863bf59
- Do not let systemd-tmpfiles set up /etc on boot (dshea@redhat.com)
863bf59
- Fix the concatenation of error output. (dshea@redhat.com)
863bf59
- Add findmnt command (jkonecny@redhat.com)
863bf59
- Reduce the size of macboot.img (#952747) (bcl@redhat.com)
863bf59
- rsa1 keys are not supported any more by our openssh (dan@danny.cz)
863bf59
- Look for crashes from the anaconda signal handler. (dshea@redhat.com)
863bf59
- Include gdb in the boot.iso (dshea@redhat.com)
863bf59
- Do not install weak deps in boot.iso (bcl@redhat.com)
863bf59
- Require correct dnf version for API changes (bcl@redhat.com)
863bf59
- Drop multiprocessing for do_transaction (#1208296) (bcl@redhat.com)
863bf59
- Add a font that supports Urdu characters (#1004717) (bcl@redhat.com)
863bf59
- livemedia-creator: Remove random-seed from images (#1258986) (bcl@redhat.com)
863bf59
- Don't include early microcode in initramfs (#1258498) (bcl@redhat.com)
863bf59
2511e94
* Mon Aug 31 2015 Brian C. Lane <bcl@redhat.com> 24.2-1
2511e94
- drop fedup-dracut and friends (wwoods@redhat.com)
2511e94
- don't build upgrade.img anymore (wwoods@redhat.com)
2511e94
- livemedia-creator: no-virt fsimage should only use / size from ks
2511e94
  (bcl@redhat.com)
2511e94
- Update lmc docs for new mock (bcl@redhat.com)
2511e94
- No longer offer a rescue boot menu option on liveinst (#1256061).
2511e94
  (clumens@redhat.com)
2511e94
- document --timeout in livemedia-creator man page (atodorov@redhat.com)
2511e94
- Add enough of shadow-utils to create new user accounts. (dshea@redhat.com)
2511e94
- Update Lorax documentation - 24.1 (bcl@redhat.com)
2511e94
- Add lldptool (#1085325) (rvykydal@redhat.com)
2511e94
a55e134
* Fri Aug 07 2015 Brian C. Lane <bcl@redhat.com> 24.1-1
a55e134
- some of the PowerPC utilities (powerpc-utils and fbset) need perl too
a55e134
  (pbrobinson@gmail.com)
a55e134
- Add a default vconsole.conf to the boot.iso (#1250260) (bcl@redhat.com)
a55e134
- Return the output from failed commands in CalledProcessError (bcl@redhat.com)
a55e134
- Add dracut-live for livemedia kickstart example (bcl@redhat.com)
a55e134
2a25279
* Thu Jul 30 2015 Brian C. Lane <bcl@redhat.com> 24.0-1
2a25279
- Bump version to 24.0 (bcl@redhat.com)
2a25279
- Use execReadlines in livemedia-creator (bcl@redhat.com)
2a25279
- Add execReadlines to executils. (bcl@redhat.com)
2a25279
- Add reset_lang argument to everything in executils. (bcl@redhat.com)
2a25279
8f97dab
* Tue Jul 21 2015 Brian C. Lane <bcl@redhat.com> 23.14-1
8f97dab
- Add a new makefile target that does everything needed for jenkins.
8f97dab
  (clumens@redhat.com)
8f97dab
- Revert "Revert "Turn off ldconfig"" (dshea@redhat.com)
8f97dab
- Add back libraries needed by spice-vdagent (dshea@redhat.com)
8f97dab
- Remove some junk that didn't work anyway (dshea@redhat.com)
8f97dab
- Add a verification step to Lorax.run. (dshea@redhat.com)
8f97dab
- Create an empty selinux config file (#1243168) (bcl@redhat.com)
8f97dab
- Update Lorax documentation - 23.13 (bcl@redhat.com)
8f97dab
06c41c3
* Fri Jul 10 2015 Brian C. Lane <bcl@redhat.com> 23.13-1
06c41c3
- Add a bit more overhead to the root filesystem size (bcl@redhat.com)
06c41c3
- network: turn slaves autoconnection on (rvykydal@redhat.com)
06c41c3
- Keep hyperv_fb driver in the image (#834791) (bcl@redhat.com)
06c41c3
6c42e14
* Fri Jun 26 2015 Brian C. Lane <bcl@redhat.com> 23.12-1
6c42e14
- Explicitly add kernel-modules and kernel-modules-extra (bcl@redhat.com)
6c42e14
b313297
* Fri Jun 19 2015 Brian C. Lane <bcl@redhat.com> 23.11-1
b313297
- Disable systemd-tmpfiles-clean (#1202545) (bcl@redhat.com)
4e8e05e
ae6f280
* Wed Jun 10 2015 Brian C. Lane <bcl@redhat.com> 23.10-1
ae6f280
- Remove some stale entires from runtime-install (dshea@redhat.com)
ae6f280
- Stop moving sitecustomize into site-packages (bcl@redhat.com)
ae6f280
- Pass setup_logging the log file, not the whole opts structure.
ae6f280
  (clumens@redhat.com)
ae6f280
- Move IsoMountpoint into its own module. (clumens@redhat.com)
ae6f280
- Move setup_logging into pylorax/__init__.py. (clumens@redhat.com)
ae6f280
- Break all the log monitoring stuff from LMC out into its own module.
ae6f280
  (clumens@redhat.com)
ae6f280
- Fix bug with product DataHolder overwriting product string. (bcl@redhat.com)
ae6f280
d588db6
* Fri May 15 2015 Brian C. Lane <bcl@redhat.com> 23.9-1
d588db6
- Update execWith* docstrings (bcl@redhat.com)
d588db6
- livemedia-creator: Update example kickstarts (bcl@redhat.com)
d588db6
- Update fedora-livemedia.ks example (bcl@redhat.com)
d588db6
- Include html documentation under docs/html (bcl@redhat.com)
d588db6
- Switch documentation to python3 (bcl@redhat.com)
d588db6
- Create html documentation under docs/html/ (bcl@redhat.com)
d588db6
- livemedia-creator: Catch missing package errors (bcl@redhat.com)
d588db6
- Update spec for python3 and add subpackages for lmc (bcl@redhat.com)
d588db6
- Convert to using pocketlint for pylint rules (bcl@redhat.com)
d588db6
- Convert livemedia-creator to py3 (bcl@redhat.com)
d588db6
- Convert test-parse-template to py3 (bcl@redhat.com)
d588db6
- Update image-minimizer for py3 (bcl@redhat.com)
d588db6
- Change mkefiboot to py3 (bcl@redhat.com)
d588db6
- Additional python3 changes (bcl@redhat.com)
d588db6
- Update lorax for python3 and argparse (bcl@redhat.com)
d588db6
- Use the execWith* methods from Anaconda (bcl@redhat.com)
d588db6
- Convert pylorax to python3 (bcl@redhat.com)
d588db6
- Clean up some pylint warnings (bcl@redhat.com)
d588db6
- Make sure openssh-clients is installed (#1219398) (bcl@redhat.com)
d588db6
- Add product.img support for s390 templates (dan@danny.cz)
d588db6
- Add some more details about template rendering errors (bcl@redhat.com)
d588db6
- Mock more modules for RTD (bcl@redhat.com)
d588db6
- Mock the selinux package for RTD (bcl@redhat.com)
d588db6
- Added Sphinx Documentation (bcl@redhat.com)
d588db6
7c3a8d7
* Thu Apr 02 2015 Brian C. Lane <bcl@redhat.com> 23.8-1
7c3a8d7
- Include cryptsetup in the image (#1208214) (bcl@redhat.com)
7c3a8d7
c2aa35d
* Fri Mar 27 2015 Brian C. Lane <bcl@redhat.com> 23.7-1
c2aa35d
- Check that the transaction process is still alive (vpodzime@redhat.com)
c2aa35d
- livemedia-creator: Clean up resultdir handling (bcl@redhat.com)
c2aa35d
e417ab5
* Fri Mar 20 2015 Brian C. Lane <bcl@redhat.com> 23.6-1
e417ab5
- Include ld.so.conf (#1204031) (bcl@redhat.com)
e417ab5
- Revert "Turn off ldconfig" (bcl@redhat.com)
e417ab5
- Add ability for external templates to graft content into boot.iso
e417ab5
  (walters@verbum.org)
e417ab5
- Keep logitech hid drivers (#1199770) (bcl@redhat.com)
e417ab5
40387ea
* Mon Mar 16 2015 Brian C. Lane <bcl@redhat.com> 23.5-1
40387ea
- Don't erase /usr/lib/os.release.d (sgallagh@redhat.com)
40387ea
e75e5cd
* Fri Mar 13 2015 Brian C. Lane <bcl@redhat.com> 23.4-1
e75e5cd
- Require python-dnf so that we get the python2 version (bcl@redhat.com)
e75e5cd
- livemedia-creator: Fix up fake yum object for DNF change (bcl@redhat.com)
e75e5cd
- Update logic for stage2 detection on boot.iso (bcl@redhat.com)
e75e5cd
a802ed1
* Fri Mar 06 2015 Brian C. Lane <bcl@redhat.com> 23.3-1
a802ed1
- Turn off ldconfig (bcl@redhat.com)
a802ed1
- Add removekmod template command (bcl@redhat.com)
a802ed1
- Move stage2 to images/install.img (#815275) (bcl@redhat.com)
a802ed1
0314751
* Fri Feb 27 2015 Brian C. Lane <bcl@redhat.com> 23.2-1
0314751
- Update pykickstart requirement (bcl@redhat.com)
0314751
- Explicitly install notification-daemon (dshea@redhat.com)
0314751
ff3cdc2
* Tue Feb 17 2015 Brian C. Lane <bcl@redhat.com> 23.1-1
ff3cdc2
- Skip using srpm repos (bcl@redhat.com)
ff3cdc2
- Drop the dnf Base object deletion code and use reset (bcl@redhat.com)
ff3cdc2
- Get the log directory from the configfile (bcl@redhat.com)
ff3cdc2
- lorax: Add --cachedir, --force and --workdir cmdline options (bcl@redhat.com)
ff3cdc2
- Cleanup help alignment (bcl@redhat.com)
ff3cdc2
- dnf: remove files from installed packages (bcl@redhat.com)
ff3cdc2
- Switch lorax to use dnf instead of yum (bcl@redhat.com)
ff3cdc2
- Fix Source0 for use with github (bcl@redhat.com)
ff3cdc2
2b94a79
* Thu Feb 12 2015 Brian C. Lane <bcl@redhat.com> 23.0-1
2b94a79
- Bump version to 23.0 (bcl@redhat.com)
2b94a79
- os-release moved to /usr/lib (#1191713) (bcl@redhat.com)
2b94a79
- Use /usr/bin/python2 in scripts (bcl@redhat.com)
2b94a79
- Add bridge-utils (#1188812) (bcl@redhat.com)
2b94a79
c88a149
* Fri Feb 06 2015 Brian C. Lane <bcl@redhat.com> 22.4-1
c88a149
- livemedia-creator: Add --timeout option to cancel install after X minutes
c88a149
  (bcl@redhat.com)
c88a149
- network: add support for bridge (#1075195) (rvykydal@redhat.com)
c88a149
- Move url and source to github in specfile (bcl@redhat.com)
c88a149
- Use %%license in lorax.spec (bcl@redhat.com)
c88a149
e13fb27
* Fri Jan 23 2015 Brian C. Lane <bcl@redhat.com> 22.3-1
e13fb27
- livemedia-creator: Add documentation on using mock and livemedia-creator (bcl@redhat.com)
e13fb27
- livemedia-creator: Bump default releasever to 22 (bcl@redhat.com)
e13fb27
- Change console font to eurlatgr (myllynen@redhat.com)
e13fb27
7496b3d
* Fri Jan 16 2015 Brian C. Lane <bcl@redhat.com> 22.2-1
7496b3d
- Add --live-rootfs-keep-size option (rvykydal@redhat.com)
7496b3d
- Add --live-rootfs-size option. (rvykydal@redhat.com)
7496b3d
- livemedia-creator: Update example kickstarts (bcl@redhat.com)
7496b3d
- livemedia-creator: Turn on debug output for dracut (bcl@redhat.com)
7496b3d
- livemedia-creator: Copy all the logs from /tmp/ (bcl@redhat.com)
7496b3d
- livemedia-creator: Create parent dirs for logfile path (bcl@redhat.com)
7496b3d
- Remove fedora-icon-theme (dshea@redhat.com)
7496b3d
- Remove fedora-gnome-theme (dshea@redhat.com)
7496b3d
- Remove the GSettings overrides for metacity (dshea@redhat.com)
7496b3d
- Remove gnome-python2-gconf (dshea@redhat.com)
7496b3d
- --make-pxe-target: change permissions of regenerated initramrfs to 0644
7496b3d
  (rvykydal@redhat.com)
7496b3d
- Override services kickstart setting from interactive-defaults.ks
7496b3d
  (rvykydal@redhat.com)
7496b3d
- Use gcdaa64.efi on aarch64 (#1174475) (bcl@redhat.com)
7496b3d
- livemedia-creator: add a timeout to the log monitor startup (bcl@redhat.com)
7496b3d
- Add --make-pxe-live and --make-ostree-live (for Atomic) targets.
7496b3d
  (rvykydal@redhat.com)
7496b3d
- Revert "Install optional product and updates packages (#1155228)"
7496b3d
  (bcl@redhat.com)
7496b3d
- Add log monitoring to lmc --no-virt installation (bcl@redhat.com)
7496b3d
- runtime-cleanup.tmpl: keep virtio-rng (#1179000) (lersek@redhat.com)
7496b3d
- Install python-nss (vpodzime@redhat.com)
7496b3d
a9b2f79
* Fri Dec 12 2014 Brian C. Lane <bcl@redhat.com> 22.1-1
a9b2f79
- Actually make boot.iso on aarch64. (pjones@redhat.com)
a9b2f79
- Add --includepkg argument (walters@verbum.org)
a9b2f79
7d50ec6
* Fri Dec 05 2014 Brian C. Lane <bcl@redhat.com> 22.0-1
7d50ec6
- aarch64 no longer needs explicit console setting (#1170412) (bcl@redhat.com)
7d50ec6
- Bump version to 22.0 (bcl@redhat.com)
7d50ec6
56de670
* Wed Dec 03 2014 Brian C. Lane <bcl@redhat.com> 21.31-1
56de670
- Drop 32 bit for loop from ppc64 grub2 config (#1169878) (bcl@redhat.com)
56de670
- gschemas: Fix typo button_laytout -> button_layout (walters@verbum.org)
56de670
ba33df5
* Thu Nov 20 2014 Brian C. Lane <bcl@redhat.com> 21.30-1
ba33df5
- Install optional product and updates packages (#1155228) (bcl@redhat.com)
ba33df5
6ea09c6
* Wed Nov 19 2014 Brian C. Lane <bcl@redhat.com> 21.29-1
6ea09c6
- Remove diagnostic product.img test (#1165425) (bcl@redhat.com)
6ea09c6
2221e10
* Thu Nov 06 2014 Brian C. Lane <bcl@redhat.com> 21.28-1
2221e10
- Add product.img support for arm templates (bcl@redhat.com)
2221e10
- Revert "add fedora-repos-anaconda to runtime environment" (bcl@redhat.com)
2221e10
56ed860
* Wed Nov 05 2014 Brian C. Lane <bcl@redhat.com> 21.27-1
56ed860
- Remove the ppc magic file (bcl@redhat.com)
56ed860
- Update templates to use installimg for product and updates (bcl@redhat.com)
56ed860
- Add installimg command for use in the templates (bcl@redhat.com)
56ed860
- Setup mdadm to turn off homehost (#1156614) (bcl@redhat.com)
56ed860
- Don't include the stock lvm.conf. (#1157864) (dlehman@redhat.com)
56ed860
- Write list of packages to /root/lorax-packages.log (bcl@redhat.com)
56ed860
7341104
* Mon Oct 20 2014 Brian C. Lane <bcl@redhat.com> 21.26-1
7341104
- Use all upper case for shim in live/efi.tmpl (bcl@redhat.com)
7341104
- livemedia-creator: Add nfs support for no-virt mode (#1121255)
7341104
  (bcl@redhat.com)
7341104
- Include /usr/bin/bugzilla in the installation environment.
7341104
  (clumens@redhat.com)
7341104
218803b
* Tue Oct 07 2014 Brian C. Lane <bcl@redhat.com> 21.25-1
218803b
- Libgailutil is required yelp, don't remove it (#1072033) (mkolman@redhat.com)
218803b
- Revert "Don't remove /usr/share/doc/anaconda." (#1072033)
218803b
  (mkolman@redhat.com)
218803b
- Look for "BOOT${efiarch}.EFI" in mkefiboot as well. (pjones@redhat.com)
218803b
- Make sure shim is actually in the package list on aarch64 as well.
218803b
  (pjones@redhat.com)
218803b
- Fix 'docs' typo in livemedia-creator manpage (#1149026) (bcl@redhat.com)
218803b
- Keep the /etc/lvm/profiles directory in the image (vpodzime@redhat.com)
218803b
- Use shim on aarch64. (pjones@redhat.com)
218803b
9b6523b
* Tue Sep 30 2014 Brian C. Lane <bcl@redhat.com> 21.24-1
9b6523b
- Rework how including /usr/share/doc/anaconda works. (clumens@redhat.com)
9b6523b
- Don't remove /usr/share/doc/anaconda. (clumens@redhat.com)
9b6523b
- Stop removing libXt from the installation media. (clumens@redhat.com)
9b6523b
7a526ce
* Tue Sep 23 2014 Brian C. Lane <bcl@redhat.com> 21.23-1
7a526ce
- livemedia-creator: Make sure ROOT_PATH exists (#1144140) (bcl@redhat.com)
7a526ce
- livemedia-creator: Add --no-recursion to mktar (#1144140) (bcl@redhat.com)
7a526ce
- Remove at-spi (dshea@redhat.com)
7a526ce
ad5fad5
* Mon Sep 15 2014 Brian C. Lane <bcl@redhat.com> 21.22-1
ad5fad5
- add fedora-repos-anaconda to runtime environment (awilliam@redhat.com)
ad5fad5
- Let the plymouth dracut module back into the ppc64 upgrade.img
ad5fad5
  (dshea@redhat.com)
ad5fad5
- Add more tools for rescue mode (#1109785) (bcl@redhat.com)
ad5fad5
- Add ppc64le arch (#1136490) (bcl@redhat.com)
ad5fad5
- allow setting additional dracut parameters for DVD s390x installs
ad5fad5
  (dan@danny.cz)
ad5fad5
1d963df
* Thu Aug 28 2014 Brian C. Lane <bcl@redhat.com> 21.21-1
1d963df
- Revert "Require 32bit glibc on ppc64" (bcl@redhat.com)
1d963df
- livemedia-creator: Update ppc64 live to use grub2 (bcl@redhat.com)
1d963df
- livemedia-creator: Add ppc64 live creation support (#1102318)
1d963df
  (bcl@redhat.com)
1d963df
- Include /sbin/ldconfig from glibc. (dlehman@redhat.com)
3e94022
40b696a
* Fri Aug 15 2014 Brian C. Lane <bcl@redhat.com> 21.20-1
40b696a
- Require 32bit glibc on ppc64 (bcl@redhat.com)
40b696a
- Add ipmitool and drivers (#1126009) (bcl@redhat.com)
40b696a
- livemedia-creator: Padd disk size by 2MiB (bcl@redhat.com)
40b696a
- livemedia-creator: Run setfiles after no-virt installation (bcl@redhat.com)
40b696a
- https is a sane package source URL scheme (walters@verbum.org)
40b696a
ba5e6b5
* Wed Jul 30 2014 Brian C. Lane <bcl@redhat.com> 21.19-1
ba5e6b5
- Add kexec anaconda addon (#1115914) (bcl@redhat.com)
ba5e6b5
f8290a9
* Wed Jul 23 2014 Brian C. Lane <bcl@redhat.com> 21.18-1
f8290a9
- Revert "Add kexec anaconda addon (#1115914)" (bcl@redhat.com)
f8290a9
- Disable dnf-makecache.timer (#1120368) (bcl@redhat.com)
f8290a9
cb6b113
* Wed Jul 16 2014 Brian C. Lane <bcl@redhat.com> 21.17-1
cb6b113
- livemedia-creator: close the socket when done (bcl@redhat.com)
cb6b113
- Keep seq and getconf utilities in the image (vpodzime@redhat.com)
cb6b113
- Allow _ in isolabel (#1118955) (bcl@redhat.com)
cb6b113
080f80e
* Fri Jul 11 2014 Brian C. Lane <bcl@redhat.com> 21.16-1
080f80e
- Don't remove usr/lib/rpm/platform/ (#1116450) (bcl@redhat.com)
080f80e
- Add xfsdump and remove extra files from xfsprogs (#1118654) (bcl@redhat.com)
080f80e
- Add kexec anaconda addon (#1115914) (bcl@redhat.com)
080f80e
- Fix typo in lohit-telugu-fonts (bcl@redhat.com)
080f80e
- Drop writing to resolv.conf in postinstall (bcl@redhat.com)
080f80e
- livemedia-creator: Allow the boot.iso to be shared (bcl@redhat.com)
080f80e
- livemedia-creator: log more failure information (bcl@redhat.com)
080f80e
- livemedia-creator: drop console=ttyS0 (bcl@redhat.com)
080f80e
- livemedia-creator: Log the line that caused the failure (bcl@redhat.com)
080f80e
- livemedia-creator: add more errors (bcl@redhat.com)
080f80e
- Allow doing non-URL installs if using virt. (clumens@redhat.com)
080f80e
055eb77
* Wed Jul 02 2014 Brian C. Lane <bcl@redhat.com> 21.15-1
055eb77
- Convert metacity gconf settings into gsettings schema overrides
055eb77
  (dshea@redhat.com)
055eb77
- Add more keybindings to the gschema override (dshea@redhat.com)
055eb77
- Don't emit media labels with spaces in them. (pjones@redhat.com)
055eb77
- Remove biosdevname (#989209) (bcl@redhat.com)
055eb77
f6c2977
* Fri Jun 27 2014 Brian C. Lane <bcl@redhat.com> 21.14-1
f6c2977
- The theme has been absorbed into gtk3 (bcl@redhat.com)
f6c2977
293d240
* Thu Jun 26 2014 Brian C. Lane <bcl@redhat.com> 21.13-1
293d240
- livemedia-creator: Ignore IGNORED errors in anaconda logs (bcl@redhat.com)
293d240
a8c64c8
* Tue Jun 24 2014 Brian C. Lane <bcl@redhat.com> 21.12-1
a8c64c8
- tito.props section name is buildconfig (bcl@redhat.com)
a8c64c8
- Stop removing libcanberra-gtk3 libraries (#1111724) (bcl@redhat.com)
a8c64c8
- Update tito config (bcl@redhat.com)
a8c64c8
d71ee14
* Thu Jun 19 2014 Brian C. Lane <bcl@redhat.com> 21.11-1
d71ee14
- livemedia-creator: Handle virt-install failure cleanup (bcl@redhat.com)
d71ee14
- livemedia-creator: Fail when there are missing packages (bcl@redhat.com)
d71ee14
- Keep virtio_console harder. (dshea@redhat.com)
a1a67d9
ebd1882
* Mon May 12 2014 Brian C. Lane <bcl@redhat.com> 21.10-1
ebd1882
- Add --add-template{,-var} (walters@verbum.org)
ebd1882
- runtime-install: Add rpm-ostree, move dnf here (walters@verbum.org)
ebd1882
- Update copyright statements (bcl@redhat.com)
ebd1882
- livemedia-creator: Cleanup docstrings (bcl@redhat.com)
ebd1882
- livemedia-creator: Cleanup some style issues (bcl@redhat.com)
ebd1882
- Cleanup other misc pylint warnings (bcl@redhat.com)
ebd1882
- Cleanup pylorax pylint warnings (bcl@redhat.com)
ebd1882
- Add pylint testing (bcl@redhat.com)
ebd1882
- Require uboot-tools when running on arm (dennis@ausil.us)
ebd1882
- Obsolete appliance-tools-minimizer (#1084110) (bcl@redhat.com)
ebd1882
- livemedia-creator: Copy fsimage if hardlink fails (bcl@redhat.com)
ebd1882
- Turn on debug output for mkefiboot (bcl@redhat.com)
ebd1882
- Clean up download and install output (bcl@redhat.com)
ebd1882
- Install specific lohit fonts instead of all of them (#1090390)
ebd1882
  (bcl@redhat.com)
ebd1882
- Update grub2-efi.cfg for aarch64 to more closely match x86 (#1089418).
ebd1882
  (dmarlin@redhat.com)
ebd1882
- Install rdma so that dracut will use it along with libmlx4 (#1089564)
ebd1882
  (bcl@redhat.com)
7fc00eb
b771e1f
* Tue Apr 15 2014 Brian C. Lane <bcl@redhat.com> 21.9-1
b771e1f
- Update syslinux 6.02 support for noarch change (bcl@redhat.com)
b771e1f
- runtime-cleanup: Do install GPG (walters@verbum.org)
b771e1f
520d8c6
* Thu Apr 10 2014 Brian C. Lane <bcl@redhat.com> 21.8-1
520d8c6
- Update to support syslinux 6.02 (bcl@redhat.com)
520d8c6
- livemedia-creator: Add support for making tarfiles (bcl@redhat.com)
520d8c6
- livemedia-creator: Allow disk sizes to be < 1GiB (bcl@redhat.com)
520d8c6
- livemedia-creator: Check fsimage kickstart for single partition
520d8c6
  (bcl@redhat.com)
520d8c6
- livemedia-creator: Output all the errors at once (bcl@redhat.com)
520d8c6
- livemedia-creator: Update documentation to reflect new options
520d8c6
  (bcl@redhat.com)
520d8c6
- livemedia-creator: Make --make-fsimage work with virt-install
520d8c6
  (bcl@redhat.com)
520d8c6
5ed738d
* Wed Apr 02 2014 Brian C. Lane <bcl@redhat.com> 21.7-1
5ed738d
- Use BOOTAA64.efi for AARCH64 bootloader filename (#1080113) (bcl@redhat.com)
5ed738d
- Stop removing curl after adding it (bcl@redhat.com)
5ed738d
- move image-minimizer to lorax (#1082642) (bcl@redhat.com)
5ed738d
- support ppc64le in lorax (hamzy@us.ibm.com)
5ed738d
f4e8e4a
* Wed Mar 26 2014 Brian C. Lane <bcl@redhat.com> 21.6-1
f4e8e4a
- Install bzip2 for liveimg tar.bz2 support (bcl@redhat.com)
f4e8e4a
- Remove obsolete firstaidkit packages (#1076237) (bcl@redhat.com)
f4e8e4a
- livemedia-creator: Add option to create qcow2 disk images (bcl@redhat.com)
f4e8e4a
- Add support for creating qcow2 images (bcl@redhat.com)
f4e8e4a
- utf-8 encode yum actions before displaying them (#1072362) (bcl@redhat.com)
f4e8e4a
897f05e
* Fri Feb 28 2014 Brian C. Lane <bcl@redhat.com> 21.5-1
897f05e
- Use string for releasever not int (#1067746) (bcl@redhat.com)
897f05e
- createrepo is needed by driver disks (#1016004) (bcl@redhat.com)
897f05e
- Improve aarch64 UEFI support (#1067671) (dmarlin@redhat.com)
897f05e
- livemedia-creator: Set the product and release version env variables
897f05e
  (#1067746) (bcl@redhat.com)
897f05e
- Check initrd size on ppc64 and warn (#1060691) (bcl@redhat.com)
897f05e
- Remove drivers and modules on ppc64 (#1060691) (bcl@redhat.com)
897f05e
9fa0a77
* Mon Feb 10 2014 Brian C. Lane <bcl@redhat.com> 21.4-1
9fa0a77
- livemedia-creator: virt-image needs ram in MiB not KiB (#1061773)
9fa0a77
  (bcl@redhat.com)
9fa0a77
- Don't remove libraries from bind-libs-lite (dshea@redhat.com)
9fa0a77
- Include all the example kickstarts (#1019728) (bcl@redhat.com)
9fa0a77
- Remove floppy and scsi_debug from initrd (#1060691) (bcl@redhat.com)
9fa0a77
b0b9623
* Tue Feb 04 2014 Brian C. Lane <bcl@redhat.com> 21.3-1
b0b9623
- Install aajohan-comfortaa-fonts (#1047430) (bcl@redhat.com)
b0b9623
- Include mesa-dri-drivers (#1053940) (bcl@redhat.com)
b0b9623
0b93c7b
* Fri Jan 24 2014 Brian C. Lane <bcl@redhat.com> 21.2-1
0b93c7b
- Activate anaconda-shell@.service on switch to empty VT (#980062)
0b93c7b
  (wwoods@redhat.com)
0b93c7b
- flush data to disk after mkfsimage (#1052175) (bcl@redhat.com)
0b93c7b
- livemedia-creator: Use findkernels instead of KernelInfo (bcl@redhat.com)
0b93c7b
- Print error when kickstart is missing (#1052872) (bcl@redhat.com)
0b93c7b
6029d9e
* Tue Dec 17 2013 Brian C. Lane <bcl@redhat.com> 21.1-1
6029d9e
- Add initial 64-bit ARM (aarch64) support (#1034432) (dmarlin@redhat.com)
6029d9e
7113bdc
* Mon Dec 16 2013 Brian C. Lane <bcl@redhat.com> 21.0-1
7113bdc
- s390 switch to generic condev (#1042766) (bcl@redhat.com)
7113bdc
- sort glob output before using it (bcl@redhat.com)
7113bdc
- Bless grub2 for PPC (#1020112) (catacombae@gmail.com)
7113bdc
- livemedia-creator: Cleanup temp yum files (#1025837) (bcl@redhat.com)
7113bdc
- lorax: pass size from Lorax.run to create_runtime (#903385) (bcl@redhat.com)
7113bdc
0012092
* Mon Nov 18 2013 Brian C. Lane <bcl@redhat.com> 20.4-1
0012092
- drop 'xdriver=vesa' from basic graphics mode parameters (per ajax)
0012092
  (awilliam@redhat.com)
0012092
- Include partx (#1022899) (bcl@redhat.com)
0012092
- Run compressions in multiple threads (vpodzime@redhat.com)
0012092
- Do not remove libdaemon from the runtime environment (#1028938)
0012092
  (vpodzime@redhat.com)
0012092
- Set UEFI defaults to match BIOS (#1021451,#1021446) (bcl@redhat.com)
0012092
- livemedia-creator: Add minimal disk example kickstart (#1019728)
0012092
  (bcl@redhat.com)
0012092
9273360
* Wed Oct 16 2013 Brian C. Lane <bcl@redhat.com> 20.3-1
9273360
- ARM: install the dtb files into the install tree. (dennis@ausil.us)
9273360
- ARM: Don't install or deal with in templates, no longer existing kernels
9273360
  (dennis@ausil.us)
9273360
- kernel changed seperator for flavours from . to + update regular expression
9273360
  (dennis@ausil.us)
9273360
- Keep virtio_console module (#1019564) (bcl@redhat.com)
9273360
- Add macboot option (#1012529) (bcl@redhat.com)
9273360
577e9cc
* Wed Sep 25 2013 Brian C. Lane <bcl@redhat.com> 20.2-1
577e9cc
- drop dracut args from config files (#1008054) (bcl@redhat.com)
577e9cc
- livemedia-creator: Update example kickstart (bcl@redhat.com)
577e9cc
6435e0a
* Mon Sep 09 2013 Brian C. Lane <bcl@redhat.com> 20.1-1
6435e0a
- Yaboot to grub2 conversion cleanup. (dwa@redhat.com)
6435e0a
- Firstboot is not an anaconda dependency (vpodzime@redhat.com)
6435e0a
- Revert "Switch to cgit url for Source0" (bcl@redhat.com)
6435e0a
- Switch to cgit url for Source0 (bcl@redhat.com)
3b60413
7d9b154
* Tue Sep 03 2013 Brian C. Lane <bcl@redhat.com> 20.0-1
7d9b154
- remove firewalld from installroot (#1002195) (bcl@redhat.com)
7d9b154
- Make sure grubby is installed for initrd creation (#1001896) (bcl@redhat.com)
7d9b154
- GRUB2 as the ISO boot loader for POWER arch (pfsmorigo@br.ibm.com)
7d9b154
- Require hfsplus-tools on Fedora x86_64 (bcl@redhat.com)
7d9b154
b0c2f0f
* Fri Aug 23 2013 Brian C. Lane <bcl@redhat.com> 19.8-1
b0c2f0f
- Make sure we have a theme settings file in place. (clumens@redhat.com)
b0c2f0f
- Keep liblzo2.* (#997643) (dshea@redhat.com)
b0c2f0f
- Make sure dracut uses no-hostonly mode (bcl@redhat.com)
b0c2f0f
- Run spice-vdagentd without systemd-logind integration (#969405)
b0c2f0f
  (dshea@redhat.com)
b1a3aeb
9675a26
* Thu Aug 01 2013 Brian C. Lane <bcl@redhat.com> 19.7-1
9675a26
- Add a dist target that copies the archive to fedorahosted (bcl@redhat.com)
9675a26
- dracut-nohostonly and dracut-norescue got renamed for dracut >= 030
9675a26
  (harald@redhat.com)
9675a26
- EFI and related packages are only for x86_64 (pjones@redhat.com)
9675a26
- Don't remove xkeyboard-config message files (#972236) (dshea@redhat.com)
9675a26
03dcc45
* Fri Jul 26 2013 Brian C. Lane <bcl@redhat.com> 19.6-1
03dcc45
- Add manpage for lorax (bcl@redhat.com)
03dcc45
- Add manpage for livemedia-creator (bcl@redhat.com)
03dcc45
- livemedia-creator: pass inst.cmdline for headless installs (#985487)
03dcc45
  (bcl@redhat.com)
03dcc45
- Stop using /usr/bin/env (#987028) (bcl@redhat.com)
03dcc45
- livemedia-creator: clarify required package errors (#985340) (bcl@redhat.com)
03dcc45
- Include device-mapper-persistent-data in images for thinp support.
03dcc45
  (dlehman@redhat.com)
03dcc45
7461c1f
* Thu Jun 13 2013 Brian C. Lane <bcl@redhat.com> 19.5-1
7461c1f
- Let sshd decide which keys to create (#971856) (bcl@redhat.com)
7461c1f
- Don't remove thbrk.tri (#886250) (bcl@redhat.com)
7461c1f
- Switch from xorg-x11-fonts-ethiopic to sil-abyssinica-fonts (#875664)
7461c1f
  (bcl@redhat.com)
7461c1f
- Make ignoring yum_lock messages in anaconda easier. (clumens@redhat.com)
7461c1f
- Bump image size up to 2G (#967556) (bcl@redhat.com)
7461c1f
- livemedia-creator: Fix logic for anaconda test (#958036) (bcl@redhat.com)
7461c1f
f952f49
* Tue May 21 2013 Brian C. Lane <bcl@redhat.com> 19.4-1
f952f49
- Add command for opening anaconda log file to history (mkolman@gmail.com)
f952f49
- Do not install chrony and rdate explicitly (vpodzime@redhat.com)
f952f49
c13c71a
* Mon Apr 29 2013 Brian C. Lane <bcl@redhat.com> 19.3-1
c13c71a
- Remove /var/log/journal so journald won't write to overlay
c13c71a
  (wwoods@redhat.com)
c13c71a
- Leave /etc/os-release in the initrd (#956241) (bcl@redhat.com)
c13c71a
- no standalone modutils package (dan@danny.cz)
c13c71a
- remove no longer supported arm kernel variants add the new lpae one
c13c71a
  (dennis@ausil.us)
c13c71a
- livemedia-creator: Update example kickstarts (bcl@redhat.com)
c13c71a
- livemedia-creator: Ignore rescue kernels (bcl@redhat.com)
c13c71a
e09e49e
* Mon Apr 15 2013 Brian C. Lane <bcl@redhat.com> 19.2-1
e09e49e
- Let devices get detected and started automatically. (dlehman@redhat.com)
e09e49e
- Fix import of version (bcl@redhat.com)
e09e49e
- fix version query and add one to the log file (hamzy@us.ibm.com)
e09e49e
- Do not remove files required by tools from the s390utils-base package.
e09e49e
  (jstodola@redhat.com)
e09e49e
1df0cc8
* Tue Mar 19 2013 Brian C. Lane <bcl@redhat.com> 19.1-1
1df0cc8
- Print & log messages on scriptlet/transaction errors (wwoods@redhat.com)
1df0cc8
- sysutils: add -x to cp in linktree (wwoods@redhat.com)
1df0cc8
- treebuilder: fix "Can't stat exclude path "/selinux"..." message
1df0cc8
  (wwoods@redhat.com)
1df0cc8
- runtime: install dracut-{nohostonly,norescue} (wwoods@redhat.com)
1df0cc8
- runtime-install: install shim-unsigned (wwoods@redhat.com)
1df0cc8
- Add explicit install of net-tools (#921619) (bcl@redhat.com)
1df0cc8
- Don't remove hmac files for ssh and sshd (#882153) (bcl@redhat.com)
1df0cc8
- Raise an error when there are no initrds (bcl@redhat.com)
1df0cc8
- Add yum logging to yum.log (bcl@redhat.com)
1df0cc8
- remove sparc support (dennis@ausil.us)
1df0cc8
- Change Makefile to produce .tgz (bcl@redhat.com)
1df0cc8
0968815
* Thu Feb 28 2013 Brian C. Lane <bcl@redhat.com> 19.0-1
0968815
- New Version 19.0
0968815
- Remove some env variables (#907692) (bcl@redhat.com)
0968815
- Make sure tmpfs is enabled (#908253) (bcl@redhat.com)
0968815
0968815
* Tue Feb 12 2013 Brian C. Lane <bcl@redhat.com> 18.31-1
0968815
- add syslinux and ssm (bcl@redhat.com)
0968815
- Add filesystem image install support (bcl@redhat.com)
0968815
0968815
* Thu Jan 31 2013 Brian C. Lane <bcl@redhat.com> 18.30-1
0968815
- yum changed the callback info (bcl@redhat.com)
0968815
- tigervnc-server-module depends on Xorg, which doesn't exist on s390x
0968815
  (dan@danny.cz)
0968815
- tools not existing on s390x (dan@danny.cz)
0968815
- specspo is dead for a long time (dan@danny.cz)
0968815
- no Xorg on s390x (dan@danny.cz)
0968815
- Make boot configs consistent. (dmach@redhat.com)
0968815
- Dynamically generate the list of installed platforms for .treeinfo
0968815
  (dmarlin@redhat.com)
0968815
- Add a U-Boot wrapped image of 'upgrade.img'. (dmarlin@redhat.com)
0968815
- Add trigger for Anaconda's exception handling to bash_history
0968815
  (vpodzime@redhat.com)
0968815
- livemedia-creator: update example kickstarts (bcl@redhat.com)
0968815
- livemedia-creator: don't pass console=ttyS0 (bcl@redhat.com)
0968815
- Fix gcdx64.efi path to work for other distros than Fedora. (dmach@redhat.com)
0968815
0968815
* Thu Dec 20 2012 Martin Gracik <mgracik@redhat.com> 18.29-1
0968815
- Do not remove gtk3 share files (mgracik@redhat.com)
0968815
0968815
* Wed Dec 19 2012 Martin Gracik <mgracik@redhat.com> 18.28-1
0968815
- Fix rexists (mgracik@redhat.com)
0968815
- Several 'doupgrade' fixes in the x86 template. (dmach@redhat.com)
0968815
- Missing semicolon (mgracik@redhat.com)
0968815
0968815
* Tue Dec 18 2012 Martin Gracik <mgracik@redhat.com> 18.27-1
0968815
- Only run installupgradeinitrd if upgrade on s390x (mgracik@redhat.com)
0968815
0968815
* Tue Dec 18 2012 Martin Gracik <mgracik@redhat.com> 18.26-1
0968815
- Only run installupgradeinitrd if upgrade (mgracik@redhat.com)
0968815
0968815
* Tue Dec 18 2012 Martin Gracik <mgracik@redhat.com> 18.25-1
0968815
- Add --noupgrade option (mgracik@redhat.com)
0968815
- Require fedup-dracut* only on Fedora. (dmach@redhat.com)
0968815
0968815
* Fri Dec 14 2012 Brian C. Lane <bcl@redhat.com> 18.24-1
0968815
- imgutils: use -s for kpartx, wait for device creation (bcl@redhat.com)
0968815
- livemedia-creator: Use SELinux Permissive mode (bcl@redhat.com)
0968815
- livemedia-creator: use cmdline mode (bcl@redhat.com)
0968815
- use correct variable for upgrade image on s390 (dan@danny.cz)
0968815
- only ix86/x86_64 and ppc/ppc64 need grub2 (dan@danny.cz)
0968815
- no mount (sub-)package since RHEL-2 (dan@danny.cz)
0968815
- Correct argument to installupgradeinitrd. (dmarlin@redhat.com)
0968815
- Added fedup requires to spec (bcl@redhat.com)
0968815
0968815
* Wed Dec 05 2012 Brian C. Lane <bcl@redhat.com> 18.23-1
0968815
- remove multipath rules (#880263) (bcl@redhat.com)
0968815
- add installupgradeinitrd function and use it to install the upgrade initrds
0968815
  (dennis@ausil.us)
0968815
- use installinitrd to install the upgrade.img initramfs so that we get correct
0968815
  permissions (dennis@ausil.us)
0968815
- ppc and arm need to use kernel.upgrade not kernel.upgrader (dennis@ausil.us)
0968815
- remove upgrade from the sparc and sysylinux config templates
0968815
  (dennis@ausil.us)
0968815
- Add the 'fedup' plymouth theme if available (wwoods@redhat.com)
0968815
- make templates install upgrade.img (wwoods@redhat.com)
0968815
- build fedup upgrade.img (wwoods@redhat.com)
0968815
- treebuilder: improve findkernels() initrd search (wwoods@redhat.com)
0968815
- treebuilder: add 'prefix' to rebuild_initrds() (wwoods@redhat.com)
0968815
- Add thai-scalable-waree-fonts (#872468) (mgracik@redhat.com)
0968815
- Do not remove the fipscheck package (#882153) (mgracik@redhat.com)
0968815
- Add MokManager.efi to EFI/BOOT (#882101) (mgracik@redhat.com)
6493e18
dee1bba
* Tue Nov 06 2012 Brian C. Lane <bcl@redhat.com> 18.22-1
dee1bba
- Install the yum-langpacks plugin (#868869) (jkeating@redhat.com)
dee1bba
- perl is required by some low-level tools on s390x (#868824) (dan@danny.cz)
dee1bba
1517000
* Thu Oct 11 2012 Brian C. Lane <bcl@redhat.com> 18.21-1
1517000
- Change the install user's shell for tmux (jkeating@redhat.com)
1517000
- Set permissions on the initrd (#863018) (mgracik@redhat.com)
1517000
- Remove the default word from boot menu (#848676) (mgracik@redhat.com)
1517000
- Disable a whole bunch more keyboard shortcuts (#863823). (clumens@redhat.com)
1517000
- use /var/tmp instead of /tmp (bcl@redhat.com)
1517000
- remove rv from unmount error log (bcl@redhat.com)
1517000
5366015
* Wed Sep 19 2012 Brian C. Lane <bcl@redhat.com> 18.20-1
5366015
- Remove grub 0.97 splash (bcl@redhat.com)
5366015
- livemedia-creator: use rd.live.image instead of liveimg (bcl@redhat.com)
5366015
9525679
* Mon Sep 17 2012 Brian C. Lane <bcl@redhat.com> 18.19-1
9525679
- There's no lang-table in anaconda anymore (#857925) (mgracik@redhat.com)
9525679
- add convienience functions for running commands (bcl@redhat.com)
9525679
- restore CalledProcessError handling (bcl@redhat.com)
9525679
- add CalledProcessError to execWith* functions (bcl@redhat.com)
9525679
- live uses root not inst.stage2 (bcl@redhat.com)
9525679
- Revert "X needs the DRI drivers" (#855289) (bcl@redhat.com)
9525679
9cb7705
* Fri Sep 07 2012 Brian C. Lane <bcl@redhat.com> 18.18-1
9cb7705
- Keep the dracut-lib.sh around for runtime (#851362) (jkeating@redhat.com)
9cb7705
- X needs the DRI drivers (#855289) (bcl@redhat.com)
9cb7705
46bfeb7
* Fri Aug 31 2012 Brian C. Lane <bcl@redhat.com> 18.17-1
46bfeb7
- use inst.stage2=hd:LABEL (#848641) (bcl@redhat.com)
46bfeb7
- Disable the maximize/unmaximize key bindings (#853410). (clumens@redhat.com)
46bfeb7
32dc82e
* Thu Aug 30 2012 Brian C. Lane <bcl@redhat.com> 18.16-1
32dc82e
- Revert "Mask the tmp.mount service to avoid tmpfs" (jkeating@redhat.com)
32dc82e
8051dc6
* Thu Aug 23 2012 Brian C. Lane <bcl@redhat.com> 18.15-1
8051dc6
- change grub-cd.efi to gcdx64.efi (#851326) (bcl@redhat.com)
8051dc6
- use wildcard for product path to efi binaries (#851196) (bcl@redhat.com)
8051dc6
- Add yum-plugin-fastestmirror (#849797) (bcl@redhat.com)
8051dc6
- livemedia-creator: update templates for grub2-efi support (bcl@redhat.com)
8051dc6
- imgutils: fix umount retry handling (bcl@redhat.com)
8051dc6
- livemedia-creator: use stage2 instead of root (bcl@redhat.com)
8051dc6
- livemedia-creator: add location option (bcl@redhat.com)
8051dc6
- nm-connection-editor was moved to separate package (#849056)
8051dc6
  (rvykydal@redhat.com)
8051dc6
112881c
* Thu Aug 16 2012 Brian C. Lane <bcl@redhat.com> 18.14-1
112881c
- remove cleanup of some essential libraries (bcl@redhat.com)
112881c
- Mask the tmp.mount service to avoid tmpfs (jkeating@redhat.com)
112881c
3bb2af2
* Wed Aug 15 2012 Brian C. Lane <bcl@redhat.com> 18.13-1
3bb2af2
- Add a command line option to override the ARM platform. (dmarlin@redhat.com)
3bb2af2
- Don't remove krb5-libs (#848227) (mgracik@redhat.com)
3bb2af2
- Add grub2-efi support and Secure Boot shim support. (pjones@redhat.com)
3bb2af2
- Fix GPT code to allocate space for /2/ tables. (pjones@redhat.com)
3bb2af2
- Add platforms to the treeinfo for Beaker support. (dmarlin@redhat.com)
3bb2af2
- add logging to lorax (bcl@redhat.com)
3bb2af2
- move live templates into their own subdir of share (bcl@redhat.com)
3bb2af2
- clean up command execution (bcl@redhat.com)
3bb2af2
- livemedia-creator: cleanup logging a bit (bcl@redhat.com)
8a67b11
Martin Gracik 831e88c
* Wed Jul 25 2012 Martin Gracik <mgracik@redhat.com> 18.12-1
Martin Gracik 831e88c
- Add 'mvebu' to list of recognized ARM kernels. (dmarlin@redhat.com)
Martin Gracik 831e88c
- Cleanup boot menus (#809663) (mgracik@redhat.com)
Martin Gracik 831e88c
- Don't remove chvt from the install image (#838554) (mgracik@redhat.com)
Martin Gracik 831e88c
- Add llvm-libs (#826351) (mgracik@redhat.com)
Martin Gracik 831e88c
8b87e88
* Fri Jul 20 2012 Brian C. Lane <bcl@redhat.com> 18.11-1
8b87e88
- livemedia-creator: add some error checking (bcl@redhat.com)
8b87e88
Martin Gracik a4bd988
* Tue Jul 10 2012 Martin Gracik <mgracik@redhat.com> 18.10-1
Martin Gracik a4bd988
- Don't set a root= argument (wwoods@redhat.com)
Martin Gracik a4bd988
  Resolves: rhbz#837208
Martin Gracik a4bd988
- Don't remove the id tool (mgracik@redhat.com)
Martin Gracik a4bd988
  Resolves: rhbz#836493
Martin Gracik a4bd988
- Xauth is in bin (mgracik@redhat.com)
Martin Gracik a4bd988
  Resolves: rhbz#837317
Martin Gracik a4bd988
- Actually add plymouth to the initramfs (wwoods@redhat.com)
Martin Gracik a4bd988
- don't use --prefix with dracut anymore (wwoods@redhat.com)
Martin Gracik a4bd988
- newui requires checkisomd5 to run media check. (clumens@redhat.com)
Martin Gracik a4bd988
Martin Gracik 23f0c8c
* Thu Jun 21 2012 Martin Gracik <mgracik@redhat.com> 18.9-1
Martin Gracik 23f0c8c
- Add initial support for ARM based systems (dmarlin) (mgracik@redhat.com)
Martin Gracik 23f0c8c
- Add plymouth to the installer runtime (wwoods@redhat.com)
Martin Gracik 23f0c8c
- add 'systemctl' command and use it in postinstall (wwoods@redhat.com)
Martin Gracik 23f0c8c
- add dracut-shutdown.service (and its dependencies) (wwoods@redhat.com)
Martin Gracik 23f0c8c
- leave pregenerated locale files (save RAM) (wwoods@redhat.com)
Martin Gracik 23f0c8c
- runtime-cleanup: log broken symlinks being removed (wwoods@redhat.com)
Martin Gracik 23f0c8c
- Add some documentation to LoraxTemplateRunner (wwoods@redhat.com)
Martin Gracik 23f0c8c
- fix '-runcmd' and improve logging (wwoods@redhat.com)
Martin Gracik 23f0c8c
- mkefiboot: add --debug (wwoods@redhat.com)
Martin Gracik 23f0c8c
- pylorax.imgutils: add retry loop and "lazy" to umount() (wwoods@redhat.com)
Martin Gracik 23f0c8c
- pylorax.imgutils: add debug logging (wwoods@redhat.com)
Martin Gracik 23f0c8c
- pylorax: set up logging as recommended by logging module (wwoods@redhat.com)
Martin Gracik 23f0c8c
- remove dmidecode (wwoods@redhat.com)
Martin Gracik 23f0c8c
- clean up net-tools properly (wwoods@redhat.com)
Martin Gracik 23f0c8c
- runtime-cleanup: correctly clean up kbd (wwoods@redhat.com)
Martin Gracik 23f0c8c
- runtime-cleanup: correctly clean up iproute (wwoods@redhat.com)
Martin Gracik 23f0c8c
- runtime-cleanup: drop a bunch of do-nothing removals (wwoods@redhat.com)
Martin Gracik 23f0c8c
- Create missing /etc/fstab (wwoods@redhat.com)
Martin Gracik 23f0c8c
- Fix systemd unit cleanup in runtime-postinstall (wwoods@redhat.com)
Martin Gracik 23f0c8c
- Disable Alt+Tab in metacity (mgracik@redhat.com)
Martin Gracik 23f0c8c
- Add pollcdrom module to dracut (bcl@redhat.com)
Martin Gracik 23f0c8c
Martin Gracik 1a848b3
* Wed Jun 06 2012 Martin Gracik <mgracik@redhat.com> 18.8-1
Martin Gracik 1a848b3
- Check if selinux is enabled before getting the mode (mgracik@redhat.com)
Martin Gracik 1a848b3
- Add grub2 so that rescue is more useful (bcl@redhat.com)
Martin Gracik 1a848b3
Martin Gracik 2346c16
* Mon Jun 04 2012 Martin Gracik <mgracik@redhat.com> 18.7-1
Martin Gracik 2346c16
- Comment on why selinux needs to be in permissive or disabled
Martin Gracik 2346c16
  (mgracik@redhat.com)
Martin Gracik 2346c16
- Verify the yum transaction (mgracik@redhat.com)
Martin Gracik 2346c16
- Do not remove shared-mime-info (#825960) (mgracik@redhat.com)
Martin Gracik 2346c16
- Add a --required switch to installpkg (mgracik@redhat.com)
Martin Gracik 2346c16
- livemedia-creator: Hook up arch option (bcl@redhat.com)
Martin Gracik 2346c16
- livemedia-creator: Add appliance creation (bcl@redhat.com)
Martin Gracik 2346c16
- livemedia-creator: handle failed mount for ami (bcl@redhat.com)
Martin Gracik 2346c16
Martin Gracik 829626c
* Fri Jun 01 2012 Martin Gracik <mgracik@redhat.com> 18.6-1
Martin Gracik 829626c
- Fix the rpm call (mgracik@redhat.com)
Martin Gracik 829626c
- Use selinux python module to get enforcing mode (mgracik@redhat.com)
Martin Gracik 829626c
Martin Gracik 829626c
* Thu May 31 2012 Martin Gracik <mgracik@redhat.com> 18.5-1
Martin Gracik 829626c
- Don't remove sha256sum from the install image (mgracik@redhat.com)
Martin Gracik 829626c
- Check if selinux is not in Enforcing mode (#824835) (mgracik@redhat.com)
Martin Gracik 829626c
- Install rpcbind (#824835) (mgracik@redhat.com)
Martin Gracik 829626c
- Remove hfsplus-tools dependency (#818913) (mgracik@redhat.com)
Martin Gracik 829626c
- Copy mapping and magic to BOOTDIR on ppc (#815550) (mgracik@redhat.com)
Martin Gracik 829626c
- Automatic commit of package [lorax] release [18.4-1]. (mgracik@redhat.com)
Martin Gracik 829626c
Martin Gracik 34ce5a5
* Fri May 25 2012 Martin Gracik <mgracik@redhat.com> 18.4-1
Martin Gracik 34ce5a5
- Initialized to use tito.
Martin Gracik 34ce5a5
- Use gz not bz2 for source
Martin Gracik 34ce5a5
- remove 'loadkeys' stub (#804306)
Martin Gracik 34ce5a5
- add name field to .treeinfo its a concatination of family and version
Martin Gracik 34ce5a5
- Fix typo in help (#819476)
Martin Gracik 34ce5a5
- include the new cmsfs-fuse interface
Martin Gracik 34ce5a5
- linuxrc.s390 is dead in anaconda
Martin Gracik 34ce5a5
- Add the ppc magic file
Martin Gracik 34ce5a5
- Install proper branding packages from repo (#813969)
Martin Gracik 34ce5a5
- Use --mac for isohybrid only if doing macboot images
Martin Gracik 34ce5a5
- Add --nomacboot option
Martin Gracik 34ce5a5
- Add packages needed for NTP functionality in the installer
Martin Gracik 34ce5a5
- livemedia-creator: check kickstart for display modes (#819660)
Martin Gracik 34ce5a5
- livemedia-creator: Removed unused ImageMount class
Martin Gracik 34ce5a5
- livemedia-creator: cleanup after a crash
Martin Gracik 34ce5a5
- livemedia-creator: start using /var/tmp instead of /tmp
Martin Gracik 34ce5a5
- livemedia-creator: make libvirt module optional
Martin Gracik 34ce5a5
- stop moving /run (#818918)
Martin Gracik 34ce5a5
a2e0413
* Thu May 03 2012 Brian C. Lane <bcl@redhat.com> 18.3-1
a2e0413
- Added BCM4331 firmware (#817151) (mgracik)
a2e0413
- mkefiboot: Add support for disk label files (mjg)
a2e0413
- Add 'tmux' to runtime image (wwoods)
a2e0413
- Add /etc/sysctl.d/anaconda.conf, set kernel.printk=1 (#816022) (wwoods)
a2e0413
- reduce image size from 2GB to 1GB (wwoods)
a2e0413
- keep all filesystem tools (wwoods)
a2e0413
- Leave some of the grub2 utilities in the install image (#749323) (mgracik)
a2e0413
- add media check menu option (bcl)
a2e0413
- remove unneeded dracut bootargs (bcl)
a2e0413
- mkefiboot: Copy Mac bootloader, rather than linking it (mjg)
a2e0413
- Remove workdir if it was created by lorax (#807964) (mgracik)
a2e0413
- add gdisk to install image (#811083) (bcl)
a2e0413
- Don't use --allbut for xfsprogs cleanup (#804779) (mgracik)
a2e0413
- Log all removed files (mgracik)
a2e0413
- Add spice-vdagent to initrd (#804739) (mgracik)
a2e0413
- Add ntfs-3g to initrd (#804302) (mgracik)
a2e0413
- ntfs-3g now uses /usr/lib (#810039) (bcl)
a2e0413
dc216ab
* Fri Mar 30 2012 Brian C. Lane <bcl@redhat.com> 18.2-1
dc216ab
- Merge noloader commits from f17-branch (bcl)
dc216ab
- mkefiboot: Make Apple boot images appear in the startup preferences (mjg)
dc216ab
- add symlink from /mnt/install -> /run/install (wwoods)
dc216ab
- Don't trash all the initscripts 'fedora*' services (wwoods)
dc216ab
- remove anaconda-copy-ks.sh (wwoods)
dc216ab
- add anaconda dracut module (wwoods)
dc216ab
- runtime-postinstall: remove references to loader (wwoods)
dc216ab
- runtime-postinstall: remove keymap stuff (wwoods)
dc216ab
- Add the icfg package (#771733) (mgracik)
dc216ab
- Log the output of mkfs (#769928) (mgracik)
dc216ab
- Fix product name replacing in templates (#799919) (mgracik)
dc216ab
- Fix requires (mgracik)
dc216ab
- use cache outside the installtree (bcl)
dc216ab
- add iscsi-initiator-utils (#804522) (bcl)
dc216ab
- livemedia-creator: update TreeBuilder use for isolabel (bcl)
dc216ab
dc216ab
* Tue Mar 06 2012 Brian C. Lane <bcl@redhat.com> 18.1-1
75afb14
- livemedia-creator: update README (bcl)
75afb14
- example livemedia kickstart for ec2 (bcl)
75afb14
- livemedia-creator: console=ttyS0 not /dev/ttyS0 (bcl)
75afb14
- livemedia-creator: Add support for making ami images (bcl)
dc216ab
- Don't remove btrfs utils (#796511) (mgracik)
dc216ab
- Remove root and ip parameters from generic.prm (#796572) (mgracik)
dc216ab
- Check if the volume id is not longer than 32 chars (#786832) (mgracik)
dc216ab
- Add option to specify volume id on command line (#786834) (mgracik)
dc216ab
- Install nhn-nanum-gothic-fonts (#790266) (mgracik)
dc216ab
- Change the locale to C (#786833) (mgracik)
dc216ab
- iputils is small and required by dhclient-script (bcl)
dc216ab
- util-linux-ng is now util-linux (bcl)
dc216ab
dc216ab
* Mon Feb 20 2012 Brian C. Lane <bcl@redhat.com> 18.0-1
41ef9b0
- use --prefix=/run/initramfs when building initramfs (wwoods)
41ef9b0
- dhclient-script needs cut and arping (bcl)
41ef9b0
- Fix missing CalledProcessError import (bcl)
41ef9b0
- metacity now depends on gsettings-desktop-schemas (bcl)
41ef9b0
- Add findiso to grub config (mjg)
dc216ab
- add memtest to the boot.iso for x86 (#787234) (bcl)
dc216ab
- Don't use mk-s390-cdboot (dhorak) (mgracik)
dc216ab
- Add dracut args to grub.conf (bcl)
41ef9b0
- Change the squashfs image section in .treeinfo (mgracik)
41ef9b0
- Add path to squashfs image to the treeinfo (mgracik)
41ef9b0
- Add runtime basename variable to the template (mgracik)
dc216ab
- use internal implementation of the addrsize utility (dan)
dc216ab
- Make sure var/run is not a symlink on s390x (#787217) (mgracik)
dc216ab
- Create var/run/dbus directory on s390x (#787217) (mgracik)
41ef9b0
41ef9b0
* Wed Feb 08 2012 Brian C. Lane <bcl@redhat.com> 17.3-1
41ef9b0
- keep convertfs.sh script in image (#787893) (bcl)
41ef9b0
- Add dracut convertfs module (#787893) (bcl)
41ef9b0
- fix templates to work with F17 usrmove (tflink)
41ef9b0
- changing hfs to hfsplus so that the correct mkfs binary is called (tflink)
41ef9b0
- Add luks, md and dm dracut args to bootloaders (bcl)
41ef9b0
- update lorax and livemedia_creator to use isfinal (bcl)
41ef9b0
- lorax: copy kickstarts into sysroot (#743135) (bcl)
41ef9b0
- livemedia-creator: Mount iso if rootfs is LiveOS (bcl)
41ef9b0
- Log output of failed command (mgracik)
41ef9b0
- Add packages required for gtk3 and the new anaconda UI. (clumens)
41ef9b0
Martin Gracik 411f9cd
* Thu Jan 12 2012 Martin Gracik <mgracik@redhat.com> 17.2-1
Martin Gracik 411f9cd
- Allow specifying buildarch on the command line (#771382) (mgracik)
Martin Gracik 411f9cd
- lorax: Don't touch /etc/mtab in cleanup (bcl)
Martin Gracik 411f9cd
- Update TODO and POLICY to reflect the current state of things (wwoods)
Martin Gracik 411f9cd
- consider %ghost files part of the filelists in templates (wwoods)
Martin Gracik 411f9cd
- lorax: Add option to exclude packages (bcl)
Martin Gracik 411f9cd
- dracut needs kbd directories (#769932) (bcl)
Martin Gracik 411f9cd
- better debug, handle relative output paths (bcl)
Martin Gracik 411f9cd
7695dd2
* Wed Dec 21 2011 Brian C. Lane <bcl@redhat.com> 17.1-1
7695dd2
- lorax: check for output directory early and quit (bcl)
7695dd2
- lorax: Add --proxy command (bcl)
7695dd2
- lorax: add --config option (bcl)
7695dd2
- Modify spec file for livemedia-creator (bcl)
7695dd2
- Add no-virt mode to livemedia-creator (bcl)
7695dd2
- Add livemedia-creator README and example ks (bcl)
7695dd2
- Add config files for live media (bcl)
7695dd2
- Add livemedia-creator (bcl)
7695dd2
- Allow a None to be passed as size to create_runtime (bcl)
7695dd2
- Add execWith utils from anaconda (bcl)
7695dd2
- Changes needed for livecd creation (bcl)
7695dd2
- dracut has moved to /usr/bin (bcl)
7695dd2
7695dd2
* Mon Oct 21 2011 Will Woods <wwoods@redhat.com> 17.0-1
7695dd2
- Merges the 'treebuilder' branch of lorax
7695dd2
- images are split into two parts again (initrd.img, LiveOS/squashfs.img)
7695dd2
- base memory use reduced to ~200M (was ~550M in F15, ~320MB in F16)
7695dd2
- initrd.img is now built by dracut
7695dd2
- booting now requires correct "root=live:..." argument
7695dd2
- boot.iso is EFI hybrid capable (copy iso to USB stick, boot from EFI)
7695dd2
- Better support for Apple EFI (now with custom boot icon!)
7695dd2
- new syslinux config (#734170)
7695dd2
- add fpaste to installer environment (#727842)
7695dd2
- rsyslog.conf: hardcode hostname for virtio forwarding (#744544)
7695dd2
- Use a predictable ISO Volume Label (#732298)
7695dd2
- syslinux-vesa-splash changed filename (#739345)
7695dd2
- don't create /etc/sysconfig/network (#733425)
7695dd2
- xauth and libXmu are needed for ssh -X (#731046)
7695dd2
- add libreport plugins (#729537), clean up libreport
7695dd2
- keep nss certs for libreport (#730438)
7695dd2
- keep ModemManager (#727946)
7695dd2
- keep vmmouse binaries (#723831)
7695dd2
- change isbeta to isfinal, default to isFinal=False (#723901)
7695dd2
- use pungi's installroot rather than making our own (#722481)
7695dd2
- keep ntfsresize around (#722711)
7695dd2
- replace cjkuni-uming-fonts with wqy-microhei-fonts (#709962)
7695dd2
- install all firmware packages (#703291, #705392)
7695dd2
- keep libmodman and libproxy (#701622)
7695dd2
- write the lorax verion in the .buildstamp (#689697)
7695dd2
- disable rsyslogd rate limiting on imuxsock (#696943)
7695dd2
- disable debuginfo package
Martin Gracik 16297df
Martin Gracik 77fd217
* Wed Apr 13 2011 Martin Gracik <mgracik@redhat.com> 0.5-1
Martin Gracik 77fd217
- Remove pungi patch
Martin Gracik 77fd217
- Remove pseudo code
Martin Gracik 77fd217
- Add a /bin/login shim for use only in the installation environment.
Martin Gracik 77fd217
- Set the hostname from a config file, not programmatically.
Martin Gracik 77fd217
- Add systemd and agetty to the installation environment.
Martin Gracik 77fd217
- Specify "cpio -H newc" instead of "cpio -c".
Martin Gracik 77fd217
- Provide shutdown on s390x (#694518)
Martin Gracik 77fd217
- Fix arch specific requires in spec file
Martin Gracik 77fd217
- Add s390 modules and do some cleanup of the template
Martin Gracik 77fd217
- Generate ssh keys on s390
Martin Gracik 77fd217
- Don't remove tr, needed for s390
Martin Gracik 77fd217
- Do not check if we have all commands
Martin Gracik 77fd217
- Change location of addrsize and mk-s390-cdboot
Martin Gracik 77fd217
- Shutdown is in another location
Martin Gracik 77fd217
- Do not skip broken packages
Martin Gracik 77fd217
- Don't install network-manager-netbook
Martin Gracik 77fd217
- Wait for subprocess to finish
Martin Gracik 77fd217
- Have to call os.makedirs
Martin Gracik 77fd217
- images dir already exists, we just need to set it
Martin Gracik 77fd217
- Do not remove libassuan.
Martin Gracik 77fd217
- The biarch is a function not an attribute
Martin Gracik 77fd217
- Create images directory in outputtree
Martin Gracik 77fd217
- Use gzip on ppc initrd
Martin Gracik 77fd217
- Create efibootdir if doing efi images
Martin Gracik 77fd217
- Get rid of create_gconf().
Martin Gracik 77fd217
- gconf/metacity: have only one workspace.
Martin Gracik 77fd217
- Add yum-langpacks yum plugin to anaconda environment (notting)
Martin Gracik 77fd217
- Replace variables in yaboot.conf
Martin Gracik 77fd217
- Add sparc specific packages
Martin Gracik 77fd217
- Skip keymap creation on s390
Martin Gracik 77fd217
- Copy shutdown and linuxrc.s390 on s390
Martin Gracik 77fd217
- Add packages for s390
Martin Gracik 77fd217
- Add support for sparc
Martin Gracik 77fd217
- Use factory to get the image classes
Martin Gracik 77fd217
- treeinfo has to be addressed as self.treeinfo
Martin Gracik 77fd217
- Add support for s390
Martin Gracik 77fd217
- Add the xen section to treeinfo on x86_64
Martin Gracik 77fd217
- Fix magic and mapping paths
Martin Gracik 77fd217
- Fix passing of prepboot and macboot arguments
Martin Gracik 77fd217
- Small ppc fixes
Martin Gracik 77fd217
- Check if the file we want to remove exists
Martin Gracik 77fd217
- Install x86 specific packages only on x86
Martin Gracik 77fd217
- Change the location of zImage.lds
Martin Gracik 77fd217
- Added ppc specific packages
Martin Gracik 77fd217
- memtest and efika.forth are in /boot
Martin Gracik 77fd217
- Add support for ppc
Martin Gracik 77fd217
- Minor sparc pseudo code changes
Martin Gracik 77fd217
- Added sparc pseudo code (dgilmore)
Martin Gracik 77fd217
- Added s390 and x86 pseudo code
Martin Gracik 77fd217
- Added ppc pseudo code
Martin Gracik 77fd217
Martin Gracik 89526c3
* Mon Mar 14 2011 Martin Gracik <mgracik@redhat.com> 0.4-1
Martin Gracik 89526c3
- Add the images-xen section to treeinfo on x86_64
Martin Gracik 89526c3
- Print a message when no arguments given (#684463)
Martin Gracik 89526c3
- Mako template returns unicode strings (#681003)
Martin Gracik 89526c3
- The check option in options causes ValueError
Martin Gracik 89526c3
- Disable all ctrl-alt-arrow metacity shortcuts
Martin Gracik 89526c3
- Remove the locale-archive explicitly
Martin Gracik 89526c3
- Use xz when compressing the initrd
Martin Gracik 89526c3
- Keep the source files for locales and get rid of the binary form
Martin Gracik 89526c3
- Add /sbin to $PATH (for the tty2 terminal)
Martin Gracik 89526c3
- Create /var/run/dbus directory in installtree
Martin Gracik 89526c3
- Add mkdir support to template
Martin Gracik 89526c3
- gpart is present only on i386 arch (#672611)
Martin Gracik 89526c3
- util-linux-ng changed to util-linux
2903a0d
Martin Gracik ef6161a
* Mon Jan 24 2011 Martin Gracik <mgracik@redhat.com> 0.3-1
Martin Gracik ef6161a
- Don't remove libmount package
Martin Gracik ef6161a
- Don't create mtab symlink, already exists
Martin Gracik ef6161a
- Exit with error if we have no lang-table
Martin Gracik ef6161a
- Fix file logging
Martin Gracik ef6161a
- Overwrite the /etc/shadow file
Martin Gracik ef6161a
- Use [images-xen] section for PAE and xen kernels
Martin Gracik ef6161a
Martin Gracik 815ea2e
* Fri Jan 14 2011 Martin Gracik <mgracik@redhat.com> 0.2-2
Martin Gracik 815ea2e
- Fix the gnome themes
Martin Gracik 815ea2e
- Add biosdevname package
Martin Gracik 815ea2e
- Edit .bash_history file
Martin Gracik 815ea2e
- Add the initrd and kernel lines to .treeinfo
Martin Gracik 815ea2e
- Don't remove the gamin package from installtree
Martin Gracik 815ea2e
Martin Gracik 6d90247
* Wed Dec 01 2010 Martin Gracik <mgracik@redhat.com> 0.1-1
Martin Gracik 6d90247
- First packaging of the new lorax tool.