summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-10-13 16:51:36 +0000
committerJeremy Katz <katzj@redhat.com>2003-10-13 16:51:36 +0000
commitce013d98517db289f4fee8ec1b83776bdcbcd8e5 (patch)
treece180d651da00c535e3f9cec73c1964f563b0d55 /scripts
parentf2bce8a32886c9db161cff5589d8754e4bff7068 (diff)
s/LOADERMODULES/INITRDMODULES/ (noticed by Rudi
Chiarito <nutello@sweetness.com> on fedora-devel-list)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mk-images8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/mk-images b/scripts/mk-images
index 768f995c6..e9c0dd0e6 100755
--- a/scripts/mk-images
+++ b/scripts/mk-images
@@ -419,7 +419,7 @@ makeinitrd() {
shift; shift
continue
elif [ $1 = "--modules" ]; then
- LOADERMODULES=$2
+ INITRDMODULES=$2
shift; shift
continue
elif [ $1 = "--moduleballname" ]; then
@@ -438,7 +438,7 @@ makeinitrd() {
echo "no loader binary specified!" >&2
exit 1
fi
- if [ -z "$LOADERMODULES" ]; then
+ if [ -z "$INITRDMODULES" ]; then
echo "warning: no loader modules specified!" >&2
fi
if [ -z "$INITRDSIZE" ]; then
@@ -472,8 +472,8 @@ makeinitrd() {
mkdir -p $MBD_DIR/dev/iseries
fi
- if [ -n "$LOADERMODULES" ]; then
- MODSET=`expandModuleSet "$LOADERMODULES"`
+ if [ -n "$INITRDMODULES" ]; then
+ MODSET=`expandModuleSet "$INITRDMODULES"`
makemoduleball --name $MODULEBALLNAME $MBD_DIR/modules "$MODSET"
fi