svn commit: r352844 - head/sys/conf

John Baldwin jhb at FreeBSD.org
Sat Sep 28 14:14:42 UTC 2019


Author: jhb
Date: Sat Sep 28 14:14:42 2019
New Revision: 352844
URL: https://svnweb.freebsd.org/changeset/base/352844

Log:
  Disable REPRODUCIBLE_BUILD for kernel builds.
  
  The REPRODUCIBLE_BUILD option is actually managed in two separate
  files.  src.opts.mk governs the setting for world builds and
  kern.opts.mk governs it for kernel builds.  r350550 only changed the
  default for world builds.
  
  Reported by:	emaste
  Reviewed by:	emaste
  Differential Revision:	https://reviews.freebsd.org/D21444

Modified:
  head/sys/conf/kern.opts.mk

Modified: head/sys/conf/kern.opts.mk
==============================================================================
--- head/sys/conf/kern.opts.mk	Sat Sep 28 13:13:23 2019	(r352843)
+++ head/sys/conf/kern.opts.mk	Sat Sep 28 14:14:42 2019	(r352844)
@@ -42,7 +42,6 @@ __DEFAULT_YES_OPTIONS = \
     KERNEL_SYMBOLS \
     NETGRAPH \
     PF \
-    REPRODUCIBLE_BUILD \
     SOURCELESS_HOST \
     SOURCELESS_UCODE \
     TESTS \
@@ -53,7 +52,8 @@ __DEFAULT_NO_OPTIONS = \
     EXTRA_TCP_STACKS \
     KERNEL_RETPOLINE \
     OFED \
-    RATELIMIT
+    RATELIMIT \
+    REPRODUCIBLE_BUILD
 
 # Some options are totally broken on some architectures. We disable
 # them. If you need to enable them on an experimental basis, you


More information about the svn-src-all mailing list