diff options
author | Jeremy Katz <katzj@redhat.com> | 2006-06-09 19:01:19 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2006-06-09 19:01:19 +0000 |
commit | c9285b266a5f47075d08bbb0c4468d9055fffd52 (patch) | |
tree | 150d3e54195fc0561aef6ea0d00c1b13b30f228e | |
parent | 0f0cdd5b9c35b2af76f25fdffa42dcc520407305 (diff) | |
download | anaconda-c9285b266a5f47075d08bbb0c4468d9055fffd52.tar.gz anaconda-c9285b266a5f47075d08bbb0c4468d9055fffd52.tar.xz anaconda-c9285b266a5f47075d08bbb0c4468d9055fffd52.zip |
2006-06-09 Jeremy Katz <katzj@redhat.com>
* scripts/upd-instroot (PACKAGES): kernel-utils is no more, make
sure we get dmidecode
-rw-r--r-- | ChangeLog | 3 | ||||
-rwxr-xr-x | scripts/upd-instroot | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2006-06-09 Jeremy Katz <katzj@redhat.com> + * scripts/upd-instroot (PACKAGES): kernel-utils is no more, make + sure we get dmidecode + * scripts/mk-images: More trying to beat s390 into working. 2006-06-09 David Cantrell <dcantrell@redhat.com> diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 786862bfa..d5c222f73 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -124,7 +124,7 @@ PACKAGES="glibc glibc-common setup openssl python newt slang libselinux db4 rhpxl xorg-x11-server-Xorg libuser system-config-date" if [ $ARCH = i386 -o $ARCH = x86_64 ]; then - PACKAGES="$PACKAGES pcmciautils kernel-utils" + PACKAGES="$PACKAGES pcmciautils dmidecode" fi if [ $ARCH = ia64 ]; then |