Re: [PATCH 2/2] builddeb: make headers package thinner

From: Masahiro Yamada
Date: Sat Jan 11 2020 - 01:14:35 EST


On Sat, Jan 4, 2020 at 6:56 PM MichaÅ MirosÅaw <mirq-linux@xxxxxxxxxxxx> wrote:
>
> Remove a bunch of files not used during external module builds:
> - foreign architecture headers
> - subtree Makefiles
> - Kconfig files
> - perl scripts
>
> On amd64 system this looses a third of the resulting .deb size.
>
> Signed-off-by: MichaÅ MirosÅaw <mirq-linux@xxxxxxxxxxxx>

Applied to linux-kbuild.
Thanks.


> ---
> scripts/package/builddeb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/scripts/package/builddeb b/scripts/package/builddeb
> index d289c4ebc891..fb68916d5898 100755
> --- a/scripts/package/builddeb
> +++ b/scripts/package/builddeb
> @@ -165,8 +165,8 @@ EOF
> done
>
> # Build kernel header package
> -(cd $srctree; find . -name Makefile\* -o -name Kconfig\* -o -name \*.pl) > "$objtree/debian/hdrsrcfiles"
> -(cd $srctree; find arch/*/include include scripts -type f -o -type l) >> "$objtree/debian/hdrsrcfiles"
> +(cd $srctree; find . arch/$SRCARCH -maxdepth 1 -name Makefile\*) > "$objtree/debian/hdrsrcfiles"
> +(cd $srctree; find include scripts -type f -o -type l) >> "$objtree/debian/hdrsrcfiles"
> (cd $srctree; find arch/$SRCARCH -name module.lds -o -name Kbuild.platforms -o -name Platform) >> "$objtree/debian/hdrsrcfiles"
> (cd $srctree; find $(find arch/$SRCARCH -name include -o -name scripts -type d) -type f) >> "$objtree/debian/hdrsrcfiles"
> if is_enabled CONFIG_STACK_VALIDATION; then
> --
> 2.20.1
>


--
Best Regards
Masahiro Yamada