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>2013-09-23 22:56:52 +0400
commit3e931ca1bcf9d0d3ac37985597e2a3a8e2ae968a (patch)
treeb45b69501ff68ecb60014963229c225b2fa384b3 /scripts
parent8002af6bd38a2560cbcd29bb1150f972e6d31db1 (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 aacba2831a2e..99ec405a36a2 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -318,9 +318,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