Subversion Repositories general

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1099 dev 1
#!/bin/sh
2
 
1103 dev 3
#
4
# copy our version of files to system
5
#
6
# to update the system run as root
7
# ./clear_src.sh && cvsup src_update && ./copy_orig.sh && ./update_src.sh
8
#
9
# then run ./get_diffs.sh as user and examine the diffs
10
#
11
 
1099 dev 12
BIN_DIR=`dirname $0`
13
BASE_DIR="${BIN_DIR}/.."
14
 
15
cp ${BASE_DIR}/src/kern/* /usr/src/sys/kern
16
cp ${BASE_DIR}/src/module/files /usr/src/sys/conf/files
17
cp ${BASE_DIR}/src/module/Makefile.modules /usr/src/sys/modules/Makefile
18
cp ${BASE_DIR}/src/ntp/ntpd.c /usr/src/contrib/ntp/ntpd/ntpd.c
19