summaryrefslogtreecommitdiffstats
path: root/target/linux/lantiq/base-files
diff options
context:
space:
mode:
authorJohn Crispin <john@openwrt.org>2011-11-12 23:40:16 +0000
committerJohn Crispin <john@openwrt.org>2011-11-12 23:40:16 +0000
commit832e02cd7738b6fa0e82a804b04fd8f44589c66f (patch)
treee1f354feb218606f8536965809b830f017ad2309 /target/linux/lantiq/base-files
parent5dcbbf0160f1a619a1391df6477c2bfc0e92bde1 (diff)
downloadmaster-31e0f0ae-832e02cd7738b6fa0e82a804b04fd8f44589c66f.tar.gz
master-31e0f0ae-832e02cd7738b6fa0e82a804b04fd8f44589c66f.tar.bz2
master-31e0f0ae-832e02cd7738b6fa0e82a804b04fd8f44589c66f.zip
lantiq: add /lib/lantiq.sh and make hotplug handlers use it
SVN-Revision: 29003
Diffstat (limited to 'target/linux/lantiq/base-files')
-rw-r--r--target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom4
-rw-r--r--target/linux/lantiq/base-files/lib/lantiq.sh9
2 files changed, 12 insertions, 1 deletions
diff --git a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
index e2dfc16311..ad5652a7fc 100644
--- a/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
+++ b/target/linux/lantiq/base-files/etc/hotplug.d/firmware/10-rt2x00-eeprom
@@ -24,9 +24,11 @@ rt2x00_eeprom_extract() {
[ -e /lib/firmware/$FIRMWARE ] && exit 0
+. /lib/lantiq.sh
+
case "$FIRMWARE" in
"RT2860.eeprom" )
- local board=$(grep ^machine /proc/cpuinfo | sed "s/machine.*: \(.*\) - .*/\1/g")
+ local board=$(lantiq_board_name)
case $board in
ARV7525PW)
rt2x00_eeprom_extract "board_config" 1040 272
diff --git a/target/linux/lantiq/base-files/lib/lantiq.sh b/target/linux/lantiq/base-files/lib/lantiq.sh
new file mode 100644
index 0000000000..75e8ac272b
--- /dev/null
+++ b/target/linux/lantiq/base-files/lib/lantiq.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+lantiq_soc_name() {
+ grep ^system /proc/cpuinfo | sed "s/system type.*: \(.*\)/\1/g"
+}
+
+lantiq_board_name() {
+ grep ^machine /proc/cpuinfo | sed "s/machine.*: \(.*\)/\1/g" | sed "s/\(.*\) - .*/\1/g"
+}