arm: correct path to DTB files. Patch from Nobuhiro Iwamatsu. (Closes: #703082)

svn path=/dists/trunk/linux/; revision=19914
This commit is contained in:
Ian Campbell 2013-03-16 08:58:50 +00:00
parent dc2bf92471
commit c60e79b3f3
2 changed files with 5 additions and 1 deletions

4
debian/changelog vendored
View File

@ -3,6 +3,10 @@ linux (3.8.2-1~experimental.2) UNRELEASED; urgency=low
[ Ben Hutchings ]
* aufs: Update to aufs3.8-20130311
[ Ian Campbell ]
* arm: correct path to DTB files. Patch from Nobuhiro Iwamatsu.
(Closes: #703082)
-- Ben Hutchings <ben@decadent.org.uk> Sun, 10 Mar 2013 01:45:36 +0000
linux (3.8.2-1~experimental.1) experimental; urgency=low

2
debian/rules.real vendored
View File

@ -384,7 +384,7 @@ install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_image: DTB_INSTALL_DIR = /u
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_image:
install -m644 '$(DIR)/arch/$(KERNEL_ARCH)/boot/zImage' $(INSTALL_DIR)/vmlinuz-$(REAL_VERSION)
+$(MAKE_CLEAN) -C $(DIR) dtbs
shopt -s nullglob ; for i in $(DIR)/arch/arm/boot/*.dtb ; do \
shopt -s nullglob ; for i in $(DIR)/arch/arm/boot/dts/*.dtb ; do \
install -D -m644 $$i '$(PACKAGE_DIR)'/'$(DTB_INSTALL_DIR)'/$$(basename $$i) ; \
done
endif