Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 15 Apr 2016 15:28:23 +0000 (UTC)
From:      Stanislav Galabov <sgalabov@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r298061 - head/sys/conf
Message-ID:  <201604151528.u3FFSNw1077411@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sgalabov
Date: Fri Apr 15 15:28:23 2016
New Revision: 298061
URL: https://svnweb.freebsd.org/changeset/base/298061

Log:
  Change the fdt_static_dtb.S dependency
  
  fdt_static_dtb.S dependency in sys/conf/files is currently set as:
  $S/boot/fdt/dts/${MACHINE}/${FDT_DTS_FILE}
  
  This is wrong, as what fdt_static_dtb.S actually uses is the DTB file
  produced from the FDT_DTS_FILE.
  In addition it also makes using DTS files stored in $S/gnu/dts/${MACHINE}/
  impossible.
  
  So, change the dependency to "fdt_dtb_file", which seems to be the right
  option here anyway.
  
  Approved by:	adrian (mentor)
  Sponsored by:	Smartcom - Bulgaria AD
  Differential Revision:	https://reviews.freebsd.org/D5963

Modified:
  head/sys/conf/files

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Fri Apr 15 15:26:31 2016	(r298060)
+++ head/sys/conf/files	Fri Apr 15 15:28:23 2016	(r298061)
@@ -1443,7 +1443,7 @@ dev/fdt/fdt_pinctrl.c		optional fdt fdt_
 dev/fdt/fdt_pinctrl_if.m	optional fdt fdt_pinctrl
 dev/fdt/fdt_slicer.c		optional fdt cfi | fdt nand | fdt mx25l
 dev/fdt/fdt_static_dtb.S	optional fdt fdt_dtb_static \
-	dependency	"$S/boot/fdt/dts/${MACHINE}/${FDT_DTS_FILE}"
+	dependency	"fdt_dtb_file"
 dev/fdt/simplebus.c		optional fdt
 dev/fe/if_fe.c			optional fe
 dev/fe/if_fe_pccard.c		optional fe pccard



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