summaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-02-14 17:32:45 +0000
committerjuhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-02-14 17:32:45 +0000
commitd54a0c39e1bc0643e9e0a476c9da4a2a2b7c47ca (patch)
tree2e0f3fed2f6b1d420814452d42c7104bb240a8b9 /target
parent073aa05f36505cd75acdec1dba52450f402994d7 (diff)
ramips: extract eeprom for the PCIe wlan module on the RT-N56U
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30529 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r--target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom16
1 files changed, 12 insertions, 4 deletions
diff --git a/target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom b/target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
index ace012acc..65b2cd39c 100644
--- a/target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
+++ b/target/linux/ramips/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
@@ -23,13 +23,13 @@ rt2x00_eeprom_extract() {
[ -e /lib/firmware/$FIRMWARE ] && exit 0
+. /lib/ramips.sh
+
+board=$(ramips_board_name)
+
case "$FIRMWARE" in
"RT288X.eeprom" | \
"RT305X.eeprom")
- . /lib/ramips.sh
-
- local board=$(ramips_board_name)
-
case $board in
dir-300-b1 | \
dir-600-b1 | \
@@ -78,4 +78,12 @@ case "$FIRMWARE" in
;;
esac
;;
+
+"rt2x00pci_1_0.eeprom")
+ case $board in
+ rt-n56u)
+ rt2x00_eeprom_extract "factory" 32768 272
+ ;;
+ esac
+ ;;
esac