diff options
author | Mark McLoughlin <markmc@redhat.com> | 2008-04-10 14:09:11 +0100 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-04-10 14:10:59 -0400 |
commit | 0adbb266e2f039d115c8ca1c6a8d121f60013535 (patch) | |
tree | 1568b473828948001200581788e381974f6b4952 | |
parent | b319909478ebfd239cffae6762b7661b01769edd (diff) | |
download | anaconda-0adbb266e2f039d115c8ca1c6a8d121f60013535.tar.gz anaconda-0adbb266e2f039d115c8ca1c6a8d121f60013535.tar.xz anaconda-0adbb266e2f039d115c8ca1c6a8d121f60013535.zip |
mk-images: Module balls are no more
notting removed module balls some time ago:
commit 7971fbec83064b096a6592055d66df573bdb8eea
Author: Bill Nottingham <notting@redhat.com>
Date: Wed Dec 19 14:53:45 2007 -0500
Don't ship module balls; just ship a 'normal' /lib/modules and /lib/firmware tree.
but mk-images still has some remnants of them.
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
-rwxr-xr-x | scripts/mk-images | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/mk-images b/scripts/mk-images index 28ac76f50..f522add7a 100755 --- a/scripts/mk-images +++ b/scripts/mk-images @@ -455,7 +455,6 @@ makeinitrd() { PADSIZE="" LOADERBIN="" INITRDMODULES="" - MODULEBALLNAME="modules.cgz" MYLANGTABLE=$LANGTABLE MYLOADERTR=loader.tr while [ x$(echo $1 | cut -c1-2) = x"--" ]; do @@ -479,10 +478,6 @@ makeinitrd() { INITRDMODULES=$2 shift; shift continue - elif [ $1 = "--moduleballname" ]; then - MODULEBALLNAME=$2 - shift; shift - continue fi echo "Unknown option passed to makeinitrd" exit 1 |