diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-01-11 20:44:43 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-01-11 20:44:43 +0000 |
commit | 7724033cfcd2c4767436472034d8fb67830b5918 (patch) | |
tree | 0a32ce484d9beb242d276e9eeb701deb15edb5f3 | |
parent | 2f81f5f7b6fb089aeca72ef8fe125b556609bfac (diff) | |
download | anaconda-7724033cfcd2c4767436472034d8fb67830b5918.tar.gz anaconda-7724033cfcd2c4767436472034d8fb67830b5918.tar.xz anaconda-7724033cfcd2c4767436472034d8fb67830b5918.zip |
2006-01-11 Jeremy Katz <katzj@redhat.com>anaconda-10.91.4-1
* anaconda.spec: Bump version
* scripts/pkgorder: Add xen kernels.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | anaconda.spec | 5 | ||||
-rwxr-xr-x | scripts/pkgorder | 3 |
3 files changed, 10 insertions, 2 deletions
@@ -1,5 +1,9 @@ 2006-01-11 Jeremy Katz <katzj@redhat.com> + * anaconda.spec: Bump version + + * scripts/pkgorder: Add xen kernels. + * anaconda.spec (Version): Bump version. * scripts/mk-images.ppc: Remove some unneeded bits from the ppc diff --git a/anaconda.spec b/anaconda.spec index d257472ae..e72582ec3 100644 --- a/anaconda.spec +++ b/anaconda.spec @@ -1,5 +1,5 @@ Name: anaconda -Version: 10.91.3 +Version: 10.91.4 Release: 1 License: GPL Summary: Graphical system installer @@ -78,6 +78,9 @@ rm -rf $RPM_BUILD_ROOT /sbin/chkconfig --del reconfig >/dev/null 2>&1 || : %changelog +* Wed Jan 11 2006 Jeremy Katz <katzj@redhat.com> - 10.91.4-1 +- Add xen kernels + * Wed Jan 11 2006 Jeremy Katz <katzj@redhat.com> - 10.91.3-1 - remove some unneeded bits from the ppc boot.iso to make it smaller - fix some text display (notting, #177537) diff --git a/scripts/pkgorder b/scripts/pkgorder index f3eddbe42..29439aac6 100755 --- a/scripts/pkgorder +++ b/scripts/pkgorder @@ -141,7 +141,8 @@ if __name__ == "__main__": if arch == "i386": arch = "i686" - for pattern in ["kernel-[0-9]*", "kernel-smp-[0-9]*"]: + for pattern in ["kernel-[0-9]*", "kernel-smp-[0-9]*", + "kernel-xen*"]: printMatchingPkgs("%s/%s/RPMS/%s" % (toppath, product, pattern)) ds = PackageOrderer(arch=arch) |