Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 11 May 2017 20:30:45 +0000 (UTC)
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r318196 - stable/11/sys/tools/fdt
Message-ID:  <201705112030.v4BKUjOs020096@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gonzo
Date: Thu May 11 20:30:44 2017
New Revision: 318196
URL: https://svnweb.freebsd.org/changeset/base/318196

Log:
  MFC r315031:
  
  [fdt] Make DTBs generated by make_dtb.sh overlay-ready
  
  Generate symbols node when compiling dts files so they can be modified
  during boot-time by applying overlays.

Modified:
  stable/11/sys/tools/fdt/make_dtb.sh
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/tools/fdt/make_dtb.sh
==============================================================================
--- stable/11/sys/tools/fdt/make_dtb.sh	Thu May 11 20:01:20 2017	(r318195)
+++ stable/11/sys/tools/fdt/make_dtb.sh	Thu May 11 20:30:44 2017	(r318196)
@@ -20,5 +20,5 @@ for d in ${dts}; do
     dtb=${dtb_path}/`basename $d .dts`.dtb
     echo "converting $d -> $dtb"
     cpp -P -x assembler-with-cpp -I $S/gnu/dts/include -I $S/boot/fdt/dts/${MACHINE} -I $S/gnu/dts/${MACHINE} -include $d /dev/null | 
-	dtc -O dtb -o $dtb -b 0 -p 1024 -i $S/boot/fdt/dts/${MACHINE} -i $S/gnu/dts/${MACHINE}
+	dtc -@ -O dtb -o $dtb -b 0 -p 1024 -i $S/boot/fdt/dts/${MACHINE} -i $S/gnu/dts/${MACHINE}
 done



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