freebsd-dev/release/i386/dokern.sh
Brian Feldman 8a1d9101f2 The best way to remove IPv6 things is to remove lines with the pattern
'IPv6', and it's not necessary to do it explicitly per entry.

Approved by:	jkh
2000-02-27 07:36:34 +00:00

48 lines
884 B
Bash
Executable File

#!/bin/sh
ARCH="`uname -m`"
# First check for the standard x86 PC class.
if [ "${ARCH}" = "i386" ]; then
sed -e '/pty/d' \
-e '/pass/d' \
-e '/apm0/d' \
-e '/ppp/d' \
-e '/gzip/d' \
-e '/splash/d' \
-e '/IPv6/d' \
-e '/PROCFS/d' \
-e '/KTRACE/d' \
-e '/SYSVMSG/d' \
-e '/maxusers/d' \
-e 's/GENERIC/BOOTMFS/g'
echo "options NETGRAPH"
echo "options NETGRAPH_PPPOE"
echo "options NETGRAPH_SOCKET"
# Otherwise maybe it's an alpha, and it has big binaries.
elif [ "${ARCH}" = "alpha" ]; then
sed -e '/pty/d' \
-e '/pass/d' \
-e '/apm0/d' \
-e '/ppp/d' \
-e '/gzip/d' \
-e '/splash/d' \
-e '/IPv6/d' \
-e '/PROCFS/d' \
-e '/KTRACE/d' \
-e '/SYSV/d' \
-e '/maxusers/d' \
-e 's/GENERIC/BOOTMFS/g'
fi
# reset maxusers to something lower
echo "maxusers 5"
echo "options NFS_NOSERVER"
echo "options SCSI_NO_OP_STRINGS"
echo "options SCSI_NO_SENSE_STRINGS"