linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] builddeb: Don't look for a missing Module.symvers
@ 2021-02-04 20:20 Sean Anderson
  2021-02-05  8:14 ` Masahiro Yamada
  0 siblings, 1 reply; 3+ messages in thread
From: Sean Anderson @ 2021-02-04 20:20 UTC (permalink / raw)
  To: linux-kernel, linux-kbuild; +Cc: Masahiro Yamada, Michal Marek, Sean Anderson

If deb-pkg is run with CONFIG_MODULES disabled, then make fails with

find: ‘Module.symvers’: No such file or directory
make[4]: *** [scripts/Makefile.package:87: intdeb-pkg] Error 1
make[3]: *** [Makefile:1523: intdeb-pkg] Error 2
make[2]: *** [debian/rules:9: binary-arch] Error 2

Only add it to headerobjfiles if we actually have modules.

Signed-off-by: Sean Anderson <sean.anderson@seco.com>
---

 scripts/package/builddeb | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/scripts/package/builddeb b/scripts/package/builddeb
index 91a502bb97e8..19d44704832b 100755
--- a/scripts/package/builddeb
+++ b/scripts/package/builddeb
@@ -71,7 +71,11 @@ deploy_kernel_headers () {
 			echo tools/objtool/objtool
 		fi
 
-		find arch/$SRCARCH/include Module.symvers include scripts -type f
+		if is_enabled CONFIG_MODULES; then
+			echo Module.symvers
+		fi
+
+		find arch/$SRCARCH/include include scripts -type f
 
 		if is_enabled CONFIG_GCC_PLUGINS; then
 			find scripts/gcc-plugins -name \*.so
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] builddeb: Don't look for a missing Module.symvers
  2021-02-04 20:20 [PATCH] builddeb: Don't look for a missing Module.symvers Sean Anderson
@ 2021-02-05  8:14 ` Masahiro Yamada
  2021-02-05 15:07   ` Sean Anderson
  0 siblings, 1 reply; 3+ messages in thread
From: Masahiro Yamada @ 2021-02-05  8:14 UTC (permalink / raw)
  To: Sean Anderson
  Cc: Linux Kernel Mailing List, Linux Kbuild mailing list, Michal Marek

On Fri, Feb 5, 2021 at 5:21 AM Sean Anderson <sean.anderson@seco.com> wrote:
>
> If deb-pkg is run with CONFIG_MODULES disabled, then make fails with
>
> find: ‘Module.symvers’: No such file or directory
> make[4]: *** [scripts/Makefile.package:87: intdeb-pkg] Error 1
> make[3]: *** [Makefile:1523: intdeb-pkg] Error 2
> make[2]: *** [debian/rules:9: binary-arch] Error 2
>
> Only add it to headerobjfiles if we actually have modules.
>
> Signed-off-by: Sean Anderson <sean.anderson@seco.com>
> ---


I do not see this error any more after
the following commit was merged.


commit bac977cbc0d6731fb8e67c2be0e4acbd959e10b3
Author: Masahiro Yamada <masahiroy@kernel.org>
Date:   Wed Oct 14 03:38:19 2020 +0900

    kbuild: deb-pkg: do not build linux-headers package if CONFIG_MODULES=n







>  scripts/package/builddeb | 6 +++++-
>  1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/scripts/package/builddeb b/scripts/package/builddeb
> index 91a502bb97e8..19d44704832b 100755
> --- a/scripts/package/builddeb
> +++ b/scripts/package/builddeb
> @@ -71,7 +71,11 @@ deploy_kernel_headers () {
>                         echo tools/objtool/objtool
>                 fi
>
> -               find arch/$SRCARCH/include Module.symvers include scripts -type f
> +               if is_enabled CONFIG_MODULES; then
> +                       echo Module.symvers
> +               fi
> +
> +               find arch/$SRCARCH/include include scripts -type f
>
>                 if is_enabled CONFIG_GCC_PLUGINS; then
>                         find scripts/gcc-plugins -name \*.so
> --
> 2.25.1
>


-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] builddeb: Don't look for a missing Module.symvers
  2021-02-05  8:14 ` Masahiro Yamada
@ 2021-02-05 15:07   ` Sean Anderson
  0 siblings, 0 replies; 3+ messages in thread
From: Sean Anderson @ 2021-02-05 15:07 UTC (permalink / raw)
  To: Masahiro Yamada
  Cc: Linux Kernel Mailing List, Linux Kbuild mailing list, Michal Marek



On 2/5/21 3:14 AM, Masahiro Yamada wrote:
> On Fri, Feb 5, 2021 at 5:21 AM Sean Anderson <sean.anderson@seco.com> wrote:
>>
>> If deb-pkg is run with CONFIG_MODULES disabled, then make fails with
>>
>> find: ‘Module.symvers’: No such file or directory
>> make[4]: *** [scripts/Makefile.package:87: intdeb-pkg] Error 1
>> make[3]: *** [Makefile:1523: intdeb-pkg] Error 2
>> make[2]: *** [debian/rules:9: binary-arch] Error 2
>>
>> Only add it to headerobjfiles if we actually have modules.
>>
>> Signed-off-by: Sean Anderson <sean.anderson@seco.com>
>> ---
> 
> 
> I do not see this error any more after
> the following commit was merged.

That fixes it on my end as well.

--Sean

> 
> 
> commit bac977cbc0d6731fb8e67c2be0e4acbd959e10b3
> Author: Masahiro Yamada <masahiroy@kernel.org>
> Date:   Wed Oct 14 03:38:19 2020 +0900
> 
>      kbuild: deb-pkg: do not build linux-headers package if CONFIG_MODULES=n
> 
> 
> 
> 
> 
> 
> 
>>   scripts/package/builddeb | 6 +++++-
>>   1 file changed, 5 insertions(+), 1 deletion(-)
>>
>> diff --git a/scripts/package/builddeb b/scripts/package/builddeb
>> index 91a502bb97e8..19d44704832b 100755
>> --- a/scripts/package/builddeb
>> +++ b/scripts/package/builddeb
>> @@ -71,7 +71,11 @@ deploy_kernel_headers () {
>>                          echo tools/objtool/objtool
>>                  fi
>>
>> -               find arch/$SRCARCH/include Module.symvers include scripts -type f
>> +               if is_enabled CONFIG_MODULES; then
>> +                       echo Module.symvers
>> +               fi
>> +
>> +               find arch/$SRCARCH/include include scripts -type f
>>
>>                  if is_enabled CONFIG_GCC_PLUGINS; then
>>                          find scripts/gcc-plugins -name \*.so
>> --
>> 2.25.1
>>
> 
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-02-05 20:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-04 20:20 [PATCH] builddeb: Don't look for a missing Module.symvers Sean Anderson
2021-02-05  8:14 ` Masahiro Yamada
2021-02-05 15:07   ` Sean Anderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).