svn commit: r357598 - head/sys/conf
Mark Johnston
markj at FreeBSD.org
Wed Feb 5 20:57:45 UTC 2020
Author: markj
Date: Wed Feb 5 20:57:45 2020
New Revision: 357598
URL: https://svnweb.freebsd.org/changeset/base/357598
Log:
Define SMP for standalone module builds.
Suggested and reviewed by: kevans
Differential Revision: https://reviews.freebsd.org/D23519
Modified:
head/sys/conf/config.mk
Modified: head/sys/conf/config.mk
==============================================================================
--- head/sys/conf/config.mk Wed Feb 5 20:55:59 2020 (r357597)
+++ head/sys/conf/config.mk Wed Feb 5 20:57:45 2020 (r357598)
@@ -11,8 +11,9 @@
opt_global.h:
touch ${.TARGET}
.if ${MACHINE} != "mips"
- @echo "#define VIMAGE 1" >> ${.TARGET}
+ @echo "#define SMP 1" >> ${.TARGET}
@echo "#define MAC 1" >> ${.TARGET}
+ @echo "#define VIMAGE 1" >> ${.TARGET}
.endif
opt_bpf.h:
echo "#define DEV_BPF 1" > ${.TARGET}
More information about the svn-src-head
mailing list