All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] package/rtl8723bu: bump to version 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3
@ 2022-01-14  5:07 Doug Brown via buildroot
  2022-01-14  5:07 ` [Buildroot] [PATCH 2/2] package/rtl8723bu: fix firmware install path Doug Brown via buildroot
  2022-02-16 20:30 ` [Buildroot] [PATCH 1/2] package/rtl8723bu: bump to version 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3 Peter Korsgaard
  0 siblings, 2 replies; 5+ messages in thread
From: Doug Brown via buildroot @ 2022-01-14  5:07 UTC (permalink / raw)
  To: buildroot; +Cc: Doug Brown

This version fixes a bug that prevents the user from switching from one
access point to another.

Signed-off-by: Doug Brown <doug@schmorgal.com>
---
 package/rtl8723bu/rtl8723bu.hash | 2 +-
 package/rtl8723bu/rtl8723bu.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/rtl8723bu/rtl8723bu.hash b/package/rtl8723bu/rtl8723bu.hash
index 04bc776a07..1dad7154b4 100644
--- a/package/rtl8723bu/rtl8723bu.hash
+++ b/package/rtl8723bu/rtl8723bu.hash
@@ -1,2 +1,2 @@
 # Locally computed
-sha256  4c7314dccebda1e55ec8dcf0d5ca8915c2490d17a9f56923f25e6e0e945c10cc  rtl8723bu-9ce1c38439f4f574bb7adaf33949835c25536a28.tar.gz
+sha256  1cd658742ce10b21c92877e09cecc98880680d5f150de3845553005abc542977  rtl8723bu-19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3.tar.gz
diff --git a/package/rtl8723bu/rtl8723bu.mk b/package/rtl8723bu/rtl8723bu.mk
index c35fad5832..e490bddf09 100644
--- a/package/rtl8723bu/rtl8723bu.mk
+++ b/package/rtl8723bu/rtl8723bu.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-RTL8723BU_VERSION = 9ce1c38439f4f574bb7adaf33949835c25536a28
+RTL8723BU_VERSION = 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3
 RTL8723BU_SITE = $(call github,lwfinger,rtl8723bu,$(RTL8723BU_VERSION))
 RTL8723BU_LICENSE = GPL-2.0, proprietary (*.bin firmware blobs)
 
-- 
2.25.1

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

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

* [Buildroot] [PATCH 2/2] package/rtl8723bu: fix firmware install path
  2022-01-14  5:07 [Buildroot] [PATCH 1/2] package/rtl8723bu: bump to version 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3 Doug Brown via buildroot
@ 2022-01-14  5:07 ` Doug Brown via buildroot
  2022-02-03 20:41   ` Arnout Vandecappelle
  2022-02-16 20:30   ` Peter Korsgaard
  2022-02-16 20:30 ` [Buildroot] [PATCH 1/2] package/rtl8723bu: bump to version 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3 Peter Korsgaard
  1 sibling, 2 replies; 5+ messages in thread
From: Doug Brown via buildroot @ 2022-01-14  5:07 UTC (permalink / raw)
  To: buildroot; +Cc: Doug Brown

The rtl8723b_fw.bin file installed by this package is not actually used
by this driver at all. It is used by the btrtl Bluetooth driver in the
mainline kernel. The mainline btrtl driver looks for the file in
/lib/firmware/rtl_bt rather than /lib/firmware/rtlwifi. This driver's
Makefile has an install target that confirms the correct destination
firmware directory.

Signed-off-by: Doug Brown <doug@schmorgal.com>
---
 package/rtl8723bu/rtl8723bu.mk | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/rtl8723bu/rtl8723bu.mk b/package/rtl8723bu/rtl8723bu.mk
index e490bddf09..838bbedb74 100644
--- a/package/rtl8723bu/rtl8723bu.mk
+++ b/package/rtl8723bu/rtl8723bu.mk
@@ -13,7 +13,7 @@ RTL8723BU_MODULE_MAKE_OPTS = \
 	KSRC=$(LINUX_DIR)
 
 define RTL8723BU_INSTALL_TARGET_CMDS
-	$(INSTALL) -D -m 644 $(@D)/rtl8723b_fw.bin $(TARGET_DIR)/lib/firmware/rtlwifi/rtl8723b_fw.bin
+	$(INSTALL) -D -m 644 $(@D)/rtl8723b_fw.bin $(TARGET_DIR)/lib/firmware/rtl_bt/rtl8723b_fw.bin
 endef
 
 $(eval $(kernel-module))
-- 
2.25.1

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

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

* Re: [Buildroot] [PATCH 2/2] package/rtl8723bu: fix firmware install path
  2022-01-14  5:07 ` [Buildroot] [PATCH 2/2] package/rtl8723bu: fix firmware install path Doug Brown via buildroot
@ 2022-02-03 20:41   ` Arnout Vandecappelle
  2022-02-16 20:30   ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Arnout Vandecappelle @ 2022-02-03 20:41 UTC (permalink / raw)
  To: Doug Brown, buildroot, Peter Korsgaard



On 14/01/2022 06:07, Doug Brown via buildroot wrote:
> The rtl8723b_fw.bin file installed by this package is not actually used
> by this driver at all. It is used by the btrtl Bluetooth driver in the
> mainline kernel. The mainline btrtl driver looks for the file in
> /lib/firmware/rtl_bt rather than /lib/firmware/rtlwifi. This driver's
> Makefile has an install target that confirms the correct destination
> firmware directory.
> 
> Signed-off-by: Doug Brown <doug@schmorgal.com>

  Applied to master, thanks.

  I also double-checked that this was indeed wrong from the very first version 
that was added to Buildroot.

  @Peter this is for stable.

  Regards,
  Arnout

> ---
>   package/rtl8723bu/rtl8723bu.mk | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/rtl8723bu/rtl8723bu.mk b/package/rtl8723bu/rtl8723bu.mk
> index e490bddf09..838bbedb74 100644
> --- a/package/rtl8723bu/rtl8723bu.mk
> +++ b/package/rtl8723bu/rtl8723bu.mk
> @@ -13,7 +13,7 @@ RTL8723BU_MODULE_MAKE_OPTS = \
>   	KSRC=$(LINUX_DIR)
>   
>   define RTL8723BU_INSTALL_TARGET_CMDS
> -	$(INSTALL) -D -m 644 $(@D)/rtl8723b_fw.bin $(TARGET_DIR)/lib/firmware/rtlwifi/rtl8723b_fw.bin
> +	$(INSTALL) -D -m 644 $(@D)/rtl8723b_fw.bin $(TARGET_DIR)/lib/firmware/rtl_bt/rtl8723b_fw.bin
>   endef
>   
>   $(eval $(kernel-module))
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/2] package/rtl8723bu: bump to version 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3
  2022-01-14  5:07 [Buildroot] [PATCH 1/2] package/rtl8723bu: bump to version 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3 Doug Brown via buildroot
  2022-01-14  5:07 ` [Buildroot] [PATCH 2/2] package/rtl8723bu: fix firmware install path Doug Brown via buildroot
@ 2022-02-16 20:30 ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2022-02-16 20:30 UTC (permalink / raw)
  To: Doug Brown via buildroot; +Cc: Doug Brown

>>>>> "Doug" == Doug Brown via buildroot <buildroot@buildroot.org> writes:

 > This version fixes a bug that prevents the user from switching from one
 > access point to another.

 > Signed-off-by: Doug Brown <doug@schmorgal.com>

Committed to 2021.02.x and 2021.11.x, thanks.

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

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

* Re: [Buildroot] [PATCH 2/2] package/rtl8723bu: fix firmware install path
  2022-01-14  5:07 ` [Buildroot] [PATCH 2/2] package/rtl8723bu: fix firmware install path Doug Brown via buildroot
  2022-02-03 20:41   ` Arnout Vandecappelle
@ 2022-02-16 20:30   ` Peter Korsgaard
  1 sibling, 0 replies; 5+ messages in thread
From: Peter Korsgaard @ 2022-02-16 20:30 UTC (permalink / raw)
  To: Doug Brown via buildroot; +Cc: Doug Brown

>>>>> "Doug" == Doug Brown via buildroot <buildroot@buildroot.org> writes:

 > The rtl8723b_fw.bin file installed by this package is not actually used
 > by this driver at all. It is used by the btrtl Bluetooth driver in the
 > mainline kernel. The mainline btrtl driver looks for the file in
 > /lib/firmware/rtl_bt rather than /lib/firmware/rtlwifi. This driver's
 > Makefile has an install target that confirms the correct destination
 > firmware directory.

 > Signed-off-by: Doug Brown <doug@schmorgal.com>

Committed to 2021.02.x and 2021.11.x, thanks.

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

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

end of thread, other threads:[~2022-02-16 20:30 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-14  5:07 [Buildroot] [PATCH 1/2] package/rtl8723bu: bump to version 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3 Doug Brown via buildroot
2022-01-14  5:07 ` [Buildroot] [PATCH 2/2] package/rtl8723bu: fix firmware install path Doug Brown via buildroot
2022-02-03 20:41   ` Arnout Vandecappelle
2022-02-16 20:30   ` Peter Korsgaard
2022-02-16 20:30 ` [Buildroot] [PATCH 1/2] package/rtl8723bu: bump to version 19b4bdc05483a1e79a4f955a80f8f72cdd5dedc3 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.