Skip to content
Snippets Groups Projects
Commit 832e02cd authored by John Crispin's avatar John Crispin
Browse files

lantiq: add /lib/lantiq.sh and make hotplug handlers use it

SVN-Revision: 29003
parent 5dcbbf01
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
#!/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"
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment