freebsd-dev/release/pc98/dokern.sh
David E. O'Brien b9cee99a1e Squeeze the BOOTMFS kernel image some more. The Alpha kernel was simply
over flowing its britches.  So remove all ppbus bits except those for PLIP
(untested), and all USB bits as SRM does not know what USB is.  Also remove
/dev/random as I don't think we need it just for whacking bits onto a disk.

Approved by:	JKH
2000-07-16 06:32:28 +00:00

76 lines
1.4 KiB
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 '/gif/d' \
-e '/faith/d' \
-e '/gzip/d' \
-e '/splash/d' \
-e '/PROCFS/d' \
-e '/KTRACE/d' \
-e '/SYSVMSG/d' \
-e '/SOFTUPDATES/d' \
-e '/maxusers/d' \
-e '/MFS/d' \
-e '/NFS_ROOT/d' \
-e '/RANDOMDEV/d' \
-e '/atapist/d' \
-e 's/ident.*GENERIC/ident BOOTMFS/g'
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 '/splash/d' \
-e '/PROCFS/d' \
-e '/KTRACE/d' \
-e '/SYSV/d' \
-e '/SOFTUPDATES/d' \
-e '/maxusers/d' \
-e '/MFS/d' \
-e '/NFS_ROOT/d' \
-e '/RANDOMDEV/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 '/aue/d' \
-e '/cue/d' \
-e '/kue/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"