summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-02-05 01:05:36 +0000
committerJeremy Katz <katzj@redhat.com>2002-02-05 01:05:36 +0000
commit1ca62737edd78ee42ace0cc0912bbbff6008a94a (patch)
tree994fd5bb0f664b597d12ff7ba4dad6984e7cba62
parente07f0e5bce25a8e3cba8654d2d501a5e8a9f2b3a (diff)
downloadanaconda-1ca62737edd78ee42ace0cc0912bbbff6008a94a.tar.gz
anaconda-1ca62737edd78ee42ace0cc0912bbbff6008a94a.tar.xz
anaconda-1ca62737edd78ee42ace0cc0912bbbff6008a94a.zip
this should fix the pcmcia disks (#59275)
-rwxr-xr-xscripts/mk-images2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mk-images b/scripts/mk-images
index bf1d12a16..acf9167b1 100755
--- a/scripts/mk-images
+++ b/scripts/mk-images
@@ -798,7 +798,7 @@ for kernelvers in $vertag; do
usage
fi
- if [ -d $KERNELROOT/lib/modules/$version/pcmcia -a -f KERNELROOT/etc/pcmcia/config ]; then
+ if [ -d $KERNELROOT/lib/modules/$version/pcmcia -a -f $KERNELROOT/etc/pcmcia/config ]; then
# This gets all of the modules in the pcmcia directory, as well as
# everything mentioned in /etc/pcmcia/config
PCMCIAMODULES=$((perl -e 'while (<>) { s/^.*class.*module +"// || next; s/[" ]//g; s/,/\n/g; print }' $KERNELROOT/etc/pcmcia/config;