Message ID | f5cc7f6394efe3d5404beb5588b67671dca9fb74.1427968988.git.riku.voipio@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
riku.voipio@linaro.org writes: Hi, > From: Riku Voipio <riku.voipio@linaro.org> > > 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. Already sent a "better" patch for that (your patch is not handling system with CONFIG_OF and without dtbs_install): http://www.spinics.net/lists/linux-kbuild/msg10794.html but looks like not yet merged. Arnaud -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org> writes: (replying to self) > riku.voipio@linaro.org writes: > > Hi, > >> From: Riku Voipio <riku.voipio@linaro.org> >> >> 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. > > Already sent a "better" patch for that (your patch is not handling > system with CONFIG_OF and without dtbs_install): > http://www.spinics.net/lists/linux-kbuild/msg10794.html Oops. Wrong version. The right one is v4: http://www.spinics.net/lists/linux-kbuild/msg10832.html Arnaud -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 2 April 2015 at 15:17, Arnaud Patard <arnaud.patard@rtp-net.org> wrote: > Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org> writes: >> Already sent a "better" patch for that (your patch is not handling >> system with CONFIG_OF and without dtbs_install): >> http://www.spinics.net/lists/linux-kbuild/msg10794.html > Oops. Wrong version. The right one is v4: > http://www.spinics.net/lists/linux-kbuild/msg10832.html Your version looks good. What needs to happen for it to get merged? Riku -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Riku Voipio <riku.voipio@linaro.org> writes: > On 2 April 2015 at 15:17, Arnaud Patard <arnaud.patard@rtp-net.org> wrote: >> Arnaud Patard (Rtp) <arnaud.patard@rtp-net.org> writes: >>> Already sent a "better" patch for that (your patch is not handling >>> system with CONFIG_OF and without dtbs_install): >>> http://www.spinics.net/lists/linux-kbuild/msg10794.html > >> Oops. Wrong version. The right one is v4: >> http://www.spinics.net/lists/linux-kbuild/msg10832.html > > Your version looks good. What needs to happen for it to get merged? No idea. I was hoping that someone would take it. Arnaud -- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
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"