summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* kernel: load regmap modules after kmod-lib-lzoflorian2013-03-171-1/+1
| | | | | | | | | Otherwise regmap-core will not be able to lookup the lzo exported symbols. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36069 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ubus: update to latest version, fixes a bug in notify return code handlingnbd2013-03-171-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36068 3c298f89-4303-0410-b956-a3cf2f4a3e73
* au1000: remove support for 3.3. kernelflorian2013-03-174-174/+0
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36067 3c298f89-4303-0410-b956-a3cf2f4a3e73
* au1000: switch to 3.6 kernelflorian2013-03-171-1/+1
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36066 3c298f89-4303-0410-b956-a3cf2f4a3e73
* au1000: keep the MTX-1 watchdog pin low during bootflorian2013-03-171-0/+12
| | | | | | | | | Do this until the watchdog driver is loaded and the user-space watchdog daemon can start pinging the watchdog. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36065 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ep93xx: remove 3.3 kernel supportflorian2013-03-174-1496/+0
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36064 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: use devm_request_and_ioremap in mcs814x-rng driverflorian2013-03-171-8/+1
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36063 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: use devm_request_and_ioremap helper for nuport_mac driverflorian2013-03-171-4/+2
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36062 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: remove PCI codeflorian2013-03-176-484/+1
| | | | | | | | | None of the boards we support are using it nor have it wired out of the SoC, just remove it. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36061 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: implement MULTI_IRQ_HANDLERflorian2013-03-164-25/+24
| | | | | | | | Allows us to get rid of the IRQ entry point assembly Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36060 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: use the standard device tree binding to represent a PHY nodeflorian2013-03-164-3/+38
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36059 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: merge a few minstrel_ht performance improvementsnbd2013-03-161-10/+43
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36056 3c298f89-4303-0410-b956-a3cf2f4a3e73
* busybox: fix disabling /sbin/init and logread if procd is used as initnbd2013-03-161-2/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36054 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: merge a fix for a race condition on station removalnbd2013-03-151-0/+32
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36053 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mpc85xx: add profile and build image for the TL-WDR4900 v1 boardjuhosg2013-03-152-3/+63
| | | | | | | | | Now that the ethernet switch is working, create firmware images to make impatient users happy. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36051 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: start AR8327 switch from the probe routinejuhosg2013-03-151-1/+19
| | | | | | | | | | | | The AR8327 switch gets its configuration from platform data or from the device-tree. This allows to start it from the probe routine. Doing so makes it usable with ethernet drivers which only connects to the PHY device when the ethernet interface is opened. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36050 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: add ar8xxx_start helperjuhosg2013-03-151-11/+23
| | | | | | | | | Move switch starting code into a separate function. This makes it usable from other places. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36049 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mpc85xx: add AR8327 initvals to the TL-WDR4900 devicetreejuhosg2013-03-151-2/+12
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36048 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: add OF configuration support for AR8327juhosg2013-03-151-1/+52
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36047 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: separate platform_data based AR8327 codejuhosg2013-03-151-5/+16
| | | | | | | | | | Move platform_data specific configuration code into a separate routine. Do it in preparation for the upcoming OF support. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36046 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: don't use platform_data in ar8327_init_portjuhosg2013-03-151-5/+16
| | | | | | | | | Fetch the PORT_STATUS values in ar8327_hw_init and store those in a private data stucture for later use. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36045 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: move the ar8327_get_port_init_status functionjuhosg2013-03-151-28/+28
| | | | | | | | It will be used in ar8327_probe routine. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36044 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: simplify and rename ar8327_config_portjuhosg2013-03-151-15/+9
| | | | | | | | | | Return with the PORT_STATUS register value instead of writing that directly into the corresponding register. Also rename the function to ar8327_get_port_init_status. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36043 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: remove superfluous pdata checksjuhosg2013-03-151-2/+2
| | | | | | | | | | The presence of the platform data is already verified in ar8327_hw_init, and the driver does not start without that anyway. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36042 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: add a fix to reduce the number of spurious tx hang detectionsnbd2013-03-151-0/+37
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36040 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: update linux 3.8 to 3.8.3juhosg2013-03-1572-505/+150
| | | | | | | | Also refresh the related generic/platform patches. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36039 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: build images for the TL-MR11U v2juhosg2013-03-151-1/+3
| | | | | | | | | | [juhosg: use different profile name for v1 and v2, and add multi profile to build for both versions] Signed-off-by: Guilhem Lettron <guilhem@lettron.fr> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36038 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: rw2458n - Use eeprom (art) from wifi cardjuhosg2013-03-151-4/+4
| | | | | | | | | Use eeprom (art) from included wifi card, not hard coded in flash. Signed-off-by: Cezary Jackiewicz <cezary.jackiewicz@gmail.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36037 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ar71xx: Error fix in Kernel for MR3420v2 Ethernet Switch configurationjuhosg2013-03-151-4/+2
| | | | | | | | | | | | | | Error in using another MDIO (AP123 platform using only one GE1 device for eth0 and eth1) for the router mr3420v2. ?onfirmed: https://forum.openwrt.org/viewtopic.php?pid=194779#p194779 Routers in this sense are the same and the only difference is: USB port, USB led, instead of the GPIO-switch we have GPIO-button. Signed-off-by: Dmytro <dioptimizer@gmail.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36036 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ath9k: fix issues with disabling rx/tx antennasnbd2013-03-151-1/+54
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36035 3c298f89-4303-0410-b956-a3cf2f4a3e73
* uhttpd: update to latest version, fixes an occasional crash on CGI scriptsnbd2013-03-151-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36034 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [package] uboot-envtools: upgrade to version 2013.01.01luka2013-03-155-220/+15
| | | | | | Signed-off-by: Luka Perkov <luka@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36033 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [procd] fix up the mount options to match what openwrt had before using ↵blogic2013-03-141-2/+2
| | | | | | | | procd as pid 1 Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36032 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [base-files] sysupgrade was broken as procd was getting killedblogic2013-03-141-1/+1
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36031 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] ACMP252: fix USB-enable GPIO and use default PCI configuration for nowblogic2013-03-141-8/+1
| | | | | | | | | | | EEPROM is an actial serial EEPROM on the WiFi module, therefore we can remove ralink_eep from the dts. USB power-enable GPIO turned out to be GPIO #3 (found via probing/brute-force). PCI works with default settings as long as the vendor bootloader is used. Signed-off-by: Daniel Golle <dgolle@allnet.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36030 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] fix buttons on vr9 eval kitblogic2013-03-141-10/+2
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36029 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] select vdsl packages on vr9 boardsblogic2013-03-142-1/+13
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36028 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] fix fritzbox 3370 partitions/memory/cmdlineblogic2013-03-141-5/+5
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36027 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] build jffs images for nand based fritzboxblogic2013-03-141-1/+5
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36026 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] add vdsl firmware loader/cutterblogic2013-03-149-0/+1249
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36025 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] add vdsl mei driverblogic2013-03-142-0/+358
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36024 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] add vdsl driverblogic2013-03-142-0/+217
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36023 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] add vdsl userland appblogic2013-03-144-0/+456
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36022 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] make DEU work with v3.8blogic2013-03-141-3/+3
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36021 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] make lib-ifxos work with v3.8blogic2013-03-141-6/+81
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36020 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] make hcd driver work with v3.8blogic2013-03-142-1/+5
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36019 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] make ptm drivers work with v3.8blogic2013-03-142-2/+2
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36018 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] make atm driver work with v3.8blogic2013-03-141-3/+3
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36017 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] make adsl work with v3.8blogic2013-03-141-0/+152
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36016 3c298f89-4303-0410-b956-a3cf2f4a3e73
* [lantiq] make adsl mei driver work with v3.8blogic2013-03-141-3/+3
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36015 3c298f89-4303-0410-b956-a3cf2f4a3e73