aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* uboot-sunxi: fix default config for OLIMEX A13 SOM (FS#239)Jo-Philipp Wich2016-11-2320-134/+58
| | | | | | | | | | | | | | | | | | The current uboot default config for the A13 SOM erroneously enables support for the AXP209 power regulator IC which is not present on the board. This superfluous support module sets an incorrect initial clock frequency and confuses the kernel, ultimately leading to a boot failure later on. Properly disable the PMIC support and enable the EHCI support by translating the deprecated SYS_EXTRA_OPTIONS values into proper SUNXI_NO_PMIC and USB_EHCI_HCD symbols respectively. Also rename 002-add-olimex-a13-som.diff to 002-add-olimex-a13-som.patch and refresh the remaining patches of the series while we're at it. Reported-by: Mario Fischer <mario-fischer@web.de> Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* mvebu: bugfixes for rangoImre Kaloz2016-10-183-9/+13
| | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
* mwlwifi: install the 88W8964 firmware, tooImre Kaloz2016-10-161-1/+2
| | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
* mvebu: add support for the Linksys WRT3200ACM (Rango)Imre Kaloz2016-10-1312-10/+497
| | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
* mwlwifi: upgrade to 10.3.2.0-20161013Imre Kaloz2016-10-131-2/+2
| | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
* hostapd: add interoperability workaround for 80+80 and 160 MHz channelsImre Kaloz2016-10-131-0/+48
| | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
* Merge pull request #127 from wigyori/legacy-revertZoltan Herpai2016-10-1238-125/+160
|\ | | | | Revert legacy kernels (3.18/4.1) to last known-good release
| * Revert "kernel: bump 4.1 to 4.1.30"Zoltan HERPAI2016-10-1221-70/+96
| | | | | | | | | | | | Stay on 4.1.27 This reverts commit 231ef70f455fcc230a400af90a13e181a2c261cd.
| * Revert "kernel: bump 3.18 to 3.18.39"Zoltan HERPAI2016-10-1218-55/+64
| | | | | | | | | | | | Stay on 3.18.36 This reverts commit 83767cf94f909f5932540da7641a12b7dfa71d85.
* | Merge pull request #126 from wigyori/masterZoltan Herpai2016-10-123-7/+7
|\| | | | | ar71xx: backport flow-control related patches
| * ar71xx: disable flow control to the built-in switch on AR934xFelix Fietkau2016-10-111-1/+0
| | | | | | | | | | | | | | It apparently causes a regression on some devices if the ethernet cable is plugged in while booting. Signed-off-by: Felix Fietkau <nbd@nbd.name>
| * ar71xx: disable pdata->use_flow_control for QCA9558Felix Fietkau2016-10-111-1/+0
| | | | | | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
| * ar71xx: rename ethernet pdata->builtin_switch to use_flow_controlFelix Fietkau2016-10-113-8/+8
| | | | | | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
| * ar71xx: enable flow control for ethernet MACs with built-in switchFelix Fietkau2016-10-113-1/+11
| | | | | | | | | | | | | | | | Should fix LAN speed issues on some devices. This is an updated version of the previously reverted commit with the same name. It improves the check for MACs connected to a built-in switch Signed-off-by: Felix Fietkau <nbd@nbd.name>
| * Revert "ar71xx: enable flow control for ethernet MACs with built-in switch"Zoltan HERPAI2016-10-111-9/+1
|/ | | | | | | | This reverts commit fca52fb7f382d25307d8633d1ed171f79989f65d. It was found to cause the WAN port to fail on some AR934x devices Signed-off-by: Felix Fietkau <nbd@nbd.name>
* Merge pull request #123 from sartura/master-upstream-relocationLuka Perkov2016-10-113-10/+10
|\ | | | | odhcp* and omcproxy upstream relocation
| * omcproxy: update to git HEADHrvoje Varga2016-10-111-3/+3
| | | | | | | | | | | | | | This change also reflect relocation of upstream project which has been moved to OpenWrt GitHub organization. Signed-off-by: Hrvoje Varga <hrvoje.varga@sartura.hr>
| * odhcpd: update to git HEADHrvoje Varga2016-10-111-4/+4
| | | | | | | | | | | | | | This change also reflect relocation of upstream project which has been moved to OpenWrt GitHub organization. Signed-off-by: Hrvoje Varga <hrvoje.varga@sartura.hr>
| * odhcp6c: update to git HEADHrvoje Varga2016-10-111-3/+3
|/ | | | | | | This change also reflect relocation of upstream project which has been moved to OpenWrt GitHub organization. Signed-off-by: Hrvoje Varga <hrvoje.varga@sartura.hr>
* Merge pull request #121 from NeoRaider/build-pathsLuka Perkov2016-10-092-3/+6
|\ | | | | include: improve consistency of PATH etc. in host and target package builds
| * include/package-ipkg.mk: use TARGET_PATH_PKG in Package/*/install stepsMatthias Schiffer2016-10-061-0/+2
| | | | | | | | | | | | | | Package/*/install was using a different PATH than all other steps like Build/Install, which was confusing and easily led to mistakes. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
| * include/host-build.mk: set Host/Exports for Host/Install stepMatthias Schiffer2016-10-061-0/+1
| | | | | | | | | | | | | | | | | | Having a different PATH in Host/Install than in other steps like Host/Build is confusing and easily leads to mistakes. Setting all of Host/Exports makes host builds match target builds (Build/Install is part of $(STAMP_BUILT), which has Build/Exports set). Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
| * include/host-build.mk: fix ACLOCAL_INCLUDEMatthias Schiffer2016-10-061-1/+1
| | | | | | | | | | | | | | | | It seems the intention was to add both $(STAGING_DIR_HOST)/... and $(STAGING_DIR)/host/... instead of passing $(STAGING_DIR_HOST) twice. This makes the definition match HOST_CPPFLAGS and HOST_LDFLAGS. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
| * include/host-build.mk: pass HOST_BUILD_PREFIX to Host/installMatthias Schiffer2016-10-061-2/+2
| | | | | | | | | | | | | | Makes it more consistent with package builds. Based-on-patch-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
* | Merge pull request #120 from sartura/iptables-add-CHECKSUMLuka Perkov2016-10-093-0/+31
|\ \ | |/ |/| netfilter,iptables: add optional CHECKSUM module
| * netfilter,iptables: add optional CHECKSUM moduleDenis Osvald2016-10-073-0/+31
|/ | | | Signed-off-by: Denis Osvald <denis.osvald@sartura.hr>
* Merge pull request #114 from wigyori/masterZoltan Herpai2016-10-0543-12790/+3
|\ | | | | gemini: bump to 4.4
| * gemini: rename config-default to config-4.4Signed-off-by: Stijn Tintel2016-10-051-0/+0
| | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * gemini: rename patches directory to patches-4.4Signed-off-by: Stijn Tintel2016-10-0513-0/+0
| | | | | | | | Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| * gemini: delete 3.18 supportFelix Fietkau2016-10-0515-6045/+0
| | | | | | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
| * gemini: drop Linux 4.1 supportJo-Philipp Wich2016-10-0542-6745/+3
| | | | | | | | Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | Merge pull request #100 from wigyori/masterZoltan Herpai2016-09-295-6/+6
|\| | | | | brcm63xx fixes
| * brcm63xx: fix CT-536p/CT-5621T supportSigned-off-by: Daniel Gonzalez2016-09-282-2/+2
| | | | | | | | | | | | | | | | | | | | | | Fix support for the Comtrend CT-536+, CT-5361 and CT-5621T routers support. Currently the firmware is broken for these routers, because there is a missing bar in the code at the DTS file avoiding to match with DTS stuff at the kernel. This causes the router boots without ethernet connectivity. The status led also has a typo. Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com> Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
| * brcm63xx: fix HG556a C buttonSigned-off-by: Daniel Gonzalez2016-09-281-1/+1
| | | | | | | | | | | | | | One button of the HG556a-C has the wrong GPIO pin defined in the dts file, fix it Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com>
| * brcm63xx: fix image generation with offsets/blocksizes != 64KJonas Gorski2016-09-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | Defer the CFE_EXTRAs evaluation to allow overriden BLOCK_SIZE and IMAGE_OFFSET take effect, and replace the unused IMAGE_SIZE with IMAGE_OFFSET in DEVICE_VARS. This fixes image generation for targets using different offsets or blocksizes. Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
| * brcm63xx: fix CVG834G compatible stringJonas Gorski2016-09-281-1/+1
| | | | | | | | | | | | | | The CVG834G claimed to be a BCM6348, but is actually BCM3368. Since we don't test against it, this was harmless. Signed-off-by: Jonas Gorski <jonas.gorski@gmail.com>
* | Merge pull request #97 from wigyori/masterZoltan Herpai2016-09-266-19/+19
|\| | | | | openssl: update to 1.0.2j
| * openssl: update to 1.0.2jZoltan HERPAI2016-09-266-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Security fixes: * (Severity: High) OCSP Status Request extension unbounded memory growth (CVE-2016-6304) * (Severity: Moderate) SSL_peek() hang on empty record (CVE-2016-6305) * (Severity: Moderate) Missing CRL sanity check (CVE-2016-7052) * 10 Low severity issues Security advisories: https://www.openssl.org/news/secadv/20160922.txt https://www.openssl.org/news/secadv/20160926.txt Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
* | Merge pull request #90 from wigyori/masterZoltan Herpai2016-09-216-81/+13
|\| | | | | xtables-addons update, drop sched_getcpu from perf
| * strace: bump to 4.13Ralph Sennhauser2016-09-211-3/+3
| | | | | | | | | | | | Fixes broken btrfs support in 4.12 Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
| * perf: disable libcrypto dependencyDirk Neukirchen2016-09-201-0/+1
| | | | | | | | | | | | | | upstream change: 8ee4646038e47d065d35703e3e343136c4cd42aa fixes dependency w. Kernel 4.6 Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
| * perf: drop sched_getcpu wrapperRalph Sennhauser2016-09-071-17/+0
| | | | | | | | | | | | Current musl already provides sched_getcpu Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
| * xtables-addons: add missing dependencyFelix Fietkau2016-09-071-1/+1
| | | | | | | | Signed-off-by: Felix Fietkau <nbd@nbd.name>
| * xtables-addons: update to 2.11Dirk Neukirchen2016-09-073-60/+8
| | | | | | | | | | | | | | | | | | | | | | | | - fix compilation w. Kernel 4.6 due to hash->shash crypto API - remove a patch integrated upstream - remove unrecognized configure option removed upstream in 2010 commit 40d0345f1ed02de183b13a6ce38847bc1f4ac48e Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
* | Merge pull request #75 from hnyman/fix-ncursesZoltan Herpai2016-08-301-0/+1
|\ \ | |/ |/| Fix discrepancy between git.openwrt.org and github by importing the missing commit for ncurses
| * ncurses: install a dummy libtinfo.a for packages that try to link itnbd2016-08-271-0/+1
|/ | | | | | Signed-off-by: Felix Fietkau <nbd@nbd.name> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@49373 3c298f89-4303-0410-b956-a3cf2f4a3e73
* Merge pull request #72 from szogi/masterZoltan Herpai2016-08-246-3747/+72
|\ | | | | musl: update musl to version 1.1.15, remove sh3 workaround
| * musl: update musl to version 1.1.15Hauke Mehrtens2016-08-246-3741/+72
| | | | | | | | | | | | | | The removed patch is already integrated in upstream musl. Add one additional patch which fixes a regression on mips. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| * musl: remove sh3 workaroundHauke Mehrtens2016-08-241-6/+0
|/ | | | | | The GCC bug 67260 is fixed upstream now, remove this workaround. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
* Merge pull request #69 from wigyori/masterZoltan Herpai2016-08-2438-160/+125
|\ | | | | Bump legacy 3.18 and 4.1 kernels to latest