svn commit: r318196 - stable/11/sys/tools/fdt

Oleksandr Tymoshenko gonzo at FreeBSD.org
Thu May 11 20:30:46 UTC 2017


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


More information about the svn-src-all mailing list