Use $(KERNEL_ARCH) when installing DTBs

svn path=/dists/trunk/linux/; revision=21255
This commit is contained in:
Ian Campbell 2014-04-21 10:26:37 +00:00
parent 43ddf46672
commit b43913c15f
1 changed files with 1 additions and 1 deletions

2
debian/rules.real vendored
View File

@ -375,7 +375,7 @@ install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_dt: DT_INSTALL_DIR = $(PACK
install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_dt:
ifneq ($(filter armel armhf,$(ARCH)),)
+$(MAKE_CLEAN) -C $(DIR) dtbs
shopt -s nullglob ; for i in $(DIR)/arch/arm/boot/dts/*.dtb ; do \
shopt -s nullglob ; for i in $(DIR)/arch/$(KERNEL_ARCH)/boot/dts/*.dtb ; do \
install -D -m644 $$i '$(DT_INSTALL_DIR)'/$$(basename $$i) ; \
done
endif