diff options
Diffstat (limited to 'sys/conf')
| -rw-r--r-- | sys/conf/files | 5 | ||||
| -rw-r--r-- | sys/conf/newvers.sh | 12 | ||||
| -rw-r--r-- | sys/conf/param.c | 2 |
3 files changed, 14 insertions, 5 deletions
diff --git a/sys/conf/files b/sys/conf/files index 3fdbb5a24850..82cf5c8fd714 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1,4 +1,4 @@ -# $Id: files,v 1.20 1994/01/25 11:16:01 rgrimes Exp $ +# $Id: files,v 1.22 1994/05/17 22:30:25 jkh Exp $ # ddb/db_access.c optional ddb ddb/db_aout.c optional ddb @@ -39,6 +39,7 @@ kern/kern_fork.c standard kern/kern_kinfo.c standard kern/kern_ktrace.c standard kern/kern_malloc.c standard +kern/kern_ntptime.c standard kern/kern_proc.c standard kern/kern_prot.c standard kern/kern_resource.c standard @@ -132,6 +133,8 @@ netinet/tcp_subr.c optional inet netinet/tcp_timer.c optional inet netinet/tcp_usrreq.c optional inet netinet/udp_usrreq.c optional inet +netinet/igmp.c optional multicast +netinet/ip_mroute.c optional inet multicast mrouting netiso/clnp_debug.c optional iso netiso/clnp_er.c optional iso netiso/clnp_frag.c optional iso diff --git a/sys/conf/newvers.sh b/sys/conf/newvers.sh index ab111aa33136..949e4cf49f08 100644 --- a/sys/conf/newvers.sh +++ b/sys/conf/newvers.sh @@ -32,7 +32,7 @@ # SUCH DAMAGE. # # from: @(#)newvers.sh 7.4 (Berkeley) 12/7/90 -# $Id: newvers.sh,v 1.7.2.3 1994/05/01 19:19:34 rgrimes Exp $ +# $Id: newvers.sh,v 1.10 1994/06/28 10:39:08 jkh Exp $ # if [ ! -r version ] @@ -44,12 +44,18 @@ fi touch version -kernvers="FreeBSD 1.1(Release)" +ostype="FreeBSD" +osrelease="1.1.5.1(RELEASE)" +kernvers="${ostype} ${osrelease}" v=`cat version` t=`date "+ %m/%d/%y %H:%M"` t=`date` user=${USER-root} host=`hostname` dir=`pwd` ( - echo "char version[] = \"${kernvers} ($1) #${v}: ${t}\\n ${user}@${host}:${dir}\\n\";" + echo "const char version[] = \"${kernvers} ($1) #${v}: ${t}\\n ${user}@${host}:${dir}\\n\";" + echo "const char ostype[] = \"${ostype}\";" + echo "const char osrelease[] = \"${osrelease}\";" + echo "const int osbuild = ${v};" + echo "const char osconfig[] = \"$1\";" ) > vers.c diff --git a/sys/conf/param.c b/sys/conf/param.c index 115a3239c44e..1c4fcb161b33 100644 --- a/sys/conf/param.c +++ b/sys/conf/param.c @@ -38,7 +38,7 @@ * SUCH DAMAGE. * * from: @(#)param.c 7.20 (Berkeley) 6/27/91 - * $Id: param.c,v 1.9.2.1 1994/05/04 07:44:02 rgrimes Exp $ + * $Id: param.c,v 1.10 1994/05/04 08:22:05 rgrimes Exp $ */ #include "sys/param.h" |
