mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 11:57:32 +02:00
b95eb02775
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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29604 3c298f89-4303-0410-b956-a3cf2f4a3e73
32 lines
1.4 KiB
Makefile
32 lines
1.4 KiB
Makefile
#
|
|
# Makefile for the Ralink RT305x SoC specific parts of the kernel
|
|
#
|
|
# Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License version 2 as published
|
|
# by the Free Software Foundation.
|
|
|
|
obj-y := irq.o setup.o devices.o rt305x.o clock.o
|
|
|
|
obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
|
|
|
|
obj-$(CONFIG_RT305X_MACH_ARGUS_ATP52B) += mach-argus-atp52b.o
|
|
obj-$(CONFIG_RT305X_MACH_BC2) += mach-bc2.o
|
|
obj-$(CONFIG_RT305X_MACH_DIR_300_REVB) += mach-dir-300-revb.o
|
|
obj-$(CONFIG_RT305X_MACH_ESR_9753) += mach-esr-9753.o
|
|
obj-$(CONFIG_RT305X_MACH_F5D8235_V2) += mach-f5d8235-v2.o
|
|
obj-$(CONFIG_RT305X_MACH_FONERA20N) += mach-fonera20n.o
|
|
obj-$(CONFIG_RT305X_MACH_HW550_3G) += mach-hw550-3g.o
|
|
obj-$(CONFIG_RT305X_MACH_MOFI3500_3GN) += mach-mofi3500-3gn.o
|
|
obj-$(CONFIG_RT305X_MACH_NBG_419N) += mach-nbg-419n.o
|
|
obj-$(CONFIG_RT305X_MACH_NW718) += mach-nw718.o
|
|
obj-$(CONFIG_RT305X_MACH_OMNI_EMB) += mach-omni-emb.o
|
|
obj-$(CONFIG_RT305X_MACH_PWH2004) += mach-pwh2004.o
|
|
obj-$(CONFIG_RT305X_MACH_RT_G32_REVB) += mach-rt-g32-revb.o
|
|
obj-$(CONFIG_RT305X_MACH_V22RW_2X2) += mach-v22rw-2x2.o
|
|
obj-$(CONFIG_RT305X_MACH_WCR150GN) += mach-wcr150gn.o
|
|
obj-$(CONFIG_RT305X_MACH_WHR_G300N) += mach-whr-g300n.o
|
|
obj-$(CONFIG_RT305X_MACH_WR512_3GN) += mach-wr512-3gn.o
|
|
obj-$(CONFIG_RT305X_MACH_WL351) += mach-wl351.o
|