All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/batman-adv: needs CONFIG_CRC16
@ 2022-04-19 18:58 Fabrice Fontaine
  2022-04-23  6:45 ` Christian Stewart via buildroot
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Fabrice Fontaine @ 2022-04-19 18:58 UTC (permalink / raw)
  To: buildroot; +Cc: Fabrice Fontaine

CONFIG_CRC16 is needed to avoid the following build failure:

ERROR: modpost: "crc16" [/nvmedata/autobuild/instance-6/output-1/build/batman-adv-2021.4/net/batman-adv/batman-adv.ko] undefined!

Fixes:
 - http://autobuild.buildroot.org/results/64bf0f89ef444dda4d1277c0e46d189ad2515713

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/batman-adv/batman-adv.mk | 1 +
 1 file changed, 1 insertion(+)

diff --git a/package/batman-adv/batman-adv.mk b/package/batman-adv/batman-adv.mk
index 838f9b1851..6a1aaa699c 100644
--- a/package/batman-adv/batman-adv.mk
+++ b/package/batman-adv/batman-adv.mk
@@ -35,6 +35,7 @@ define BATMAN_ADV_CONFIGURE_CMDS
 endef
 
 define BATMAN_ADV_LINUX_CONFIG_FIXUPS
+	$(call KCONFIG_ENABLE_OPT,CONFIG_CRC16)
 	$(call KCONFIG_ENABLE_OPT,CONFIG_LIBCRC32C)
 endef
 
-- 
2.35.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/batman-adv: needs CONFIG_CRC16
  2022-04-19 18:58 [Buildroot] [PATCH 1/1] package/batman-adv: needs CONFIG_CRC16 Fabrice Fontaine
@ 2022-04-23  6:45 ` Christian Stewart via buildroot
  2022-04-23 15:09 ` Arnout Vandecappelle
  2022-05-24 15:07 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Christian Stewart via buildroot @ 2022-04-23  6:45 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Buildroot Mailing List

 Hi,

On Tue, Apr 19, 2022 at 12:00 PM Fabrice Fontaine
<fontaine.fabrice@gmail.com> wrote:
>
> CONFIG_CRC16 is needed to avoid the following build failure:
>
> ERROR: modpost: "crc16" [/nvmedata/autobuild/instance-6/output-1/build/batman-adv-2021.4/net/batman-adv/batman-adv.ko] undefined!
>
> Fixes:
>  - http://autobuild.buildroot.org/results/64bf0f89ef444dda4d1277c0e46d189ad2515713
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/batman-adv/batman-adv.mk | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/package/batman-adv/batman-adv.mk b/package/batman-adv/batman-adv.mk
> index 838f9b1851..6a1aaa699c 100644
> --- a/package/batman-adv/batman-adv.mk
> +++ b/package/batman-adv/batman-adv.mk
> @@ -35,6 +35,7 @@ define BATMAN_ADV_CONFIGURE_CMDS
>  endef
>
>  define BATMAN_ADV_LINUX_CONFIG_FIXUPS
> +       $(call KCONFIG_ENABLE_OPT,CONFIG_CRC16)
>         $(call KCONFIG_ENABLE_OPT,CONFIG_LIBCRC32C)
>  endef

Reviewed-by: Christian Stewart <christian@paral.in>

Thanks,
Christian
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/batman-adv: needs CONFIG_CRC16
  2022-04-19 18:58 [Buildroot] [PATCH 1/1] package/batman-adv: needs CONFIG_CRC16 Fabrice Fontaine
  2022-04-23  6:45 ` Christian Stewart via buildroot
@ 2022-04-23 15:09 ` Arnout Vandecappelle
  2022-05-24 15:07 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Arnout Vandecappelle @ 2022-04-23 15:09 UTC (permalink / raw)
  To: Fabrice Fontaine, buildroot



On 19/04/2022 20:58, Fabrice Fontaine wrote:
> CONFIG_CRC16 is needed to avoid the following build failure:
> 
> ERROR: modpost: "crc16" [/nvmedata/autobuild/instance-6/output-1/build/batman-adv-2021.4/net/batman-adv/batman-adv.ko] undefined!
> 
> Fixes:
>   - http://autobuild.buildroot.org/results/64bf0f89ef444dda4d1277c0e46d189ad2515713
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/batman-adv/batman-adv.mk | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/package/batman-adv/batman-adv.mk b/package/batman-adv/batman-adv.mk
> index 838f9b1851..6a1aaa699c 100644
> --- a/package/batman-adv/batman-adv.mk
> +++ b/package/batman-adv/batman-adv.mk
> @@ -35,6 +35,7 @@ define BATMAN_ADV_CONFIGURE_CMDS
>   endef
>   
>   define BATMAN_ADV_LINUX_CONFIG_FIXUPS
> +	$(call KCONFIG_ENABLE_OPT,CONFIG_CRC16)
>   	$(call KCONFIG_ENABLE_OPT,CONFIG_LIBCRC32C)
>   endef
>   
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/batman-adv: needs CONFIG_CRC16
  2022-04-19 18:58 [Buildroot] [PATCH 1/1] package/batman-adv: needs CONFIG_CRC16 Fabrice Fontaine
  2022-04-23  6:45 ` Christian Stewart via buildroot
  2022-04-23 15:09 ` Arnout Vandecappelle
@ 2022-05-24 15:07 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-05-24 15:07 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: buildroot

>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:

 > CONFIG_CRC16 is needed to avoid the following build failure:
 > ERROR: modpost: "crc16"
 > [/nvmedata/autobuild/instance-6/output-1/build/batman-adv-2021.4/net/batman-adv/batman-adv.ko]
 > undefined!

 > Fixes:
 >  - http://autobuild.buildroot.org/results/64bf0f89ef444dda4d1277c0e46d189ad2515713

 > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>

Committed to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-05-24 15:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-19 18:58 [Buildroot] [PATCH 1/1] package/batman-adv: needs CONFIG_CRC16 Fabrice Fontaine
2022-04-23  6:45 ` Christian Stewart via buildroot
2022-04-23 15:09 ` Arnout Vandecappelle
2022-05-24 15:07 ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.