diff options
author | jkh <jkh@FreeBSD.org> | 1998-11-12 20:40:45 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-11-12 20:40:45 +0000 |
commit | f656dfa6bfd27e9af1595fa8abaf6cf7c1d668bc (patch) | |
tree | 9b463a98ba307eb58cd3e08238f491d5a440bcaa /release/pc98/dokern.sh | |
parent | 0300cc1f41c5e6d7579b11711f60c5e837971bb7 (diff) | |
download | FreeBSD-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/pc98/dokern.sh')
-rwxr-xr-x | release/pc98/dokern.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/release/pc98/dokern.sh b/release/pc98/dokern.sh index 9e41000..98d5d92 100755 --- a/release/pc98/dokern.sh +++ b/release/pc98/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' \ |