* [Buildroot] [PATCH 1/1] package/wf111: Fix manufacturer name and url
@ 2018-01-29 8:28 Julien Corjon
2018-01-29 13:40 ` Peter Korsgaard
2018-02-03 15:40 ` Yann E. MORIN
0 siblings, 2 replies; 5+ messages in thread
From: Julien Corjon @ 2018-01-29 8:28 UTC (permalink / raw)
To: buildroot
Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
---
package/wf111/Config.in | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/package/wf111/Config.in b/package/wf111/Config.in
index 80109f1b88..081bd960cb 100644
--- a/package/wf111/Config.in
+++ b/package/wf111/Config.in
@@ -6,7 +6,7 @@ config BR2_PACKAGE_WF111
# dynamically linked against the glibc.
depends on BR2_TOOLCHAIN_USES_GLIBC
help
- BlueGiga WF111 WiFi driver and utilities.
+ Silicon Labs WF111 WiFi driver and utilities.
Warning: CONFIG_WIRELESS_EXT and CONFIG_WEXT_PRIV must be
selected in the Linux kernel configuration. These are blind
@@ -17,16 +17,16 @@ config BR2_PACKAGE_WF111
configuration entry that selects them, for example.
- By enabling another random WiFi driver that select them.
- http://www.bluegiga.com/en-US/products/wifi-modules/wf111-wifi-module/
+ https://www.silabs.com/products/wireless/wi-fi/wf111-bluegiga-module
if BR2_PACKAGE_WF111
config BR2_PACKAGE_WF111_TARBALL_PATH
string "Local tarball location"
help
- The WF111 tarball can be retrieved on the BlueGiga website
- after registration. This option specifies the path where the
- tarball is locally saved.
+ The WF111 tarball can be retrieved on the Silicon Labs
+ website after registration. This option specifies the path
+ where the tarball is locally saved.
endif
--
2.14.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/1] package/wf111: Fix manufacturer name and url
2018-01-29 8:28 [Buildroot] [PATCH 1/1] package/wf111: Fix manufacturer name and url Julien Corjon
@ 2018-01-29 13:40 ` Peter Korsgaard
2018-02-03 15:40 ` Yann E. MORIN
1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2018-01-29 13:40 UTC (permalink / raw)
To: buildroot
>>>>> "Julien" == Julien Corjon <corjon.j@ecagroup.com> writes:
> Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/1] package/wf111: Fix manufacturer name and url
2018-01-29 8:28 [Buildroot] [PATCH 1/1] package/wf111: Fix manufacturer name and url Julien Corjon
2018-01-29 13:40 ` Peter Korsgaard
@ 2018-02-03 15:40 ` Yann E. MORIN
2018-02-03 17:07 ` Yann E. MORIN
1 sibling, 1 reply; 5+ messages in thread
From: Yann E. MORIN @ 2018-02-03 15:40 UTC (permalink / raw)
To: buildroot
Julien, All,
On 2018-01-29 09:28 +0100, Julien Corjon spake thusly:
> Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
> ---
> package/wf111/Config.in | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/package/wf111/Config.in b/package/wf111/Config.in
> index 80109f1b88..081bd960cb 100644
> --- a/package/wf111/Config.in
> +++ b/package/wf111/Config.in
> @@ -6,7 +6,7 @@ config BR2_PACKAGE_WF111
> # dynamically linked against the glibc.
> depends on BR2_TOOLCHAIN_USES_GLIBC
> help
> - BlueGiga WF111 WiFi driver and utilities.
> + Silicon Labs WF111 WiFi driver and utilities.
>
> Warning: CONFIG_WIRELESS_EXT and CONFIG_WEXT_PRIV must be
> selected in the Linux kernel configuration. These are blind
> @@ -17,16 +17,16 @@ config BR2_PACKAGE_WF111
> configuration entry that selects them, for example.
> - By enabling another random WiFi driver that select them.
>
> - http://www.bluegiga.com/en-US/products/wifi-modules/wf111-wifi-module/
> + https://www.silabs.com/products/wireless/wi-fi/wf111-bluegiga-module
>
> if BR2_PACKAGE_WF111
>
> config BR2_PACKAGE_WF111_TARBALL_PATH
> string "Local tarball location"
> help
> - The WF111 tarball can be retrieved on the BlueGiga website
> - after registration. This option specifies the path where the
> - tarball is locally saved.
> + The WF111 tarball can be retrieved on the Silicon Labs
> + website after registration. This option specifies the path
> + where the tarball is locally saved.
As I just replied to your previous patch (but you were dropped from Cc
for whatever reason), this is no longer true: one can very well do the
download without registration nowdays: try to download the URLs from
command line:
wget 'https://www.silabs.com/documents/login/software/wf111-linux-driver-5-2-2-r3-armv5te.tar.gz'
and it magically works now. So we can drop the special local tarball
path now. Care to send a patch?
Regards,
Yann E. MORIN.
> endif
>
> --
> 2.14.1
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 5+ messages in thread* [Buildroot] [PATCH 1/1] package/wf111: Fix manufacturer name and url
2018-02-03 15:40 ` Yann E. MORIN
@ 2018-02-03 17:07 ` Yann E. MORIN
2018-02-03 19:17 ` Peter Korsgaard
0 siblings, 1 reply; 5+ messages in thread
From: Yann E. MORIN @ 2018-02-03 17:07 UTC (permalink / raw)
To: buildroot
Julien, all,
On 2018-02-03 16:40 +0100, Yann E. MORIN spake thusly:
> On 2018-01-29 09:28 +0100, Julien Corjon spake thusly:
> > Signed-off-by: Julien Corjon <corjon.j@ecagroup.com>
[--SNIP--]
> > config BR2_PACKAGE_WF111_TARBALL_PATH
> > string "Local tarball location"
> > help
> > - The WF111 tarball can be retrieved on the BlueGiga website
> > - after registration. This option specifies the path where the
> > - tarball is locally saved.
> > + The WF111 tarball can be retrieved on the Silicon Labs
> > + website after registration. This option specifies the path
> > + where the tarball is locally saved.
>
> As I just replied to your previous patch (but you were dropped from Cc
> for whatever reason), this is no longer true: one can very well do the
> download without registration nowdays: try to download the URLs from
> command line:
>
> wget 'https://www.silabs.com/documents/login/software/wf111-linux-driver-5-2-2-r3-armv5te.tar.gz'
>
> and it magically works now. So we can drop the special local tarball
> path now. Care to send a patch?
I got bored not being at FOSDEM, so I did it:
https://patchwork.ozlabs.org/patch/868928/
And I also fixed the armv5 case:
https://patchwork.ozlabs.org/patch/868927/
Regards,
Yann E. MORIN.
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-02-03 19:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-29 8:28 [Buildroot] [PATCH 1/1] package/wf111: Fix manufacturer name and url Julien Corjon
2018-01-29 13:40 ` Peter Korsgaard
2018-02-03 15:40 ` Yann E. MORIN
2018-02-03 17:07 ` Yann E. MORIN
2018-02-03 19:17 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox