diff options
author | imp <imp@FreeBSD.org> | 2014-04-30 18:02:04 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2014-04-30 18:02:04 +0000 |
commit | c4a1255f95935b40173708ba78773bcb76cfbd72 (patch) | |
tree | b99dcaa7476d82c5822f2afec6f978c6ce9e1987 /sys/tools | |
parent | 14906a620b6524bb6bd3f17265e6c4464f7e31d1 (diff) | |
download | FreeBSD-src-c4a1255f95935b40173708ba78773bcb76cfbd72.zip FreeBSD-src-c4a1255f95935b40173708ba78773bcb76cfbd72.tar.gz |
Allow FDT_DTS_FILE to be a list, either in the makedtb target, or in a
kernel config file. If you also want to have a static DTB compiled
into your kernel, however, it cannot be a list. We have no mechanism
in the kernel for picking one, so that doesn't make sense and will
result in a compile-time error.
Diffstat (limited to 'sys/tools')
-rwxr-xr-x | sys/tools/fdt/make_dtb.sh | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/tools/fdt/make_dtb.sh b/sys/tools/fdt/make_dtb.sh index 900ad9b..278b7bb 100755 --- a/sys/tools/fdt/make_dtb.sh +++ b/sys/tools/fdt/make_dtb.sh @@ -4,8 +4,12 @@ # Script generates dtb file ($3) from dts source ($2) in build tree S ($1) S=$1 -dts=$2 -dtb=$3 +dts="$2" +dtb_path=$3 -cpp -x assembler-with-cpp -I $S/gnu/dts/include -I $S/boot/fdt/dts/${MACHINE} -I $S/gnu/dts/${MACHINE} -include $dts /dev/null | +for d in ${dts}; do + dtb=${dtb_path}/`basename $d .dts`.dtb + echo "converting $d -> $dtb" + cpp -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} +done |