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-02-04 20:41:31 +0400
commit7877034be81277ebe33be8b7793176f482ec600b (patch)
treea907452343a86fe4437cb7764c75dfc3e42195d2 /scripts
parentfc0e15adc86f17eb96e5abc16af8dcc710f7a94b (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 f475725a6d4..58fdb49a766 100644
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -327,9 +327,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