aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAndrey Konovalov <andrey.konovalov@linaro.org>2013-01-14 00:09:30 +0400
committerAndrey Konovalov <andrey.konovalov@linaro.org>2014-06-24 20:14:53 +0400
commit63b533bab5571b3214be7096d77e2c5ac5c9ba1c (patch)
tree219df263bc112769fe02e9dce6bf0720785b091c /scripts
parent78f22e26d22c857218de7f1bad6b5130e193b080 (diff)
deb-pkg: update builddeb to account for the dtb location change
Commit 499cd82 "ARM: dt: change .dtb build rules to build in dts directory" changed the location of the generated dtb file. Modify the builddeb script accordingly. Signed-off-by: Andrey Konovalov <andrey.konovalov@linaro.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/package/builddeb4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 2ca6bc1aafbd..0a6a5e7cfeee 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -331,9 +331,9 @@ EOF
fi
# Copy device tree files if generated
-stat arch/$ARCH/boot/*.dtb && {
+stat arch/$ARCH/boot/dts/*.dtb && {
mkdir -p "$tmpdir/lib/firmware/$version/device-tree"
- cp arch/$ARCH/boot/*.dtb "$tmpdir/lib/firmware/$version/device-tree"
+ cp arch/$ARCH/boot/dts/*.dtb "$tmpdir/lib/firmware/$version/device-tree"
}
cat <<EOF >> debian/control