All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 1/1] package/wilc-driver: add missing BR2_LINUX_KERNEL dependency
@ 2022-04-27  7:25 James Hilliard
  2022-04-27 16:50 ` Kris Bahnsen via buildroot
  2022-04-27 19:38 ` Arnout Vandecappelle
  0 siblings, 2 replies; 3+ messages in thread
From: James Hilliard @ 2022-04-27  7:25 UTC (permalink / raw)
  To: buildroot; +Cc: James Hilliard, Kris Bahnsen

Fixes:
 - http://autobuild.buildroot.net/results/40b/40b8aa0c19917f64c3f272f5479068e7631ffcc3

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
Changes v1 -> v2:
  - add comment when !BR2_LINUX_KERNEL
---
 package/wilc-driver/Config.in | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/package/wilc-driver/Config.in b/package/wilc-driver/Config.in
index caf46ae281..24a7b05b17 100644
--- a/package/wilc-driver/Config.in
+++ b/package/wilc-driver/Config.in
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_WILC_DRIVER
 	bool "wilc kernel module"
+	depends on BR2_LINUX_KERNEL
 	help
 	  External kernel module for WILC1000/3000 devices.
 
@@ -16,6 +17,9 @@ config BR2_PACKAGE_WILC_DRIVER
 
 	  https://github.com/embeddedTS/wilc3000-external-module
 
+comment "wilc kernel module needs a Linux kernel to be built"
+	depends on !BR2_LINUX_KERNEL
+
 if BR2_PACKAGE_WILC_DRIVER
 
 config BR2_PACKAGE_WILC_DRIVER_SPI
-- 
2.25.1

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

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

* Re: [Buildroot] [PATCH v2 1/1] package/wilc-driver: add missing BR2_LINUX_KERNEL dependency
  2022-04-27  7:25 [Buildroot] [PATCH v2 1/1] package/wilc-driver: add missing BR2_LINUX_KERNEL dependency James Hilliard
@ 2022-04-27 16:50 ` Kris Bahnsen via buildroot
  2022-04-27 19:38 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Kris Bahnsen via buildroot @ 2022-04-27 16:50 UTC (permalink / raw)
  To: James Hilliard, buildroot

On Wed, 2022-04-27 at 01:25 -0600, James Hilliard wrote:
> Fixes:
>  - http://autobuild.buildroot.net/results/40b/40b8aa0c19917f64c3f272f5479068e7631ffcc3
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
> Changes v1 -> v2:
>   - add comment when !BR2_LINUX_KERNEL
> ---
>  package/wilc-driver/Config.in | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/package/wilc-driver/Config.in b/package/wilc-driver/Config.in
> index caf46ae281..24a7b05b17 100644
> --- a/package/wilc-driver/Config.in
> +++ b/package/wilc-driver/Config.in
> @@ -1,5 +1,6 @@
>  config BR2_PACKAGE_WILC_DRIVER
>  	bool "wilc kernel module"
> +	depends on BR2_LINUX_KERNEL
>  	help
>  	  External kernel module for WILC1000/3000 devices.
>  
> @@ -16,6 +17,9 @@ config BR2_PACKAGE_WILC_DRIVER
>  
>  	  https://github.com/embeddedTS/wilc3000-external-module
>  
> +comment "wilc kernel module needs a Linux kernel to be built"
> +	depends on !BR2_LINUX_KERNEL
> +
>  if BR2_PACKAGE_WILC_DRIVER
>  
>  config BR2_PACKAGE_WILC_DRIVER_SPI

I also just wanted to note that this driver in this form has only ever
been tested on AT91 and i.MX6UL ARM platforms. It may work on other
architectures, but we've not got any hardware setup for that. I'm not sure
if this fact would warrant a depends on ARM architecture for now to limit
scope or to leave it open for others to test.

As-is, the patch looks good to me though.

Reviewed-by: Kris Bahnsen <kris@embeddedTS.com>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH v2 1/1] package/wilc-driver: add missing BR2_LINUX_KERNEL dependency
  2022-04-27  7:25 [Buildroot] [PATCH v2 1/1] package/wilc-driver: add missing BR2_LINUX_KERNEL dependency James Hilliard
  2022-04-27 16:50 ` Kris Bahnsen via buildroot
@ 2022-04-27 19:38 ` Arnout Vandecappelle
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2022-04-27 19:38 UTC (permalink / raw)
  To: James Hilliard, buildroot; +Cc: Kris Bahnsen



On 27/04/2022 09:25, James Hilliard wrote:
> Fixes:
>   - http://autobuild.buildroot.net/results/40b/40b8aa0c19917f64c3f272f5479068e7631ffcc3
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>

  Applied to master, thanks.

  Regards,
  Arnout

> ---
> Changes v1 -> v2:
>    - add comment when !BR2_LINUX_KERNEL
> ---
>   package/wilc-driver/Config.in | 4 ++++
>   1 file changed, 4 insertions(+)
> 
> diff --git a/package/wilc-driver/Config.in b/package/wilc-driver/Config.in
> index caf46ae281..24a7b05b17 100644
> --- a/package/wilc-driver/Config.in
> +++ b/package/wilc-driver/Config.in
> @@ -1,5 +1,6 @@
>   config BR2_PACKAGE_WILC_DRIVER
>   	bool "wilc kernel module"
> +	depends on BR2_LINUX_KERNEL
>   	help
>   	  External kernel module for WILC1000/3000 devices.
>   
> @@ -16,6 +17,9 @@ config BR2_PACKAGE_WILC_DRIVER
>   
>   	  https://github.com/embeddedTS/wilc3000-external-module
>   
> +comment "wilc kernel module needs a Linux kernel to be built"
> +	depends on !BR2_LINUX_KERNEL
> +
>   if BR2_PACKAGE_WILC_DRIVER
>   
>   config BR2_PACKAGE_WILC_DRIVER_SPI
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2022-04-27 19:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-27  7:25 [Buildroot] [PATCH v2 1/1] package/wilc-driver: add missing BR2_LINUX_KERNEL dependency James Hilliard
2022-04-27 16:50 ` Kris Bahnsen via buildroot
2022-04-27 19:38 ` Arnout Vandecappelle

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.