Re: [PATCH] kbuild: builddeb: Include dtbs in the Debian package built by "make deb-pkg"

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

On 20 June 2015 at 17:48, Karsten Merker <merker@xxxxxxxxxx> wrote:
> Native Debian kernel packages include any dtbs that were generated
> during the kernel build process in /usr/lib/${packagename}.
> Do the same for Debian packages built by scripts/package/builddeb
> (executed by the "deb-pkg" target).

This change has already been submitted in a few variations and is now
headed to next kernel version:

https://git.kernel.org/cgit/linux/kernel/git/mmarek/kbuild.git/commit/?h=misc&id=ca2a9d2cf6cf3dd852c3926ac7e30ee774da4638

> Signed-off-by: Karsten Merker <merker@xxxxxxxxxx>
> ---
>  scripts/package/builddeb | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/scripts/package/builddeb b/scripts/package/builddeb
> index 88dbf23..944b560 100755
> --- a/scripts/package/builddeb
> +++ b/scripts/package/builddeb
> @@ -143,6 +143,11 @@ else
>         cp arch/$ARCH/boot/$KBUILD_IMAGE "$tmpdir/$installed_image_path"
>  fi
>
> +# If dtbs have been built for this arch, include them in the package
> +if [ -d "arch/$ARCH/boot/dts" ]; then
> +  find "arch/$ARCH/boot/dts" -iname '*.dtb' -exec sh -c "mkdir -p '$tmpdir/usr/lib/$packagename'; cp '{}' '$tmpdir/usr/lib/$packagename/'" \;
> +fi
> +
>  if grep -q '^CONFIG_MODULES=y' $KCONFIG_CONFIG ; then
>         INSTALL_MOD_PATH="$tmpdir" $MAKE KBUILD_SRC= modules_install
>         rm -f "$tmpdir/lib/modules/$version/build"
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in
--
To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in



[Index of Archives]     [Linux&nblp;USB Development]     [Linux Media]     [Video for Linux]     [Linux Audio Users]     [Yosemite Secrets]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux