mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
20 lines
372 B
Bash
Executable file
20 lines
372 B
Bash
Executable file
#!/bin/sh
|
|
|
|
sed -e '/pty/d' \
|
|
-e '/pass0/d' \
|
|
-e '/apm0/d' \
|
|
-e '/ppp/d' \
|
|
-e '/gzip/d' \
|
|
-e '/splash/d' \
|
|
-e '/PROCFS/d' \
|
|
-e '/KTRACE/d' \
|
|
-e '/SYSVMSG/d' \
|
|
-e '/maxusers/d' \
|
|
-e 's/GENERIC/BOOTMFS/g'
|
|
|
|
# reset maxusers to something lower
|
|
echo "maxusers 5"
|
|
|
|
echo "options NFS_NOSERVER"
|
|
echo "options SCSI_NO_OP_STRINGS"
|
|
echo "options SCSI_NO_SENSE_STRINGS"
|