Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/UPDATING,v rcsdiff: /ftp/cvs/cvsroot/src/UPDATING,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.53 retrieving revision 1.59 diff -u -p -r1.53 -r1.59 --- src/UPDATING 2002/02/24 01:15:21 1.53 +++ src/UPDATING 2002/04/29 08:36:20 1.59 @@ -1,4 +1,4 @@ -$NetBSD: UPDATING,v 1.53 2002/02/24 01:15:21 matt Exp $ +$NetBSD: UPDATING,v 1.59 2002/04/29 08:36:20 lukem Exp $ This file is intended to be a brief introduction to the build process and a reference on what to do if something doesn't work. @@ -7,7 +7,29 @@ For a more detailed description see Make Recent changes: ^^^^^^^^^^^^^^^ -20010223: + +20020426: + etc/postinstall added, which performs various checks for + configuration file updates and changes, and can fix most of + the problems identified. + This should make it much easier to upgrade a system's + configuration from earlier systems (as far back as NetBSD 1.5). + +20020320: + needs a new install(1) for it's "-a cmd" support. + build and install at usr.bin/xinstall before the build. + +20020319: + raw IPv6 socket now makes strict checking for sa_family and sa_len + on send(2) operation. be sure to have sbin/rtsol and usr.sbin/rtsold + newer than November 2001 when you upgrade the kernel. + +20020311: + ssh configuration files were moved from /etc to /etc/ssh. Beware + if you restart your machine from remote. Note that sshd.conf needs + to be changed (due to the use of "/etc" inside). + +20020223: Users of the VAX port will need to rebuild and install gas so it deal with the now present register prefix used in all the VAX assembly files. @@ -276,14 +298,14 @@ for anyone who uses any make(1) features #!/bin/sh . /etc/mk.conf -if [ -z $BSDSRCDIR ] ; then - BSDSRCDIR=/usr/src +if [ -z $NETBSDSRCDIR ] ; then + NETBSDSRCDIR=/usr/src fi -if [ \! -d $BSDSRCDIR ] ; then +if [ \! -d $NETBSDSRCDIR ] ; then echo Unable to find sources exit 1 fi -find $BSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \; +find $NETBSDSRCDIR -name \*.o -o -name obj.\* -o -name obj -exec rm \{\} \; if [ -z $BSDOBJDIR ] ; then BSDOBJDIR=/usr/obj @@ -292,7 +314,7 @@ if [ -d $BSDOBJDIR ] ; then rm -rf $BSDOBJDIR fi -cd $BSDSRCDIR && make cleandir +cd $NETBSDSRCDIR && make cleandir ---cut here---