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
101 lines
1.9 KiB
Bash
Executable file
101 lines
1.9 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
. /etc/functions.sh
|
|
. /lib/ramips.sh
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
if [ ! -x /usr/sbin/maccalc ]; then
|
|
echo "$0: maccalc not found!"
|
|
return
|
|
fi
|
|
|
|
ramips_setup_interfaces()
|
|
{
|
|
local board="$1"
|
|
|
|
ucidef_set_interface_loopback
|
|
|
|
case $board in
|
|
argus-atp52b | \
|
|
b2c | \
|
|
f5d8235-v2 | \
|
|
nw718)
|
|
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"
|
|
ucidef_add_switch_vlan "rtl8366s" "1" "1 2 3 4 5t"
|
|
ucidef_add_switch_vlan "rtl8366s" "2" "0 5t"
|
|
;;
|
|
|
|
*)
|
|
RT3X5X=`cat /proc/cpuinfo | grep RT3.5`
|
|
if [ -n "${RT3X5X}" ]; then
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
else
|
|
ucidef_set_interfaces_lan_wan "eth0" "eth1"
|
|
fi
|
|
;;
|
|
esac
|
|
}
|
|
|
|
ramips_setup_macs()
|
|
{
|
|
local board="$1"
|
|
local lan_mac=""
|
|
local wan_mac=""
|
|
|
|
case $board in
|
|
f5d8235-v2)
|
|
lan_mac=$(ramips_get_mac_nvram "u-boot" 262148)
|
|
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
|
|
;;
|
|
|
|
argus-atp52b | \
|
|
b2c | \
|
|
nw718 | \
|
|
rt-n15 | \
|
|
wl-351)
|
|
lan_mac=$(ramips_get_mac_binary factory 4)
|
|
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
|
|
;;
|
|
|
|
dir-300-b1 |\
|
|
dir-300-b2 |\
|
|
dir-600-b1)
|
|
lan_mac=$(ramips_get_mac_binary devdata 16388)
|
|
wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
|
|
;;
|
|
|
|
esr-9753 | \
|
|
nbg-419n)
|
|
lan_mac=$(ramips_get_mac_binary factory 4)
|
|
wan_mac=$(ramips_get_mac_binary factory 40)
|
|
;;
|
|
esac
|
|
|
|
[ -n $lan_mac ] && ucidef_set_interface_macaddr lan $lan_mac
|
|
[ -n $wan_mac ] && ucidef_set_interface_macaddr wan $wan_mac
|
|
}
|
|
|
|
[ -e /etc/config/network ] && exit 0
|
|
|
|
touch /etc/config/network
|
|
|
|
board=$(ramips_board_name)
|
|
|
|
ramips_setup_interfaces $board
|
|
ramips_setup_macs $board
|
|
|
|
uci commit network
|
|
|
|
exit 0
|