7b1e525b56
This add support for the Sitecom WL-351 v1 002. In principle the Engenius ESR9850 should also work with this, but I don't have the hardware to test it. Since an external gigabit switch (RTL8366RB) is used, I had to modify the ramips_esw driver to add a 'bypass' mode, which just configures it to not filter the vlan tags. Also two initialization words (FCT2 and FPA2) are set to different values by u-boot than what the driver is using and it only seems to work correctly when they not overridden by the driver, so I added them to the platform specific data as reg_initval_fct2 and reg_initval_fpa2. With this wired lan works as expected, however I'm still having some trouble with the wireless lan: It only works after I rmmod & re-insmod rt2800pci and then reconfigure it in the webinterface, but not directly after rebooting. The symptom of this is wpad saying: Dec 20 15:45:09 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> IEEE 802.11: associated (aid 1) Dec 20 15:45:09 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> WPA: pairwise key handshake completed (RSN) Dec 20 15:45:22 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> IEEE 802.11: authenticated But wpa_supplicant on the client saying: Authentication with <wl351mac> timed out. Signed-off-by: Tobias Diedrich <ranma+openwrt@tdiedrich.de> SVN-Revision: 29604
72 lines
1.1 KiB
Bash
72 lines
1.1 KiB
Bash
#!/bin/sh
|
|
|
|
rt2x00_eeprom_die() {
|
|
echo "rt2x00 eeprom: " "$*"
|
|
exit 1
|
|
}
|
|
|
|
rt2x00_eeprom_extract() {
|
|
local part=$1
|
|
local offset=$2
|
|
local count=$3
|
|
local mtd
|
|
|
|
. /etc/functions.sh
|
|
|
|
mtd=$(find_mtd_part $part)
|
|
[ -n "$mtd" ] || \
|
|
rt2x00_eeprom_die "no mtd device found for partition $part"
|
|
|
|
dd if=$mtd of=/lib/firmware/$FIRMWARE bs=1 skip=$offset count=$count || \
|
|
rt2x00_eeprom_die "failed to extract from $mtd"
|
|
}
|
|
|
|
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
|
|
|
case "$FIRMWARE" in
|
|
"RT288X.eeprom" | \
|
|
"RT305X.eeprom")
|
|
. /lib/ramips.sh
|
|
|
|
local board=$(ramips_board_name)
|
|
|
|
case $board in
|
|
dir-300-b1 | \
|
|
dir-600-b1 | \
|
|
dir-600-b2)
|
|
rt2x00_eeprom_extract "devdata" 16384 272
|
|
;;
|
|
|
|
rt-g32-b1)
|
|
rt2x00_eeprom_extract "devconf" 0 272
|
|
;;
|
|
|
|
f5d8235-v2)
|
|
rt2x00_eeprom_extract "u-boot" 262144 272
|
|
;;
|
|
|
|
argus-atp52b | \
|
|
bc2 | \
|
|
esr-9753 | \
|
|
fonera20n | \
|
|
hw550-3g | \
|
|
mofi3500-3gn | \
|
|
pwh2004 | \
|
|
nbg-419n | \
|
|
nw718 | \
|
|
omni-emb | \
|
|
rt-n15 | \
|
|
v22rw-2x2 | \
|
|
wcr-150gn | \
|
|
whr-g300n | \
|
|
wl-351 | \
|
|
wr512-3gn)
|
|
rt2x00_eeprom_extract "factory" 0 272
|
|
;;
|
|
|
|
*)
|
|
rt2x00_eeprom_die "board $board is not supported yet"
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|