Hmm... Let's make the switch to non-DEVFS actually work. :-/

This commit is contained in:
Andrzej Bialecki 1998-09-20 00:46:27 +00:00
parent bcc6a3da92
commit 53cf34b16e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39499
6 changed files with 21 additions and 30 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh -
#
# $Id: build,v 1.6 1998/09/15 11:12:13 abial Exp $
# $Id: build,v 1.7 1998/09/19 21:44:42 abial Exp $
#
# You can set the SRC variable which points to your source tree. It's
@ -22,7 +22,7 @@ ISP_DFLT_SIZE=2200
# SET THIS if you're not using DEVFS
#
# NO_DEVFS=yes
NO_DEVFS=yes
# Path to srcdirs of special program for init(8) (standard if empty)
INIT=

View File

@ -1,7 +1,7 @@
#! /bin/sh -
#
# $Id: stage1,v 1.2 1998/09/07 06:46:25 abial Exp $
# $Id: stage1,v 1.3 1998/09/11 13:14:25 abial Exp $
#
set -e
@ -64,19 +64,19 @@ INODES=16000
# You can save some space on MFS if you don't want so many inodes...
if [ "${TYPE}" = "dial" ]
then
INODES=10240
INODES=4096
fi
if [ "${TYPE}" = "router" ]
then
INODES=12000
INODES=3072
fi
if [ "${TYPE}" = "net" ]
then
INODES=16000
INODES=4096
fi
if [ "${TYPE}" = "isp" ]
then
INODES=15000
INODES=4096
fi
newfs -i $INODES -m 0 -p 0 -o space /dev/rvn0c 2>&1 >/dev/null
mount /dev/vn0c /mnt

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $
# $Id: Makefile,v 1.2 1998/08/31 13:39:01 abial Exp $
#
DESTDIR?=/mnt
@ -61,9 +61,7 @@ links: tree
# We don't do it under 'all' because it's needed only on non-DEVFS systems
devnodes: tree
(cp MAKEDEV ${DESTDIR}/dev/; \
cd ${DESTDIR}/dev; \
./MAKEDEV std tun2 vty10 fd0 wd0 wd0s1h pty0; \
rm MAKEDEV;)
(cd ${DESTDIR}/dev; \
/dev/MAKEDEV std tun2 cuaa0 cuaa1 cuaa2 vty10 fd0 wd0s1h pty0)
clean:

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.1.1.1 1998/07/14 07:30:47 abial Exp $
# $Id: Makefile,v 1.1.1.1 1998/08/27 17:38:42 abial Exp $
#
DESTDIR?=/mnt
@ -32,10 +32,7 @@ links: tree
# We don't do it under 'all' because it's needed only on non-DEVFS systems
devnodes: tree
(cp MAKEDEV ${DESTDIR}/dev/; \
cd ${DESTDIR}/dev; \
./MAKEDEV std tun2 vty10 fd0 wd0 wd0s1h pty0 vn0; \
./MAKEDEV rp0 rp1 cy0 cy1; \
./MAKEDEV cuaa0 cuaa1 cuaa2 cuaa3 cuaa4; \
./MAKEDEV cuaa5 cuaa6 cuaa7 cuaa8 cuaa9; \
rm MAKEDEV;)
(cd ${DESTDIR}/dev; \
/dev/MAKEDEV std tun2 vty10 fd0 wd0s1h pty0; \
/dev/MAKEDEV cuaa0 cuaa1 cuaa2 cuaa3 cuaa4; \
/dev/MAKEDEV cuaa5 cuaa6 cuaa7 cuaa8 cuaa9)

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.1.1.1 1998/07/14 07:30:51 abial Exp $
# $Id: Makefile,v 1.1.1.1 1998/08/27 17:38:44 abial Exp $
#
DESTDIR?=/mnt
@ -32,7 +32,5 @@ links: tree
# We don't do it under 'all' because it's needed only on non-DEVFS systems
devnodes: tree
(cp MAKEDEV ${DESTDIR}/dev/; \
cd ${DESTDIR}/dev; \
./MAKEDEV std tun2 vty10 fd0 wd0 wd0s1h pty0 vn0; \
rm MAKEDEV;)
(cd ${DESTDIR}/dev; \
/dev/MAKEDEV std tun2 cuaa0 cuaa1 cuaa2 vty10 fd0 wd0s1h pty0)

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.1 1998/08/02 13:03:32 abial Exp $
# $Id: Makefile,v 1.1.1.1 1998/08/27 17:38:44 abial Exp $
#
DESTDIR?=/mnt
@ -32,7 +32,5 @@ links: tree
# We don't do it under 'all' because it's needed only on non-DEVFS systems
devnodes: tree
(cp MAKEDEV ${DESTDIR}/dev/; \
cd ${DESTDIR}/dev; \
./MAKEDEV std tun2 vty10 fd0 wd0 wd0s1h pty0 vn0; \
rm MAKEDEV;)
(cd ${DESTDIR}/dev; \
/dev/MAKEDEV std tun2 vty3 fd0 pty0 cuaa0 cuaa1 cuaa2)