Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 28 Sep 2019 14:14:42 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r352844 - head/sys/conf
Message-ID:  <201909281414.x8SEEg2Z027803@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909281414.x8SEEg2Z027803>