From: Riku Voipio <riku.voipio@xxxxxxxxxx> When kernel is built with CONFIG_OF, install all built device tree files built. The installation location used is same as toplevel INSTALL_DTBS_PATH. Signed-off-by: Riku Voipio <riku.voipio@xxxxxxxxxx> --- scripts/package/builddeb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/package/builddeb b/scripts/package/builddeb index 146b74f..147264e 100755 --- a/scripts/package/builddeb +++ b/scripts/package/builddeb @@ -174,6 +174,10 @@ if grep -q '^CONFIG_MODULES=y' $KCONFIG_CONFIG ; then fi fi +if grep -q '^CONFIG_OF=y' $KCONFIG_CONFIG ; then + $MAKE dtbs_install KBUILD_SRC= INSTALL_DTBS_PATH="$tmpdir/boot/dtbs/$version/" +fi + if [ "$ARCH" != "um" ]; then $MAKE headers_check KBUILD_SRC= $MAKE headers_install KBUILD_SRC= INSTALL_HDR_PATH="$libc_headers_dir/usr" -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html