Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/linux-firmware: add QCA9377 BT firmware
@ 2023-05-11 17:34 Kris Bahnsen via buildroot
  2023-05-26 23:29 ` Kris Bahnsen via buildroot
  2023-07-13 21:11 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 4+ messages in thread
From: Kris Bahnsen via buildroot @ 2023-05-11 17:34 UTC (permalink / raw)
  To: buildroot; +Cc: Kris Bahnsen, Yann E . MORIN, Mark Featherston

Deploy firmware files as well.

Signed-off-by: Kris Bahnsen <kris@embeddedTS.com>
---
 package/linux-firmware/Config.in         | 5 +++++
 package/linux-firmware/linux-firmware.mk | 6 ++++++
 2 files changed, 11 insertions(+)

diff --git a/package/linux-firmware/Config.in b/package/linux-firmware/Config.in
index 4b415a7da2..4cab6e7939 100644
--- a/package/linux-firmware/Config.in
+++ b/package/linux-firmware/Config.in
@@ -69,6 +69,11 @@ config BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_6174A_BT
 	help
 	  Firmware files for QCA Rome 6174A bluetooth support.
 
+config BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_9377_BT
+	bool "Qualcomm Atheros QCA9377 Bluetooth"
+	help
+	  Firmware files for QCA9377 bluetooth support.
+
 config BR2_PACKAGE_LINUX_FIRMWARE_AR3011
 	bool "Qualcomm Atheros 3011"
 	help
diff --git a/package/linux-firmware/linux-firmware.mk b/package/linux-firmware/linux-firmware.mk
index 9d9d12bd5f..9672c7a07f 100644
--- a/package/linux-firmware/linux-firmware.mk
+++ b/package/linux-firmware/linux-firmware.mk
@@ -65,6 +65,12 @@ LINUX_FIRMWARE_FILES += qca/rampatch_usb_00000302.bin qca/nvm_usb_00000302.bin
 LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENSE.qcom
 endif
 
+# Qualcomm Atheros QCA9377 Bluetooth
+ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_9377_BT),y)
+LINUX_FIRMWARE_FILES += qca/rampatch_00230302.bin qca/nvm_00230302.bin
+LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENSE.qcom
+endif
+
 # Realtek 87xx Bluetooth
 ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX_BT),y)
 LINUX_FIRMWARE_FILES += \
-- 
2.40.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/linux-firmware: add QCA9377 BT firmware
  2023-05-11 17:34 [Buildroot] [PATCH 1/1] package/linux-firmware: add QCA9377 BT firmware Kris Bahnsen via buildroot
@ 2023-05-26 23:29 ` Kris Bahnsen via buildroot
  2023-06-12 17:08   ` Kris Bahnsen via buildroot
  2023-07-13 21:11 ` Thomas Petazzoni via buildroot
  1 sibling, 1 reply; 4+ messages in thread
From: Kris Bahnsen via buildroot @ 2023-05-26 23:29 UTC (permalink / raw)
  To: buildroot; +Cc: Yann E . MORIN, Mark Featherston

On Thu, 2023-05-11 at 10:34 -0700, Kris Bahnsen via buildroot wrote:
Deploy firmware files as well.

Signed-off-by: Kris Bahnsen <kris@embeddedTS.com>

Following up with this patch to see if if there are any outstanding questions
or concerns and if there is a timeline on getting this merged in. Thanks.

-Kris

> ---
>  package/linux-firmware/Config.in         | 5 +++++
>  package/linux-firmware/linux-firmware.mk | 6 ++++++
>  2 files changed, 11 insertions(+)
> 
> diff --git a/package/linux-firmware/Config.in b/package/linux-firmware/Config.in
> index 4b415a7da2..4cab6e7939 100644
> --- a/package/linux-firmware/Config.in
> +++ b/package/linux-firmware/Config.in
> @@ -69,6 +69,11 @@ config BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_6174A_BT
>         help
>           Firmware files for QCA Rome 6174A bluetooth support.
>  
> +config BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_9377_BT
> +       bool "Qualcomm Atheros QCA9377 Bluetooth"
> +       help
> +         Firmware files for QCA9377 bluetooth support.
> +
>  config BR2_PACKAGE_LINUX_FIRMWARE_AR3011
>         bool "Qualcomm Atheros 3011"
>         help
> diff --git a/package/linux-firmware/linux-firmware.mk b/package/linux-firmware/linux-firmware.mk
> index 9d9d12bd5f..9672c7a07f 100644
> --- a/package/linux-firmware/linux-firmware.mk
> +++ b/package/linux-firmware/linux-firmware.mk
> @@ -65,6 +65,12 @@ LINUX_FIRMWARE_FILES += qca/rampatch_usb_00000302.bin qca/nvm_usb_00000302.bin
>  LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENSE.qcom
>  endif
>  
> +# Qualcomm Atheros QCA9377 Bluetooth
> +ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_9377_BT),y)
> +LINUX_FIRMWARE_FILES += qca/rampatch_00230302.bin qca/nvm_00230302.bin
> +LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENSE.qcom
> +endif
> +
>  # Realtek 87xx Bluetooth
>  ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX_BT),y)
>  LINUX_FIRMWARE_FILES += \


_______________________________________________
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/linux-firmware: add QCA9377 BT firmware
  2023-05-26 23:29 ` Kris Bahnsen via buildroot
@ 2023-06-12 17:08   ` Kris Bahnsen via buildroot
  0 siblings, 0 replies; 4+ messages in thread
From: Kris Bahnsen via buildroot @ 2023-06-12 17:08 UTC (permalink / raw)
  To: buildroot; +Cc: Yann E . MORIN, Mark Featherston

On Fri, 2023-05-26 at 16:29 -0700, Kris Bahnsen wrote:
On Thu, 2023-05-11 at 10:34 -0700, Kris Bahnsen via buildroot wrote:
Deploy firmware files as well.

Signed-off-by: Kris Bahnsen <kris@embeddedTS.com>

Following up with this patch to see if if there are any outstanding
questions
or concerns and if there is a timeline on getting this merged in.
Thanks.

-Kris

It's been about a month since the original patch was submitted. If
there are any issues with the patch I'd love some feedback. Otherwise,
I would like to know if there is a timeline on getting this merged in
as we are stalled waiting on support for it. Thanks.

-Kris


> ---
>  package/linux-firmware/Config.in         | 5 +++++
>  package/linux-firmware/linux-firmware.mk | 6 ++++++
>  2 files changed, 11 insertions(+)
> 
> diff --git a/package/linux-firmware/Config.in b/package/linux-
> firmware/Config.in
> index 4b415a7da2..4cab6e7939 100644
> --- a/package/linux-firmware/Config.in
> +++ b/package/linux-firmware/Config.in
> @@ -69,6 +69,11 @@ config
> BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_6174A_BT
>         help
>           Firmware files for QCA Rome 6174A bluetooth support.
>  
> +config BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_9377_BT
> +       bool "Qualcomm Atheros QCA9377 Bluetooth"
> +       help
> +         Firmware files for QCA9377 bluetooth support.
> +
>  config BR2_PACKAGE_LINUX_FIRMWARE_AR3011
>         bool "Qualcomm Atheros 3011"
>         help
> diff --git a/package/linux-firmware/linux-firmware.mk
> b/package/linux-firmware/linux-firmware.mk
> index 9d9d12bd5f..9672c7a07f 100644
> --- a/package/linux-firmware/linux-firmware.mk
> +++ b/package/linux-firmware/linux-firmware.mk
> @@ -65,6 +65,12 @@ LINUX_FIRMWARE_FILES +=
> qca/rampatch_usb_00000302.bin qca/nvm_usb_00000302.bin
>  LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENSE.qcom
>  endif
>  
> +# Qualcomm Atheros QCA9377 Bluetooth
> +ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_QUALCOMM_9377_BT),y)
> +LINUX_FIRMWARE_FILES += qca/rampatch_00230302.bin
> qca/nvm_00230302.bin
> +LINUX_FIRMWARE_ALL_LICENSE_FILES += LICENSE.qcom
> +endif
> +
>  # Realtek 87xx Bluetooth
>  ifeq ($(BR2_PACKAGE_LINUX_FIRMWARE_RTL_87XX_BT),y)
>  LINUX_FIRMWARE_FILES += \




_______________________________________________
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/linux-firmware: add QCA9377 BT firmware
  2023-05-11 17:34 [Buildroot] [PATCH 1/1] package/linux-firmware: add QCA9377 BT firmware Kris Bahnsen via buildroot
  2023-05-26 23:29 ` Kris Bahnsen via buildroot
@ 2023-07-13 21:11 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 4+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-07-13 21:11 UTC (permalink / raw)
  To: Kris Bahnsen via buildroot; +Cc: Mark Featherston, Yann E . MORIN, Kris Bahnsen

On Thu, 11 May 2023 10:34:51 -0700
Kris Bahnsen via buildroot <buildroot@buildroot.org> wrote:

> Deploy firmware files as well.
> 
> Signed-off-by: Kris Bahnsen <kris@embeddedTS.com>
> ---
>  package/linux-firmware/Config.in         | 5 +++++
>  package/linux-firmware/linux-firmware.mk | 6 ++++++
>  2 files changed, 11 insertions(+)

Applied to master, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
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:[~2023-07-13 21:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-11 17:34 [Buildroot] [PATCH 1/1] package/linux-firmware: add QCA9377 BT firmware Kris Bahnsen via buildroot
2023-05-26 23:29 ` Kris Bahnsen via buildroot
2023-06-12 17:08   ` Kris Bahnsen via buildroot
2023-07-13 21:11 ` Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox