Module Name: src Committed By: pooka Date: Wed Jun 3 14:40:11 UTC 2015
Modified Files: src/sys/rump: Makefile.rump README.compileopts Log Message: Add a "default" alias for RUMP_NBCOMPAT, in case "default" and "all" stop being the same thing in the future. To generate a diff of this commit: cvs rdiff -u -r1.112 -r1.113 src/sys/rump/Makefile.rump cvs rdiff -u -r1.10 -r1.11 src/sys/rump/README.compileopts Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/rump/Makefile.rump diff -u src/sys/rump/Makefile.rump:1.112 src/sys/rump/Makefile.rump:1.113 --- src/sys/rump/Makefile.rump:1.112 Wed Jun 3 10:49:14 2015 +++ src/sys/rump/Makefile.rump Wed Jun 3 14:40:11 2015 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.rump,v 1.112 2015/06/03 10:49:14 pooka Exp $ +# $NetBSD: Makefile.rump,v 1.113 2015/06/03 14:40:11 pooka Exp $ # .if !defined(_RUMP_MK) @@ -30,8 +30,8 @@ CPPFLAGS+= -DMIPS1=1 .endif # which NetBSD compat to build -RUMP_NBCOMPAT?=all -.if ${RUMP_NBCOMPAT} == "all" +RUMP_NBCOMPAT?=default +.if ${RUMP_NBCOMPAT} == "all" || ${RUMP_NBCOMPAT} == "default" RUMP_NBCOMPAT= 50 60 70 .endif .if ${RUMP_NBCOMPAT} == "none" Index: src/sys/rump/README.compileopts diff -u src/sys/rump/README.compileopts:1.10 src/sys/rump/README.compileopts:1.11 --- src/sys/rump/README.compileopts:1.10 Wed Jun 3 10:49:14 2015 +++ src/sys/rump/README.compileopts Wed Jun 3 14:40:11 2015 @@ -1,4 +1,4 @@ - $NetBSD: README.compileopts,v 1.10 2015/06/03 10:49:14 pooka Exp $ + $NetBSD: README.compileopts,v 1.11 2015/06/03 14:40:11 pooka Exp $ This file describes compile-time options for rump kernels. Additionally, NetBSD build options will have an effect. See src/share/mk/bsd.README @@ -79,7 +79,9 @@ effect: Control how curlwp is obtained i RUMP_NBCOMPAT -values: comma-separated list of releases; e.g. "60,70"; or "all" or "none" +values: comma-separated list of releases; e.g. "60,70"; + or "all" or "default" or "none". Currently default == all (but + might not be so in the future) defval: all effect: Builds NetBSD COMPAT_nn code for each of the elements in the list. This option is useful only when building rump kernels for