diff --git a/debian/changelog b/debian/changelog index 9e139d36f..52b744812 100644 --- a/debian/changelog +++ b/debian/changelog @@ -240,6 +240,7 @@ linux (4.0.2-1~exp1) UNRELEASED; urgency=medium * [armhf] Add ehci-orion module to usb-modules udeb. (Closes: #783324) * [armhf] imx-hdmi module is now called dw_hdmi-imx, so update fb-modules udeb. Patches from both Vagrant Cascadian and Wookey. (Closes: #783275) + * [arm*] Install DTBS using dtbs_install target. (Closes: #784761) -- Ben Hutchings Mon, 27 Apr 2015 20:48:43 +0100 diff --git a/debian/rules.real b/debian/rules.real index 99e8fb9cb..ac9da7baa 100644 --- a/debian/rules.real +++ b/debian/rules.real @@ -377,9 +377,7 @@ install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_dt: DT_INSTALL_DIR = $(PACK install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_plain_dt: ifneq ($(filter arm64 armel armhf,$(ARCH)),) +$(MAKE_CLEAN) -C $(DIR) dtbs - shopt -s nullglob ; for i in $(DIR)/arch/$(KERNEL_ARCH)/boot/dts/*.dtb ; do \ - install -D -m644 $$i '$(DT_INSTALL_DIR)'/$$(basename $$i) ; \ - done + +$(MAKE_CLEAN) -C $(DIR) dtbs_install INSTALL_DTBS_PATH=$(CURDIR)/$(DT_INSTALL_DIR) endif ifneq ($(filter powerpc powerpcspe ppc64,$(ARCH)),) +$(MAKE_CLEAN) -C '$(DIR)' bootwrapper_install \