diff options
author | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2000-08-12 14:21:33 +0000 |
---|---|---|
committer | Yoshihiro Takahashi <nyan@FreeBSD.org> | 2000-08-12 14:21:33 +0000 |
commit | 7920b17f9a21c44b39982366c451eb0081bbdd13 (patch) | |
tree | a21d883dc6b4b17f8e129bdea6a784f8e862e78d /release/pc98 | |
parent | 552112cadd6ea2de22d029f0d84a9720031933a6 (diff) | |
download | src-7920b17f9a21c44b39982366c451eb0081bbdd13.tar.gz src-7920b17f9a21c44b39982366c451eb0081bbdd13.zip |
Notes
Diffstat (limited to 'release/pc98')
-rwxr-xr-x | release/pc98/dokern.sh | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/release/pc98/dokern.sh b/release/pc98/dokern.sh index af1c4b4b8b8c..efb409d56fbc 100755 --- a/release/pc98/dokern.sh +++ b/release/pc98/dokern.sh @@ -2,11 +2,61 @@ # $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 '/ 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 '/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 '/atapist/d' \ + -e 's/ident.*GENERIC/ident BOOTMFS/g' + +else + sed -e '/pty/d' \ -e '/pass/d' \ -e '/apm0/d' \ @@ -25,6 +75,8 @@ sed -e '/pty/d' \ -e '/atapist/d' \ -e 's/ident.*GENERIC/ident BOOTMFS/g' +fi + echo "options NETGRAPH" echo "options NETGRAPH_ETHER" echo "options NETGRAPH_PPPOE" |