summaryrefslogtreecommitdiffstats
path: root/target
Commit message (Collapse)AuthorAgeFilesLines
* ar7: drop obsolete 3.6 supportJonas Gorski2013-05-2016-1762/+0
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36673
* ar7: switch to 3.9Jonas Gorski2013-05-203-4/+1
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36672
* ar7: add support for 3.9Jonas Gorski2013-05-2016-0/+1755
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36671
* kernel: add some missing symbols/move them to genericJonas Gorski2013-05-203-3/+7
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36670
* brcm2708: make it boot on revision 2 raspberry pisJonas Gorski2013-05-202-9/+924
| | | | | | | | | | | | | | * update the bootcode.bin to the newest version - gpu/cpu mem split is now configured through config.txt, so no need to create more than one sd card image (just edit the config.txt) - bootcode.bin now supports the never revision 2 raspberry pis * add a commented prepopulated config.txt for easier config changes Taken from <https://github.com/Evilpaul/RPi-config> Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36668
* kernel: generic: add 3.10-rc1 supportJonas Gorski2013-05-19165-0/+31689
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36663
* bcm63xx: add 3.9 supportJonas Gorski2013-05-19133-0/+15025
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36660
* bcm63xx: Simplify CFE detection.Jonas Gorski2013-05-196-22/+78
| | | | | | | | | | | Check bootloader argument in mtd. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> [jogo@openwrt.org: split into two patches, one for detection, one letting bcm63xxpart use it.] Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36659
* kernel: update 3.9 to 3.9.2Jonas Gorski2013-05-191-1/+1
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36658
* kernel: don't remove of_tablesJonas Gorski2013-05-191-0/+33
| | | | | | | | These are needed for OF setup of clocksource, clocks and irqchips. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36657
* ar71xx: remove the xfrm.h chunk from the unaligned access hacks, it breaks ipsecFelix Fietkau2013-05-171-11/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36646
* ar71xx: add hard_cfg offset detection for rb2011 support - fixes wlan on ↵Felix Fietkau2013-05-133-7/+51
| | | | | | | | some newer devices Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36631
* kernel: add missing PHY ID for an AR8327 switch variantFelix Fietkau2013-05-131-0/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36630
* build: add config symbols for different ARM arch levelsFelix Fietkau2013-05-131-0/+12
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36620
* kernel: move CONFIG_MIPS_SEAD3 to genericJonas Gorski2013-05-1216-13/+3
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36617
* bcm63xx: don't build CRAMFSJonas Gorski2013-05-121-1/+0
| | | | | | | | | | | | Don't build the CRAMFS file system module in the kernel, and save some bytes. No bcm63xx board needs this obsolete file system, neither those ones using the Redboot bootloader (liveboxes). Thus, there is no need to build it, since it has been replaced long time ago by squashfs. Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com> SVN-Revision: 36616
* led and buttons support for board DWV-S0Jonas Gorski2013-05-122-2/+99
| | | | | | | | Signed-off-by: Gianluca Agliozzo <gianluca05@hotmail.it> [jogo@openwrt.org: fixup patch so it actually applies] Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36615
* bcm63xx: remove defconfig supportJonas Gorski2013-05-121-18/+0
| | | | | | All boards use uci-defaults, no need to keep defconfig support. SVN-Revision: 36610
* kernel: fix CVE-2013-1763 in older kernelsJonas Gorski2013-05-122-0/+54
| | | | | | | | Newer kernels were already fixed by upstream. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36607
* ar71xx: set mips16 support, tune cflags for 34kc (works well on MIPS 24K as ↵Felix Fietkau2013-05-091-2/+2
| | | | | | | | well, but helps a lot for 34K and 74K) Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36600
* kernel: make zlib and lzo modules selectableJonas Gorski2013-05-095-0/+115
| | | | | | | | Fixes building kmod-lib-zlib and kmod-lib-lzo if nothing depends on them. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36592
* kernel: b53: use correct oops for bcm5365 switchHauke Mehrtens2013-05-091-1/+1
| | | | SVN-Revision: 36589
* kernel: allow building zsmalloc as a module againJonas Gorski2013-05-092-0/+18
| | | | | | | | | | | zsmalloc was changed to a bool because of missing exports in the kernel, but we already export the required symbol, so change it back to tristate. Closes #13481. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36587
* ar71xx: use combined kernel image in the CameoHornet templateGabor Juhos2013-05-081-6/+5
| | | | | | | | | | This allow us to increase the kernel partition size, and ensures, that the -factory image still usable via the original interface. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36584
* ar71xx: add profile and build image for the RNX-N360RT boardGabor Juhos2013-05-082-0/+17
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36582
* ar71xx: add user-space model detection for the RNX-N360RT boardGabor Juhos2013-05-081-1/+16
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36581
* ar71xx: add profile and build image for Netgear WNDAP360Gabor Juhos2013-05-082-0/+14
| | | | | | | | | | [juhosg: this has been created from the following patch: http://patchwork.openwrt.org/patch/3620/ ] Signed-off-by: Jacek Kikiewicz <jaceq@aol.pl> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36580
* ar71xx: add user-space support for Netgear WNDAP360Gabor Juhos2013-05-085-0/+12
| | | | | | | | | | [juhosg: this has been created from the following patch: http://patchwork.openwrt.org/patch/3620/ ] Signed-off-by: Jacek Kikiewicz <jaceq@aol.pl> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36579
* ar71xx: add kernel support for Netgear WNDAP360Gabor Juhos2013-05-083-0/+150
| | | | | | | | | | | | Here is corrected version (only thing not working are wifi LEDs). [juhosg: this has been created from the following patch: http://patchwork.openwrt.org/patch/3620/ ] Signed-off-by: Jacek Kikiewicz <jaceq@aol.pl> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36578
* kernel: update linux 3.9 to 3.9.1Gabor Juhos2013-05-083-3/+3
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36577
* kernel: update linux 3.8 to 3.8.12Gabor Juhos2013-05-0834-176/+114
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36576
* ar71xx: Fix AP135 partition layoutGabor Juhos2013-05-081-2/+2
| | | | | | | Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36575
* lantiq: enable portmaps again and set max port to 2John Crispin2013-05-071-2/+2
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36573
* ramips: drop 3.7 supportJohn Crispin2013-05-07159-40087/+0
| | | | | | Signed-off-by; John Crispin <blogic@openwrt.org> SVN-Revision: 36572
* ramips: properly setup the FEATURES variableJohn Crispin2013-05-072-1/+2
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36571
* ramips: fix memory detection rt5350John Crispin2013-05-061-1/+1
| | | | | | Signed-off-by: Felix Kaechele <felix@fetzig.org> SVN-Revision: 36568
* ramips: enable dsp extensions for rt305x and rt3883John Crispin2013-05-062-2/+3
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36567
* ramips: fix fypo in ethernet driver rt288x, rt3883John Crispin2013-05-061-24/+44
| | | | | | Signed-off-by: Serge Vasilugin <vasilugin@yandex.ru> SVN-Revision: 36565
* ramips: Update ARC Freestation profileJohn Crispin2013-05-063-4/+45
| | | | | | | | | | | | | | | | | | | | | | | | These devices are actually built around the 8devices Carambola dev board. ARC FreeStation, Flex mARC, iFlex, and SplitStation devices are supported with this image, see "ARCFlex Firmware Downloads": http://www.antennas.com/wiki/index.php?title=ARC-OS_Firmware_Downloads_and_Revision_History Funnily enough if present the external USB wlan ends up being wlan-0, with the SoC device being wlan-1. - Invert port map so special handling of vlan config can be removed. - Add LED config similar to original ArcOS firmware. - Add GPIO export for enabling PoE passthrough from ethernet port 0 to port 1 - Get MACs from factory partition. - Update description to list supported devices. - Carambola uses RT3050 (not RT3052), though my Carambola CPU actually reports itself as being an RT3350 while still having RT3050F markings. Signed-off-by: Tobias Diedrich <ranma+openwrt@tdiedrich.de> SVN-Revision: 36564
* ramips: Support setting active_low in devicetree gpio-exportJohn Crispin2013-05-061-26/+63
| | | | | | | | Support setting active_low in devicetree gpio-export. Signed-off-by: Tobias Diedrich <ranma+openwrt@tdiedrich.de> SVN-Revision: 36563
* ralink: unbreak uart pinmux handlingJohn Crispin2013-05-061-8/+8
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36562
* ramips: fix gpio base numberingJohn Crispin2013-05-061-16/+32
| | | | | | | | make banks 0 based to unbreak userland ABI Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36561
* ramips: add gpio base properties to dtsi filesJohn Crispin2013-05-066-0/+20
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36560
* ramips: unbreak rt2880 supportJohn Crispin2013-05-066-19/+336
| | | | | | Signed-off-by: John Crsipin <blogic@openwrt.org> SVN-Revision: 36559
* ramips: fix DIR-602D1 flash sizeJohn Crispin2013-05-061-1/+1
| | | | | | | | Fix DIR-620D1 flash size. Signed-off-by: Serge Vasilugin <vasilugin@yandex.ru> SVN-Revision: 36558
* ramips: unbreak gpio handling for uart mux groupJohn Crispin2013-05-041-24/+33
| | | | | | | | this should fix the handling of corner cases Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 36543
* at91: build .dtb file for the CalAmp LMU500 boardGabor Juhos2013-05-031-0/+10
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36542
* ar71xx: Fix AP135 PCIGabor Juhos2013-05-031-6/+18
| | | | | | | | | AP135 has a pluggable PCIE slot unlike AP136. Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com> Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 36541
* ar71xx: add an external reset callback for ar913x and use it in ath9k - ↵Felix Fietkau2013-05-035-5/+36
| | | | | | | | should reduce the frequency of DMA stop failures Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36530
* kernel: do not strip /proc/net/ip_mr_* in the /proc debloat patch, it is ↵Felix Fietkau2013-05-024-52/+0
| | | | | | | | used by iproute2 Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36529