diff options
author | sam <sam@FreeBSD.org> | 2008-12-19 23:10:55 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2008-12-19 23:10:55 +0000 |
commit | 7f586ff8eb1eb9b7c309868f06dd604939a72346 (patch) | |
tree | 8f620edc97f5992c36920bb819cd1397a6140c13 | |
parent | 2d9e1680b9c0bc58be27f7f061fb926050d6aeb3 (diff) | |
download | FreeBSD-src-7f586ff8eb1eb9b7c309868f06dd604939a72346.zip FreeBSD-src-7f586ff8eb1eb9b7c309868f06dd604939a72346.tar.gz |
add makefs to the base system; FreeBSD_version bumped just in case
Reviewed by: imp
-rw-r--r-- | UPDATING | 5 | ||||
-rw-r--r-- | sys/sys/param.h | 2 | ||||
-rw-r--r-- | usr.sbin/Makefile | 1 |
3 files changed, 7 insertions, 1 deletions
@@ -21,6 +21,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 8.x IS SLOW: developers choose to disable these features on build machines to maximize performance. (To disable malloc debugging, run ln -s aj /etc/malloc.conf.) + +20081219: + With __FreeBSD_version 800060 incorporates the makefs tool is + part of the base system (it was a port). + 20081216: The afdata and ifnet locks have been changed from mutexes to rwlocks, network modules will need to be re-compiled. diff --git a/sys/sys/param.h b/sys/sys/param.h index f8a4b2a..fad4d51 100644 --- a/sys/sys/param.h +++ b/sys/sys/param.h @@ -57,7 +57,7 @@ * is created, otherwise 1. */ #undef __FreeBSD_version -#define __FreeBSD_version 800059 /* Master, propagated to newvers */ +#define __FreeBSD_version 800060 /* Master, propagated to newvers */ #ifndef LOCORE #include <sys/types.h> diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index b84f9e3..26da845 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -86,6 +86,7 @@ SUBDIR= ${_ac} \ ${_lptcontrol} \ ${_mailstats} \ mailwrapper \ + makefs \ ${_makemap} \ manctl \ memcontrol \ |