Hi all, Sorry for the late reply. I can't keep up with mail during the week.
2012/2/4, Bjoern A. Zeeb <bzeeb-li...@lists.zabbadoz.net>: > And can you please include GENERIC at least in these kernel configs? They > are not building and this breaks a make universe and I guess eventually the > tinderbox as well... Including GENERIC sounds problematic because if both WITHOUT_* files are included, then GENERIC is included twice! As discussed on -arch, the idea was that users would never build WITHOUT_* directly, but rather include them in their custom kernel config. These files weren't intended to be picked up by "make universe" either [1]. It just didn't occur to me that the universe target would pick them up. Here's a possible solution to this patch (untested). In case it looks fine to everyone (and my mentors approve it), I'll definitely test with "make universe" before commit. [1] shame on me for not testing lasest version of my patch with "make universe" -- I only tested the first one which didn't add WITHOUT_* files. -- Robert Millan
Index: Makefile =================================================================== --- Makefile (revision 230971) +++ Makefile (working copy) @@ -404,7 +404,7 @@ .endif KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \ find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \ - ! -name DEFAULTS ! -name NOTES + ! -name DEFAULTS ! -name NOTES ! -name WITHOUT_\* universe_kernconfs: .for kernel in ${KERNCONFS} TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
_______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"