mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-16 10:20:30 +00:00
2c11c6eb6b
to the release kernel.
24 lines
460 B
Bash
Executable File
24 lines
460 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"
|
|
echo "options NETGRAPH"
|
|
echo "options NETGRAPH_PPPOE"
|
|
echo "options NETGRAPH_SOCKET"
|