diff options
author | jkh <jkh@FreeBSD.org> | 1999-09-08 04:46:35 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1999-09-08 04:46:35 +0000 |
commit | fde57b038682db7ada3416bddf0e17923af2c919 (patch) | |
tree | 5ab1d3ea42603cc7ea473c36e69b525210e9fc44 /release/scripts | |
parent | 6d47ec31fc7dd62ef8f7148bb05e18baddd0d1d6 (diff) | |
download | FreeBSD-src-fde57b038682db7ada3416bddf0e17923af2c919.zip FreeBSD-src-fde57b038682db7ada3416bddf0e17923af2c919.tar.gz |
Bump maxusers in installation kernel down to something more low-memory
friendly.
Diffstat (limited to 'release/scripts')
-rwxr-xr-x | release/scripts/dokern.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/release/scripts/dokern.sh b/release/scripts/dokern.sh index fc0217e..5a7a7a5 100755 --- a/release/scripts/dokern.sh +++ b/release/scripts/dokern.sh @@ -9,11 +9,15 @@ sed -e '/pty/d' \ -e '/PROCFS/d' \ -e '/KTRACE/d' \ -e '/SYSVMSG/d' \ + -e '/maxusers/d' \ -e 's/GENERIC/BOOTMFS/g' # So dhclient will work (just on boot floppy). echo "pseudo-device bpf 4" +# reset maxusers to something lower +echo "maxusers 5" + echo "options NFS_NOSERVER" echo "options SCSI_NO_OP_STRINGS" echo "options SCSI_NO_SENSE_STRINGS" |