aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsha R <asha.r@arm.com>2019-06-20 11:35:11 +0530
committerArvind Chauhan <arvind.chauhan@arm.com>2019-06-20 08:52:07 +0100
commitd2d86c711bfeb986bc0d318dfa5998cebaa0e7ab (patch)
treefc4d6bafae1e28ce19e54706b8bbf2e290353ef3
parent6a8bd6b803865127a2a9d622ddb9c345af01c0e4 (diff)
target-bins:Avoid warnings during DTB/DTS generation
When the DTB is decoded and recoded, warnings are encountered. These warnings are suppressed by adding -q option to DTC command. Signed-off-by: Asha R <asha.r@arm.com>
-rwxr-xr-xbuild-target-bins.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-target-bins.sh b/build-target-bins.sh
index 147f6f2..e6c5ce3 100755
--- a/build-target-bins.sh
+++ b/build-target-bins.sh
@@ -82,7 +82,7 @@ append_chosen_node()
local ramdisk_end=$(($4 + $(wc -c < $2)))
local DTC=$TOP_DIR/$LINUX_PATH/$LINUX_OUT_DIR/$LINUX_CONFIG_DEFAULT/scripts/dtc/dtc
# Decode the DTB
- ${DTC} -Idtb -Odts -o$1.dts $LINUX_PATH/$3.dtb
+ ${DTC} -Idtb -Odts -q -o$1.dts $LINUX_PATH/$3.dtb
echo "" >> $1.dts
echo "/ {" >> $1.dts
@@ -93,7 +93,7 @@ append_chosen_node()
echo "};" >> $1.dts
# Recode the DTB
- ${DTC} -Idts -Odtb -o$LINUX_PATH/$1.dtb $1.dts
+ ${DTC} -Idts -Odtb -q -o$LINUX_PATH/$1.dtb $1.dts
# And clean up
rm $1.dts