aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* gpio-button-hotplug: fix active_low handling, possibly broken in r37643Felix Fietkau2013-08-031-8/+9
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37664
* imx23: add missing DTS config for lradcZoltan Herpai2013-08-031-0/+15
| | | | | | Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 37663
* imx23: add hw crypto (dcp) supportZoltan Herpai2013-08-033-0/+1008
| | | | | | Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 37662
* kernel: only add v4l2-compat-ioctl32 when CONFIG_COMPAT is setHauke Mehrtens2013-08-031-2/+2
| | | | SVN-Revision: 37661
* kernel: add missing config optionsHauke Mehrtens2013-08-022-0/+4
| | | | SVN-Revision: 37660
* kernel: add missing module to video-core for kernel < 3.6Hauke Mehrtens2013-08-021-0/+8
| | | | | | Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37659
* kernel: fix usb-chipidea compilation with kernel <= 3.9Hauke Mehrtens2013-08-021-3/+3
| | | | | | Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37658
* kernel: add missing config optionHauke Mehrtens2013-08-021-0/+1
| | | | SVN-Revision: 37657
* kernel: add missing config optionHauke Mehrtens2013-08-024-0/+4
| | | | | | | | brcm47xx does not use CONFIG_B53_SPI_DRIVER, but it could be selected if spi is build as a module Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37656
* broadcom-diag: add support for the ASUS RT-N12Hauke Mehrtens2013-08-021-0/+20
| | | | | | | | | | This adds button and led info, which I determined by manually poking the gpio values. Signed-off-by: Josh Stone <cuviper@gmail.com> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37655
* broadcom-diag: increase version numberHauke Mehrtens2013-08-021-1/+1
| | | | | | There are some changes in there and this should be rebuild. SVN-Revision: 37654
* mac80211: backport a few upstream fixesFelix Fietkau2013-08-022-10/+206
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37653
* kernel: ocf: add missing kernel dependenciesJonas Gorski2013-08-011-0/+3
| | | | | | | | | | | | | | | | | | OCF_CRYPTOSOFT uses both symbols form crypto_hash and crypto_blkcipher, so let it select these through kernel config. Fixes the following build error: ERROR: "crypto_alloc_ahash" [crypto/ocf/cryptosoft.ko] undefined! ERROR: "crypto_ahash_digest" [crypto/ocf/cryptosoft.ko] undefined! ERROR: "crypto_ahash_setkey" [crypto/ocf/cryptosoft.ko] undefined! make[6]: *** [__modpost] Error 1 make[5]: *** [modules] Error 2 Reported-by: Russell Senior <russell@personaltelco.net> Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 37652
* kernel: load libphy before tg3Hauke Mehrtens2013-08-011-1/+1
| | | | SVN-Revision: 37651
* brcm47xx: switch to kernel 3.10.4Hauke Mehrtens2013-08-011-1/+1
| | | | | | | | | This uses a new switch driver. The old ADMTEK Adm6996 switch is not supported any more. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37650
* brcm47xx: use lib phy when tg3 is in useHauke Mehrtens2013-08-011-0/+14
| | | | | | | | This is untested, but probably needed to make it work with the phy lib switch driver. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37649
* kernel: b53: use devm_gpio_request_one() to request gpioHauke Mehrtens2013-08-011-3/+4
| | | | | | Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37648
* brcm47xx: improve detection of Linksys WRTSL54GSHauke Mehrtens2013-08-013-7/+32
| | | | | | | | This closes #13319 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37647
* brcm47xx: remove support for kernel 3.9Hauke Mehrtens2013-08-0129-3348/+0
| | | | | | This is not needed any more. SVN-Revision: 37646
* kernel: b53: add support for GPIO resetHauke Mehrtens2013-08-012-0/+43
| | | | | | | | This is needed for some switches used on bcm47xx SoCs like the one on the Asus RT-N66U. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37645
* brcm47xx: add function to get a gpio pin by nameHauke Mehrtens2013-08-013-3/+38
| | | | | | | | | bcm47xx_nvram_gpio_pin() returns a gpio pin number for a given name based on configuration data in nvram. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37644
* gpio-button-hotplug: use gpio_button_get_value() to initialize last_state.John Crispin2013-08-011-1/+1
| | | | | | | | | | | TL-WR720N-v3 has a slider switch composed of 2 GPIO buttons which can be used to swtich between 3 positions. At leat 1 button is in pressed state in any of those positions. Initialize 'last_state' as 0 (released) will cause the device to automatically enter failsafe mode on every bootup. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> SVN-Revision: 37643
* gpio-button-hotplug: use gpio_button_get_value() to fetch state.John Crispin2013-08-011-4/+1
| | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> SVN-Revision: 37642
* gpio-button-hotplug: add inline function gpio_button_get_value().John Crispin2013-08-011-0/+9
| | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> SVN-Revision: 37641
* ramips: add Poray IP2202 supportJohn Crispin2013-08-018-0/+121
| | | | | | Signed-off-by: Felix Kaechele <heffer@fedoraproject.org> SVN-Revision: 37640
* ramips: add Poray X8 supportJohn Crispin2013-08-018-3/+125
| | | | | | Signed-off-by: Felix Kaechele <heffer@fedoraproject.org> SVN-Revision: 37639
* ramips: add Poray X5/X6 SupportJohn Crispin2013-08-018-3/+158
| | | | | | Signed-off-by: Felix Kaechele <heffer@fedoraproject.org> SVN-Revision: 37638
* ramips: add Poray M4 4M/8M supportJohn Crispin2013-08-019-2/+222
| | | | | | Signed-off-by: Felix Kaechele <heffer@fedoraproject.org> SVN-Revision: 37637
* ramips: add Poray M3 supportJohn Crispin2013-08-018-0/+136
| | | | | | Signed-off-by: Felix Kaechele <heffer@fedoraproject.org> SVN-Revision: 37636
* ramips: add basics for Poray devicesJohn Crispin2013-08-014-0/+797
| | | | | | | | | | | | | | | | This commit adds the basic elements to support Poray brand routers. It contains a tool to do the encryption/obfuscation that is used in Poray routers. Support for Poray devices was worked on by: Felix Kaechele <heffer@fedoraproject.org> Luis Soltero <lsoltero@globalmarinenet.com> Michel Stempin <michel.stempin@wanadoo.fr> Signed-off-by: Felix Kaechele <heffer@fedoraproject.org> SVN-Revision: 37635
* lantiq: fix VG3503J ethernet/gphy led supportJohn Crispin2013-08-013-46/+18
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37634
* ralink: add mt7620a_mt7610e profileJohn Crispin2013-08-012-0/+2
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37633
* imx23: add lradc supportZoltan Herpai2013-08-013-3/+31
| | | | | | Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 37632
* kernel: add missing iio config symbols for 3.10Zoltan Herpai2013-08-011-0/+83
| | | | | | Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 37631
* libubox: update to the latest version, fixes a fd deletion race condition in ↵Felix Fietkau2013-07-311-2/+2
| | | | | | | | uloop Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37629
* uhttpd: update to the latest version, fixes a crash on early cgi/lua process ↵Felix Fietkau2013-07-311-2/+2
| | | | | | | | termination Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37628
* base-files: implement -l (--list-backup) sysupgrade parameter to list the ↵Jo-Philipp Wich2013-07-312-1/+15
| | | | | | files that would be backed up SVN-Revision: 37627
* broadcom-wl: fix compile error with kernel 3.10Hauke Mehrtens2013-07-312-2/+49
| | | | | | Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37626
* brcm47xx: run mtd fixtrx linux every timeHauke Mehrtens2013-07-311-8/+1
| | | | | | | | With this patch it is possible to boot a device with kernel 3.10 a second time. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> SVN-Revision: 37625
* base-files: abort sysupgrade if file specified with --restore-config is not ↵Jo-Philipp Wich2013-07-312-2/+7
| | | | | | found SVN-Revision: 37624
* ubox: update to git headJo-Philipp Wich2013-07-311-2/+2
| | | | | | - fixes extroot tag file corruption with long uuids SVN-Revision: 37623
* imx23: add SoC sound supportZoltan Herpai2013-07-314-1/+2931
| | | | | | Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 37622
* gcc: merge a bugfix for a MIPS specific internal compiler errorFelix Fietkau2013-07-312-0/+130
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37621
* base-files: implement -T (--test) sysupgrade parameter to verify image ↵Jo-Philipp Wich2013-07-302-2/+10
| | | | | | without actually flashing it SVN-Revision: 37620
* kernel: update remaning platforms accidentally left out of r37617Felix Fietkau2013-07-3010-10/+10
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37619
* mac80211: rt2x00: add missing of.h headerFelix Fietkau2013-07-291-1/+9
| | | | | | Signed-off-by: Felix Kaechele <heffer@fedoraproject.org> SVN-Revision: 37618
* kernel: update to linux 3.10.4, refresh patchesFelix Fietkau2013-07-2925-70/+67
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37617
* ath9k: fix several issues in the tx queueing reworkFelix Fietkau2013-07-2911-107/+225
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 37616
* lantiq: setup gphy leds on TPlink TDW8970John Crispin2013-07-291-8/+7
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37612
* lantiq: add gphy pinmux definitionsJohn Crispin2013-07-291-0/+88
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 37611