David E. O'Brien 127bc4f9e6 Dike out more for the i386 release build: NCR SCSI card; anchient WDC
SCSI card (should it ever find its way into GENERIC); LPT (we don't need
to print during install time); the parallel 'geek' port; generic USB
driver (thus some attached USB devices will not be detected and thus the
user may wonder what is going on, we couldn't do anything with the device
if only ugen attached to it anyway and we are getting very, very low on
available space; USB "Human Interface Devices" as we don't do anything
with them during installation; and USB printers (same argument as LPT).
2000-10-24 18:48:16 +00:00

144 lines
2.4 KiB
Bash
Executable File

#!/bin/sh
# $FreeBSD$
if [ $# -lt 1 ]; then
FDSIZE=NORMAL
else
FDSIZE=$1
fi
ARCH="`uname -m`"
# First check for the standard x86 PC class.
if [ "${ARCH}" = "i386" ]; then
if [ "${FDSIZE}" = "SMALL" ]; then
sed -e '/ pci$/d' \
-e '/ adv/d' \
-e '/ ahc/d' \
-e '/ amd/d' \
-e '/ isp/d' \
-e '/ ncr/d' \
-e '/ sym/d' \
-e '/ de/d' \
-e '/ fxp/d' \
-e '/ tx/d' \
-e '/ vx/d' \
-e '/ wx/d' \
-e '/ miibus/d' \
-e '/ dc/d' \
-e '/ pcn/d' \
-e '/ rl/d' \
-e '/ sf/d' \
-e '/ sis/d' \
-e '/ ste/d' \
-e '/ tl/d' \
-e '/ vr/d' \
-e '/ wb/d' \
-e '/ xl/d' \
-e '/pty/d' \
-e '/pass/d' \
-e '/apm0/d' \
-e '/ppp/d' \
-e '/gif/d' \
-e '/faith/d' \
-e '/gzip/d' \
-e '/random/d' \
-e '/splash/d' \
-e '/PROCFS/d' \
-e '/KTRACE/d' \
-e '/SYSVMSG/d' \
-e '/SOFTUPDATES/d' \
-e '/MFS/d' \
-e '/NFS_ROOT/d' \
-e '/atapist/d' \
-e '/urio/d' \
-e '/maxusers/d' \
-e 's/ident.*GENERIC/ident BOOTMFS/g'
else
sed -e '/pty/d' \
-e '/pass/d' \
-e '/apm0/d' \
-e '/ppp/d' \
-e '/gif/d' \
-e '/faith/d' \
-e '/gzip/d' \
-e '/random/d' \
-e '/splash/d' \
-e '/PROCFS/d' \
-e '/KTRACE/d' \
-e '/SYSVMSG/d' \
-e '/SOFTUPDATES/d' \
-e '/MFS/d' \
-e '/NFS_ROOT/d' \
-e '/ncr/d' \
-e '/atapist/d' \
-e '/wds/d' \
-e '/lpt/d' \
-e '/ppi/d' \
-e '/ugen/d' \
-e '/uhid/d' \
-e '/ulpt/d' \
-e '/urio/d' \
-e '/maxusers/d' \
-e 's/ident.*GENERIC/ident BOOTMFS/g'
fi
echo "options NETGRAPH"
echo "options NETGRAPH_ETHER"
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 '/gif/d' \
-e '/faith/d' \
-e '/gzip/d' \
-e '/random/d' \
-e '/splash/d' \
-e '/PROCFS/d' \
-e '/KTRACE/d' \
-e '/SYSV/d' \
-e '/SOFTUPDATES/d' \
-e '/MFS/d' \
-e '/NFS_ROOT/d' \
-e '/MSDOSFS/d' \
-e '/ncr/d' \
-e '/atapist/d' \
-e '/lpt/d' \
-e '/ppi/d' \
-e '/vpo/d' \
-e '/uhci/d' \
-e '/ohci/d' \
-e '/usb/d' \
-e '/ugen/d' \
-e '/uhid/d' \
-e '/ukbd/d' \
-e '/ulpt/d' \
-e '/umass/d' \
-e '/ums/d' \
-e '/urio/d' \
-e '/aue/d' \
-e '/cue/d' \
-e '/kue/d' \
-e '/maxusers/d' \
-e 's/ident.*GENERIC/ident 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"