diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-23 14:27:16 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-23 14:27:16 +0000 |
commit | 7b1e525b56743a96c52cb25a6a12cbe7f5d58995 (patch) | |
tree | 1b0ad8600955e01020d2e0f3351f7685552fd30a /target/linux/ramips/base-files | |
parent | 2cb946f5b4ebb720739b4dbb80c7821843f22ee5 (diff) | |
download | upstream-7b1e525b56743a96c52cb25a6a12cbe7f5d58995.tar.gz upstream-7b1e525b56743a96c52cb25a6a12cbe7f5d58995.tar.bz2 upstream-7b1e525b56743a96c52cb25a6a12cbe7f5d58995.zip |
ramips: initial support for Sitecom WL-351 v1 002
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
Diffstat (limited to 'target/linux/ramips/base-files')
4 files changed, 16 insertions, 1 deletions
diff --git a/target/linux/ramips/base-files/etc/diag.sh b/target/linux/ramips/base-files/etc/diag.sh index a150cc26d8..edb8376cdd 100755 --- a/target/linux/ramips/base-files/etc/diag.sh +++ b/target/linux/ramips/base-files/etc/diag.sh @@ -66,6 +66,9 @@ get_status_led() { whr-g300n) status_led="whr-g300n:green:router" ;; + wl-351) + status_led="wl-351:amber:power" + ;; esac } 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 fa6607fd7f..a1d4887ecb 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 @@ -59,6 +59,7 @@ case "$FIRMWARE" in v22rw-2x2 | \ wcr-150gn | \ whr-g300n | \ + wl-351 | \ wr512-3gn) rt2x00_eeprom_extract "factory" 0 272 ;; diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index bb1d90ef48..60dd716080 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -23,6 +23,13 @@ ramips_setup_interfaces() ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" ;; + wl-351) + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "rtl8366rb" "1" "1" + ucidef_add_switch_vlan "rtl8366rb" "1" "0 1 2 3 5t" + ucidef_add_switch_vlan "rtl8366rb" "2" "4 5t" + ;; + rt-n15) ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" ucidef_add_switch "rtl8366s" "1" "1" @@ -56,7 +63,8 @@ ramips_setup_macs() argus-atp52b | \ b2c | \ nw718 | \ - rt-n15) + rt-n15 | \ + wl-351) lan_mac=$(ramips_get_mac_binary factory 4) wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1) ;; diff --git a/target/linux/ramips/base-files/lib/ramips.sh b/target/linux/ramips/base-files/lib/ramips.sh index faed42162c..4dc10aeb22 100755 --- a/target/linux/ramips/base-files/lib/ramips.sh +++ b/target/linux/ramips/base-files/lib/ramips.sh @@ -104,6 +104,9 @@ ramips_board_name() { *"WHR-G300N") name="whr-g300n" ;; + *"Sitecom WL-351 v1 002") + name="wl-351" + ;; *"WZR-AGL300NH") name="wzr-agl300nh" ;; |