summaryrefslogtreecommitdiffstats
path: root/release/scripts
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1998-11-12 20:40:45 +0000
committerjkh <jkh@FreeBSD.org>1998-11-12 20:40:45 +0000
commitf656dfa6bfd27e9af1595fa8abaf6cf7c1d668bc (patch)
tree9b463a98ba307eb58cd3e08238f491d5a440bcaa /release/scripts
parent0300cc1f41c5e6d7579b11711f60c5e837971bb7 (diff)
downloadFreeBSD-src-f656dfa6bfd27e9af1595fa8abaf6cf7c1d668bc.zip
FreeBSD-src-f656dfa6bfd27e9af1595fa8abaf6cf7c1d668bc.tar.gz
Simplify call to dokern.sh - now the no MFS case is the default.
Diffstat (limited to 'release/scripts')
-rwxr-xr-xrelease/scripts/dokern.sh12
1 files changed, 6 insertions, 6 deletions
diff --git a/release/scripts/dokern.sh b/release/scripts/dokern.sh
index 9e41000..98d5d92 100755
--- a/release/scripts/dokern.sh
+++ b/release/scripts/dokern.sh
@@ -2,15 +2,15 @@
# From the kernel config file on stdin (usually GENERIC), pare out items as
# determined by whether or not the kernel is being prepared to contain
-# an MFS ($1 = YES) or will have the floppy image all to itself ($1 = NO).
+# an MFS ($1 = YES) or will have the floppy image all to itself ($1 = NO or
+# not specified).
if [ $# -lt 1 ]; then
- echo "usage: $0 YES|NO"
- exit 1
+ MFS=NO
+else
+ MFS=$1
fi
-MFS=$1
-
if [ "$MFS" = "YES" ]; then
sed -e '/pty/d' \
-e '/eisa/d' \
@@ -32,7 +32,7 @@ if [ "$MFS" = "YES" ]; then
-e '/MATH_EMULATE/d' \
-e 's/GENERIC/BOOTMFS/g' \
-e '/maxusers/s/32/4/'
-elif [ "$MFS" = "NO" ]; then # can be much bigger
+else
sed -e '/pty/d' \
-e '/pass0/d' \
-e '/apm0/d' \
OpenPOWER on IntegriCloud