aboutsummaryrefslogtreecommitdiff
path: root/release/alpha
diff options
context:
space:
mode:
authorYoshihiro Takahashi <nyan@FreeBSD.org>2000-08-12 14:21:33 +0000
committerYoshihiro Takahashi <nyan@FreeBSD.org>2000-08-12 14:21:33 +0000
commit7920b17f9a21c44b39982366c451eb0081bbdd13 (patch)
treea21d883dc6b4b17f8e129bdea6a784f8e862e78d /release/alpha
parent552112cadd6ea2de22d029f0d84a9720031933a6 (diff)
downloadsrc-7920b17f9a21c44b39982366c451eb0081bbdd13.tar.gz
src-7920b17f9a21c44b39982366c451eb0081bbdd13.zip
- Make both 1.2MB and 1.44MB floppy images for PC-98.
- Rename BIGBOOT to FDSIZE for the floppy image size.
Notes
Notes: svn path=/head/; revision=64556
Diffstat (limited to 'release/alpha')
-rwxr-xr-xrelease/alpha/dokern.sh52
1 files changed, 52 insertions, 0 deletions
diff --git a/release/alpha/dokern.sh b/release/alpha/dokern.sh
index af1c4b4b8b8c..efb409d56fbc 100755
--- a/release/alpha/dokern.sh
+++ b/release/alpha/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"