All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271
@ 2012-03-02 18:43 Gustavo Zacarias
  2012-03-02 18:43 ` [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware Gustavo Zacarias
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2012-03-02 18:43 UTC (permalink / raw)
  To: buildroot

ar9271.fw is the old convention for the firmware.
Starting with kernel 3.0 the new convention is htc_9271.fw which is a
newer version of the firmware so symlinking won't do it and there are no
guarantees that the newer firmware will work with the older driver
either.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/linux-firmware/linux-firmware.mk |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/package/linux-firmware/linux-firmware.mk b/package/linux-firmware/linux-firmware.mk
index eedef2f..8d1dd00 100644
--- a/package/linux-firmware/linux-firmware.mk
+++ b/package/linux-firmware/linux-firmware.mk
@@ -23,7 +23,7 @@ LINUX_FIRMWARE_FILES_$(BR2_PACKAGE_LINUX_FIRMWARE_RALINK_RT2XX) += \
 
 # ar9271
 LINUX_FIRMWARE_FILES_$(BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_9271) += \
-	LICENCE.atheros_firmware ar9271.fw
+	LICENCE.atheros_firmware ar9271.fw htc_9271.fw
 
 # wl127x
 LINUX_FIRMWARE_FILES_$(BR2_PACKAGE_LINUX_FIRMWARE_TI_WL127X) += \
-- 
1.7.3.4

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

* [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware
  2012-03-02 18:43 [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271 Gustavo Zacarias
@ 2012-03-02 18:43 ` Gustavo Zacarias
  2012-03-03  3:32   ` Alexandre Pereira da Silva
  2012-03-16 21:36   ` Peter Korsgaard
  2012-03-03  3:31 ` [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271 Alexandre Pereira da Silva
  2012-03-16 21:36 ` Peter Korsgaard
  2 siblings, 2 replies; 6+ messages in thread
From: Gustavo Zacarias @ 2012-03-02 18:43 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
 package/linux-firmware/Config.in         |    5 +++++
 package/linux-firmware/linux-firmware.mk |    4 ++++
 2 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/package/linux-firmware/Config.in b/package/linux-firmware/Config.in
index b15896c..5166800 100644
--- a/package/linux-firmware/Config.in
+++ b/package/linux-firmware/Config.in
@@ -10,6 +10,11 @@ if BR2_PACKAGE_LINUX_FIRMWARE
 
 menu "Atheros"
 
+config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_7010
+	bool "Atheros 7010"
+	help
+	  Firmware files for the Atheros 7010 module
+
 config BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_9271
 	bool "Atheros 9271"
 	help
diff --git a/package/linux-firmware/linux-firmware.mk b/package/linux-firmware/linux-firmware.mk
index 8d1dd00..e09f67d 100644
--- a/package/linux-firmware/linux-firmware.mk
+++ b/package/linux-firmware/linux-firmware.mk
@@ -21,6 +21,10 @@ LINUX_FIRMWARE_FILES_$(BR2_PACKAGE_LINUX_FIRMWARE_RALINK_RT2XX) += \
 	rt2860.bin rt2870.bin rt3070.bin rt3071.bin rt3090.bin 	\
 	LICENCE.ralink-firmware.txt
 
+# ar7010
+LINUX_FIRMWARE_FILES_$(BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_7010) += \
+	LICENCE.atheros_firmware ar7010.fw ar7010_1_1.fw htc_7010.fw
+
 # ar9271
 LINUX_FIRMWARE_FILES_$(BR2_PACKAGE_LINUX_FIRMWARE_ATHEROS_9271) += \
 	LICENCE.atheros_firmware ar9271.fw htc_9271.fw
-- 
1.7.3.4

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

* [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271
  2012-03-02 18:43 [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271 Gustavo Zacarias
  2012-03-02 18:43 ` [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware Gustavo Zacarias
@ 2012-03-03  3:31 ` Alexandre Pereira da Silva
  2012-03-16 21:36 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Alexandre Pereira da Silva @ 2012-03-03  3:31 UTC (permalink / raw)
  To: buildroot

On Fri, Mar 2, 2012 at 3:43 PM, Gustavo Zacarias
<gustavo@zacarias.com.ar> wrote:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>

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

* [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware
  2012-03-02 18:43 ` [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware Gustavo Zacarias
@ 2012-03-03  3:32   ` Alexandre Pereira da Silva
  2012-03-16 21:36   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Alexandre Pereira da Silva @ 2012-03-03  3:32 UTC (permalink / raw)
  To: buildroot

On Fri, Mar 2, 2012 at 3:43 PM, Gustavo Zacarias
<gustavo@zacarias.com.ar> wrote:
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Acked-by: Alexandre Pereira da Silva <aletes.xgr@gmail.com>

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

* [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271
  2012-03-02 18:43 [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271 Gustavo Zacarias
  2012-03-02 18:43 ` [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware Gustavo Zacarias
  2012-03-03  3:31 ` [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271 Alexandre Pereira da Silva
@ 2012-03-16 21:36 ` Peter Korsgaard
  2 siblings, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2012-03-16 21:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> ar9271.fw is the old convention for the firmware.  Starting
 Gustavo> with kernel 3.0 the new convention is htc_9271.fw which is a
 Gustavo> newer version of the firmware so symlinking won't do it and
 Gustavo> there are no guarantees that the newer firmware will work with
 Gustavo> the older driver either.

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware
  2012-03-02 18:43 ` [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware Gustavo Zacarias
  2012-03-03  3:32   ` Alexandre Pereira da Silva
@ 2012-03-16 21:36   ` Peter Korsgaard
  1 sibling, 0 replies; 6+ messages in thread
From: Peter Korsgaard @ 2012-03-16 21:36 UTC (permalink / raw)
  To: buildroot

>>>>> "Gustavo" == Gustavo Zacarias <gustavo@zacarias.com.ar> writes:

 Gustavo> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>

Committed, thanks.

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2012-03-16 21:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-02 18:43 [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271 Gustavo Zacarias
2012-03-02 18:43 ` [Buildroot] [PATCH 2/2] linux-firmware: add ar7010 variant (ath9k_htc driver) firmware Gustavo Zacarias
2012-03-03  3:32   ` Alexandre Pereira da Silva
2012-03-16 21:36   ` Peter Korsgaard
2012-03-03  3:31 ` [Buildroot] [PATCH 1/2] linux-firmware: update definition for atheros ar9271 Alexandre Pereira da Silva
2012-03-16 21:36 ` 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.