Source: linux Version: 3.8.2-1~experimental.1 Severity: normal Tags: patch Dear Maintainer,
>From linux 3.8, the directory where dtb is created was changed. Therefore, we need to change the script for package building. I created a patch which fix this problem. Please check and apply. Best regards, Nobuhiro -- System Information: Debian Release: 7.0 APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 3.2.0-4-amd64 (SMP w/2 CPU cores) Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff --git a/debian/rules.real b/debian/rules.real index f4b61f5..2b77891 100644 --- a/debian/rules.real +++ b/debian/rules.real @@ -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 -- 1.7.10.4

