openwrt/openwrt.git
10 years agonetifd: update to the latest version, fixes ubus handling of proto data items
Felix Fietkau [Thu, 20 Mar 2014 20:06:59 +0000 (20:06 +0000)]
netifd: update to the latest version, fixes ubus handling of proto data items

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39970

10 years agotoolchain: remove accidental leftover debug code
Felix Fietkau [Thu, 20 Mar 2014 14:14:34 +0000 (14:14 +0000)]
toolchain: remove accidental leftover debug code

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39969

10 years agobusybox: fix existing "export -n" in ash
Felix Fietkau [Thu, 20 Mar 2014 14:14:30 +0000 (14:14 +0000)]
busybox: fix existing "export -n" in ash

Minor fix to existing patch which did not correctly implement -n support for the export command in ash. The VEXPORT flag of a variable was set in the first call to setvareq() and then remained set in the subsequent call, because the variable already existed in the environment.

Although /lib/functions.sh by default does not export variables (NO_EXPORT=1), this issue was leading to dirty environments.

Without this fix:
(ash) export A=1; export -n B=2; /bin/ash -c "echo \$A, \$B"
1, 2

With this fix:
(ash) export A=1; export -n B=2; /bin/ash -c "echo \$A, \$B"
1,

Signed-off-by: Christophe Lermytte <openwrt@lermytte.be>
SVN-Revision: 39968

10 years agonetifd: update to latest version, fixes an autostart handling with link detection
Felix Fietkau [Thu, 20 Mar 2014 13:57:28 +0000 (13:57 +0000)]
netifd: update to latest version, fixes an autostart handling with link detection

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39967

10 years agotoolchain: add a symlink for musl softfloat ldso to the path where our gcc expects it
Felix Fietkau [Thu, 20 Mar 2014 13:51:47 +0000 (13:51 +0000)]
toolchain: add a symlink for musl softfloat ldso to the path where our gcc expects it

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39966

10 years agofirewall: update to latest version, fixes a musl build error
Felix Fietkau [Thu, 20 Mar 2014 13:51:43 +0000 (13:51 +0000)]
firewall: update to latest version, fixes a musl build error

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39965

10 years agoiptables: fix issues with the new musl version
Felix Fietkau [Thu, 20 Mar 2014 13:51:40 +0000 (13:51 +0000)]
iptables: fix issues with the new musl version

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39964

10 years agopppd: fix build errors with musl
Felix Fietkau [Thu, 20 Mar 2014 13:51:36 +0000 (13:51 +0000)]
pppd: fix build errors with musl

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39963

10 years agomusl: update to 1.0.0
Felix Fietkau [Thu, 20 Mar 2014 13:51:32 +0000 (13:51 +0000)]
musl: update to 1.0.0

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39962

10 years agouboot-envtools: fix build with musl
Felix Fietkau [Thu, 20 Mar 2014 13:51:27 +0000 (13:51 +0000)]
uboot-envtools: fix build with musl

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39961

10 years agoodhcpd: fix more segfaults + ubus interaction
Steven Barth [Thu, 20 Mar 2014 12:25:17 +0000 (12:25 +0000)]
odhcpd: fix more segfaults + ubus interaction

SVN-Revision: 39960

10 years agolibpolarssl: add missing dependency (#15321)
Felix Fietkau [Thu, 20 Mar 2014 11:39:11 +0000 (11:39 +0000)]
libpolarssl: add missing dependency (#15321)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39959

10 years agoodhcpd: fix possible segfaults
Steven Barth [Thu, 20 Mar 2014 09:39:00 +0000 (09:39 +0000)]
odhcpd: fix possible segfaults

SVN-Revision: 39958

10 years agoath10k: update firmware and allow choice between AP and STA firmwares
Felix Fietkau [Wed, 19 Mar 2014 14:37:12 +0000 (14:37 +0000)]
ath10k: update firmware and allow choice between AP and STA firmwares

This patch updates ath10k firmware to the latest version, changes the
default firmware to be the one optimized for access point operation, and
introduces a configuration option to choose the client-optimized
firmware instead during build time.

Signed-off-by: Matti Laakso <malaakso at elisanet.fi>
SVN-Revision: 39957

10 years agonetifd: update to latest version, adds support for specifying a config path
Felix Fietkau [Wed, 19 Mar 2014 14:26:51 +0000 (14:26 +0000)]
netifd: update to latest version, adds support for specifying a config path

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39956

10 years agokernel/generic: fix define in 642-bridge_port_isolate.patch
Felix Fietkau [Wed, 19 Mar 2014 14:26:48 +0000 (14:26 +0000)]
kernel/generic: fix define in 642-bridge_port_isolate.patch

Patch 642-bridge_port_isolate.patch needs to be updated
for kernels 3.12, 3.13 and 3.14 as the define for BR_ISOLATE_MODE
conflicts with BR_LEARNING

Signed-off-by: Jonas Eymann <j.eymann@gmx.net>
SVN-Revision: 39955

10 years agoubus: update to latest version, blocks unrelated uloop calls on synchronous requests
Felix Fietkau [Wed, 19 Mar 2014 14:26:43 +0000 (14:26 +0000)]
ubus: update to latest version, blocks unrelated uloop calls on synchronous requests

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39954

10 years agolibubox: update to the latest version, adds some utility macros
Felix Fietkau [Wed, 19 Mar 2014 14:26:22 +0000 (14:26 +0000)]
libubox: update to the latest version, adds some utility macros

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39953

10 years agoubox: update to latest git head
John Crispin [Tue, 18 Mar 2014 19:22:38 +0000 (19:22 +0000)]
ubox: update to latest git head

logread now shows the right time.

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39951

10 years agoralink: add missing OF node
John Crispin [Tue, 18 Mar 2014 19:22:13 +0000 (19:22 +0000)]
ralink: add missing OF node

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39950

10 years agoralink: refresh patches
John Crispin [Tue, 18 Mar 2014 19:21:56 +0000 (19:21 +0000)]
ralink: refresh patches

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39949

10 years agoswitch the am335x-evmsk to the new wlcore bindings
Imre Kaloz [Tue, 18 Mar 2014 19:05:37 +0000 (19:05 +0000)]
switch the am335x-evmsk to the new wlcore bindings

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39948

10 years agoadd add new firmware support and additional fixes for wl18xx
Imre Kaloz [Tue, 18 Mar 2014 18:55:54 +0000 (18:55 +0000)]
add add new firmware support and additional fixes for wl18xx

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39947

10 years agoswitch to the newer DT bindings for wl1xxx
Imre Kaloz [Tue, 18 Mar 2014 18:54:27 +0000 (18:54 +0000)]
switch to the newer DT bindings for wl1xxx

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39946

10 years agoprocd: update to latest version, fixes a format string bug in processing init script...
Felix Fietkau [Tue, 18 Mar 2014 12:58:15 +0000 (12:58 +0000)]
procd: update to latest version, fixes a format string bug in processing init script output (#15169)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39945

10 years agoltq-vdsl-mei: disable mips16 support (fixes #15284)
Felix Fietkau [Tue, 18 Mar 2014 12:11:05 +0000 (12:11 +0000)]
ltq-vdsl-mei: disable mips16 support (fixes #15284)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39944

10 years agosunxi: fix mmc support on sun4i
Zoltan Herpai [Mon, 17 Mar 2014 22:32:42 +0000 (22:32 +0000)]
sunxi: fix mmc support on sun4i

Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 39943

10 years agobusybox: fix processing of multiple NTP servers in the config (#15294)
Felix Fietkau [Mon, 17 Mar 2014 14:52:18 +0000 (14:52 +0000)]
busybox: fix processing of multiple NTP servers in the config (#15294)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39935

10 years agouse newer firmware checkout
Imre Kaloz [Mon, 17 Mar 2014 13:36:10 +0000 (13:36 +0000)]
use newer firmware checkout

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39933

10 years agopolarssl: update to version 1.3.4 and add openssl compat patch
Felix Fietkau [Fri, 14 Mar 2014 15:05:46 +0000 (15:05 +0000)]
polarssl: update to version 1.3.4 and add openssl compat patch

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39930

10 years agoustream-ssl: add support for polarssl 1.3
Felix Fietkau [Fri, 14 Mar 2014 15:05:42 +0000 (15:05 +0000)]
ustream-ssl: add support for polarssl 1.3

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39929

10 years agoscripts/metadata.pl: fix ignoring missing host dependencies
Felix Fietkau [Thu, 13 Mar 2014 14:14:06 +0000 (14:14 +0000)]
scripts/metadata.pl: fix ignoring missing host dependencies

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39917

10 years agoscripts/metadata.pl: remove sdk specific config symbol override
Felix Fietkau [Thu, 13 Mar 2014 14:14:03 +0000 (14:14 +0000)]
scripts/metadata.pl: remove sdk specific config symbol override

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39916

10 years agotarget/sdk: strip host binaries before packing
Felix Fietkau [Thu, 13 Mar 2014 14:14:00 +0000 (14:14 +0000)]
target/sdk: strip host binaries before packing

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39915

10 years agotarget/sdk: leave out some unnecessary directories
Felix Fietkau [Thu, 13 Mar 2014 14:13:57 +0000 (14:13 +0000)]
target/sdk: leave out some unnecessary directories

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39914

10 years agotarget/sdk: use .config instead of unconditionally enabling all build dirs
Felix Fietkau [Thu, 13 Mar 2014 12:12:58 +0000 (12:12 +0000)]
target/sdk: use .config instead of unconditionally enabling all build dirs

Call make defconfig on every build to catch newly added packages

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39913

10 years agotarget/sdk: fix parallel build calls
Felix Fietkau [Thu, 13 Mar 2014 12:12:50 +0000 (12:12 +0000)]
target/sdk: fix parallel build calls

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39912

10 years agotarget/sdk: remove obsolete make calls for the ancient package directory format
Felix Fietkau [Thu, 13 Mar 2014 12:12:46 +0000 (12:12 +0000)]
target/sdk: remove obsolete make calls for the ancient package directory format

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39911

10 years agoodhcp6c: pass on delegate-flag on to ds-lite interface
Steven Barth [Thu, 13 Mar 2014 10:40:56 +0000 (10:40 +0000)]
odhcp6c: pass on delegate-flag on to ds-lite interface

SVN-Revision: 39910

10 years agonetifd: pass on delegate flag from dhcp to 6rd
Steven Barth [Thu, 13 Mar 2014 10:33:26 +0000 (10:33 +0000)]
netifd: pass on delegate flag from dhcp to 6rd

SVN-Revision: 39909

10 years ago72ca3bfc401a4f1b695dcc86640dddee62716cea contained too many files
John Crispin [Thu, 13 Mar 2014 07:42:59 +0000 (07:42 +0000)]
72ca3bfc401a4f1b695dcc86640dddee62716cea contained too many files

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39908

10 years agokernel: add missing zram option
Hauke Mehrtens [Wed, 12 Mar 2014 23:36:01 +0000 (23:36 +0000)]
kernel: add missing zram option

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39907

10 years agokernel: fix 990-gpio_wdt.patch patch
Hauke Mehrtens [Wed, 12 Mar 2014 23:29:42 +0000 (23:29 +0000)]
kernel: fix 990-gpio_wdt.patch patch

This uses the correct include now.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39906

10 years agobrcm47xx: add initial support for kernel 3.14
Hauke Mehrtens [Wed, 12 Mar 2014 23:28:41 +0000 (23:28 +0000)]
brcm47xx: add initial support for kernel 3.14

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39905

10 years agokernel: add missing config options for kernel 3.14
Hauke Mehrtens [Wed, 12 Mar 2014 23:16:27 +0000 (23:16 +0000)]
kernel: add missing config options for kernel 3.14

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39904

10 years agogpio-button-hotplug: don't build for 3.3 kernels
Florian Fainelli [Wed, 12 Mar 2014 22:09:11 +0000 (22:09 +0000)]
gpio-button-hotplug: don't build for 3.3 kernels

3.3 kernels do not have the required changes which would make
gpio-button-hotplug work, disallow building on those kernels for now.

Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 39903

10 years agokernel: backport ARM memset fixes for GCC 4.7/4.8
Florian Fainelli [Wed, 12 Mar 2014 22:08:59 +0000 (22:08 +0000)]
kernel: backport ARM memset fixes for GCC 4.7/4.8

Now that GCC 4.8 is the default, make sure that we have the relevant
memset fixes to avoid nasty kernel crashes.

Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 39902

10 years agobuild: fix installation of default-variant packages when the source package has multi...
Felix Fietkau [Wed, 12 Mar 2014 19:53:13 +0000 (19:53 +0000)]
build: fix installation of default-variant packages when the source package has multiple variants (#15237)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39899

10 years agoubox: update to latest git head
John Crispin [Wed, 12 Mar 2014 19:33:18 +0000 (19:33 +0000)]
ubox: update to latest git head

use the fd handover api of ubus to transfer log data
the uci option log_buffer_size can be used to override the default size of 16k

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39898

10 years agoubus: update to latest git HEAD
John Crispin [Wed, 12 Mar 2014 19:33:09 +0000 (19:33 +0000)]
ubus: update to latest git HEAD

add fd handover inside ubus replies

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39897

10 years agoralink: add missing clk_set_rate()
John Crispin [Wed, 12 Mar 2014 19:33:01 +0000 (19:33 +0000)]
ralink: add missing clk_set_rate()

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39896

10 years agofstools: add the new fstools package
John Crispin [Wed, 12 Mar 2014 19:32:51 +0000 (19:32 +0000)]
fstools: add the new fstools package

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39895

10 years agoAdd GW2385 support
Imre Kaloz [Wed, 12 Mar 2014 13:40:13 +0000 (13:40 +0000)]
Add GW2385 support

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39894

10 years agoadd GW2375 support
Imre Kaloz [Wed, 12 Mar 2014 13:39:06 +0000 (13:39 +0000)]
add GW2375 support

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39893

10 years agovarious dwc (OTG) driver fixups
Imre Kaloz [Wed, 12 Mar 2014 13:37:40 +0000 (13:37 +0000)]
various dwc (OTG) driver fixups

Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39892

10 years agoar71xx: rb95x: use correct SPI flash address
Gabor Juhos [Wed, 12 Mar 2014 12:52:39 +0000 (12:52 +0000)]
ar71xx: rb95x: use correct SPI flash address

The flash address passed to rb_init_info() is bogus,
use the predefined AR71XX_SPI_BASE macro instead.

Compile tested only.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 39891

10 years agoar71xx: ar934x_nfc: fix memory initialization bug
Gabor Juhos [Wed, 12 Mar 2014 12:52:36 +0000 (12:52 +0000)]
ar71xx: ar934x_nfc: fix memory initialization bug

sizeof(array_from_function_definition) gives back the size of the pointer.
sizeof(type)  * array_size   should be used in memset.

Signed-off-by: David Völgyes <david.volgyes@gmail.com>
Patchwork: http://patchwork.openwrt.org/patch/4950/
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 39890

10 years agogrub2: update to 2.02-beta2, fixes mac os x 10.9 support (and many other things)
Felix Fietkau [Wed, 12 Mar 2014 11:21:16 +0000 (11:21 +0000)]
grub2: update to 2.02-beta2, fixes mac os x 10.9 support (and many other things)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39889

10 years agoflex: fix build error due to undefined library symbols
Felix Fietkau [Wed, 12 Mar 2014 10:47:31 +0000 (10:47 +0000)]
flex: fix build error due to undefined library symbols

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39888

10 years agoath9k: merge an aggregation related fix
Felix Fietkau [Wed, 12 Mar 2014 10:00:56 +0000 (10:00 +0000)]
ath9k: merge an aggregation related fix

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39886

10 years agoopenssl: Fix x86_64 build on some 64bit host systems
Felix Fietkau [Wed, 12 Mar 2014 10:00:53 +0000 (10:00 +0000)]
openssl: Fix x86_64 build on some 64bit host systems

On some build hosts openssl fails to install since openssl installs itself into
lib64 while the openwrt Makefile expects the libs to end up in lib.

install -m0644 .../openwrt/build_dir/target-x86_64_uClibc-0.9.33.2/openssl-1.0.1e/ipkg-install/usr/lib/libcrypto.so.* .../openwrt/build_dir/target-x86_64_uClibc-0.9.33.2/openssl-1.0.1e/ipkg-x86_64/libopenssl/usr/lib/
install: cannot stat '.../openwrt/build_dir/target-x86_64_uClibc-0.9.33.2/openssl-1.0.1e/ipkg-install/usr/lib/libcrypto.so.*': No such file or directory
make[2]: *** [/openwrt/bin/x86_64/packages/libopenssl_1.0.1e-2_x86_64.ipk] Error 1
make[2]: Leaving directory `/openwrt/package/libs/openssl'
make[1]: *** [package/libs/openssl/compile] Error 2
make[1]: Leaving directory `/openwrt'

Set LIBDIR accordingly to fix this.

Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
SVN-Revision: 39885

10 years agoath9k: further improvements to noise immunity handling on older chips
Felix Fietkau [Tue, 11 Mar 2014 15:31:50 +0000 (15:31 +0000)]
ath9k: further improvements to noise immunity handling on older chips

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39879

10 years agoiptables/netfilter: add connlimit to conntrack-extra
Steven Barth [Tue, 11 Mar 2014 14:58:00 +0000 (14:58 +0000)]
iptables/netfilter: add connlimit to conntrack-extra

SVN-Revision: 39878

10 years agoiptables: bump to 1.4.21
Steven Barth [Tue, 11 Mar 2014 14:57:55 +0000 (14:57 +0000)]
iptables: bump to 1.4.21

SVN-Revision: 39877

10 years agoltq-vmmc: disable mips16 support
Felix Fietkau [Tue, 11 Mar 2014 13:20:07 +0000 (13:20 +0000)]
ltq-vmmc: disable mips16 support

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39876

10 years agoltq-tapi: disable mips16 support
Felix Fietkau [Tue, 11 Mar 2014 13:20:04 +0000 (13:20 +0000)]
ltq-tapi: disable mips16 support

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39875

10 years agoltq-adsl: disable mips16 support
Felix Fietkau [Tue, 11 Mar 2014 13:20:01 +0000 (13:20 +0000)]
ltq-adsl: disable mips16 support

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39874

10 years agoltq-adsl: disable mips16 support
Felix Fietkau [Tue, 11 Mar 2014 13:19:56 +0000 (13:19 +0000)]
ltq-adsl: disable mips16 support

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39873

10 years agoopenvpn: make size optimization configurable
Felix Fietkau [Tue, 11 Mar 2014 12:07:17 +0000 (12:07 +0000)]
openvpn: make size optimization configurable

Signed-off-by: Christoph Kottke <christoph.kottke@gmx.de>
SVN-Revision: 39872

10 years agonetifd: update to latest version, includes interface handling fixes by Hans Dedecker
Felix Fietkau [Tue, 11 Mar 2014 09:28:28 +0000 (09:28 +0000)]
netifd: update to latest version, includes interface handling fixes by Hans Dedecker

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39870

10 years agoodhcpd/odhcp6c: fix HMAC-MD5 in DHCPv6-Reconfigure
Steven Barth [Tue, 11 Mar 2014 08:21:58 +0000 (08:21 +0000)]
odhcpd/odhcp6c: fix HMAC-MD5 in DHCPv6-Reconfigure

SVN-Revision: 39868

10 years agoath9k: add another ANI fix for older chipsets
Felix Fietkau [Mon, 10 Mar 2014 18:58:52 +0000 (18:58 +0000)]
ath9k: add another ANI fix for older chipsets

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39865

10 years agotarget/sdk: generate a Config.in file with the settings of the build that the SDK...
Felix Fietkau [Mon, 10 Mar 2014 18:58:49 +0000 (18:58 +0000)]
target/sdk: generate a Config.in file with the settings of the build that the SDK was generated from

This allows make oldconfig/menuconfig to run

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39864

10 years agotarget/sdk: remove obsolete compatibility makefiles
Felix Fietkau [Mon, 10 Mar 2014 18:58:44 +0000 (18:58 +0000)]
target/sdk: remove obsolete compatibility makefiles

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39863

10 years agoscripts/config: make wildcard include with no results non-fatal
Felix Fietkau [Mon, 10 Mar 2014 18:58:40 +0000 (18:58 +0000)]
scripts/config: make wildcard include with no results non-fatal

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39862

10 years agotarget/sdk: remove obsolete exclude line
Felix Fietkau [Mon, 10 Mar 2014 18:58:34 +0000 (18:58 +0000)]
target/sdk: remove obsolete exclude line

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39861

10 years agotoolchain/gcc: use 4.8-linaro by default
Felix Fietkau [Mon, 10 Mar 2014 11:20:33 +0000 (11:20 +0000)]
toolchain/gcc: use 4.8-linaro by default

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39860

10 years agotarget/sdk: remove some unnecessary files
Felix Fietkau [Mon, 10 Mar 2014 11:12:41 +0000 (11:12 +0000)]
target/sdk: remove some unnecessary files

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39859

10 years agotarget/sdk: add support for building kernel module packages
Felix Fietkau [Mon, 10 Mar 2014 11:12:37 +0000 (11:12 +0000)]
target/sdk: add support for building kernel module packages

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39858

10 years agobuild: add a variable for the name of the {build,staging}_dir/{target,toolchain}...
Felix Fietkau [Mon, 10 Mar 2014 11:12:32 +0000 (11:12 +0000)]
build: add a variable for the name of the {build,staging}_dir/{target,toolchain}-* directories

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39857

10 years agoflex: upgrade to version 2.5.38
Luka Perkov [Mon, 10 Mar 2014 01:26:14 +0000 (01:26 +0000)]
flex: upgrade to version 2.5.38

Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 39856

10 years agokernel/generic: drop already upstreamed patch
Luka Perkov [Mon, 10 Mar 2014 01:06:48 +0000 (01:06 +0000)]
kernel/generic: drop already upstreamed patch

Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 39855

10 years agoiproute2: add ip-full variant to disable IP_CONFIG_TINY
Felix Fietkau [Sun, 9 Mar 2014 13:32:59 +0000 (13:32 +0000)]
iproute2: add ip-full variant to disable IP_CONFIG_TINY

This change creates a new ip-full variant for the ip package.
It disables IP_CONFIG_TINY to make some iproute2 features available like xfrm, gretap, ...

Signed-off-by: Thomas Wouters <thomaswouters@gmail.com>
SVN-Revision: 39854

10 years agoopenssl: update to 1.0.1f
Felix Fietkau [Sun, 9 Mar 2014 13:23:41 +0000 (13:23 +0000)]
openssl: update to 1.0.1f

This version includes this changes:

    Don't include gmt_unix_time in TLS server and client random values
    Fix for TLS record tampering bug CVE-2013-4353
    Fix for TLS version checking bug CVE-2013-6449
    Fix for DTLS retransmission bug CVE-2013-6450

Signed-off-by: Peter Wagner <tripolar@gmx.at>
SVN-Revision: 39853

10 years agoopenssl: detect configuration changes and clean build tree accordingly (fixes #15067)
Felix Fietkau [Sun, 9 Mar 2014 13:19:29 +0000 (13:19 +0000)]
openssl: detect configuration changes and clean build tree accordingly (fixes #15067)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39852

10 years agoopenssl: move make depend call to Build/Configure
Felix Fietkau [Sun, 9 Mar 2014 13:19:25 +0000 (13:19 +0000)]
openssl: move make depend call to Build/Configure

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39851

10 years agobuild: include iwinfo by default if nas or wpad(-mini) is selected
Felix Fietkau [Sun, 9 Mar 2014 12:16:08 +0000 (12:16 +0000)]
build: include iwinfo by default if nas or wpad(-mini) is selected

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39850

10 years agoath9k: improve ANI debugfs file
Felix Fietkau [Sun, 9 Mar 2014 10:31:05 +0000 (10:31 +0000)]
ath9k: improve ANI debugfs file

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39849

10 years agoath9k: fix tx queue configuration for buffered multicast frames
Felix Fietkau [Sun, 9 Mar 2014 10:05:41 +0000 (10:05 +0000)]
ath9k: fix tx queue configuration for buffered multicast frames

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39848

10 years agoath9k: further reduce false baseband hang detects on older chips
Felix Fietkau [Sun, 9 Mar 2014 08:53:39 +0000 (08:53 +0000)]
ath9k: further reduce false baseband hang detects on older chips

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39847

10 years agomac80211: add a few upstream fixes
Felix Fietkau [Sun, 9 Mar 2014 08:53:31 +0000 (08:53 +0000)]
mac80211: add a few upstream fixes

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39846

10 years agotools: fix stampfile dependency handling when the list of build dirs changes (#15186)
Felix Fietkau [Sat, 8 Mar 2014 17:15:45 +0000 (17:15 +0000)]
tools: fix stampfile dependency handling when the list of build dirs changes (#15186)

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39845

10 years agobrcm47xx: explicitely mention MIPS to avoid confusion
Florian Fainelli [Sat, 8 Mar 2014 01:48:44 +0000 (01:48 +0000)]
brcm47xx: explicitely mention MIPS to avoid confusion

And while at it, fix the nomenclature, BCM947xx/953xx refer to specific boards,
while BCM47xx/BCM53xx refer to chip identification number.

Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 39841

10 years agobuild: add alternative PKG_CONFIG_PATH
Felix Fietkau [Fri, 7 Mar 2014 18:18:56 +0000 (18:18 +0000)]
build: add alternative PKG_CONFIG_PATH

This is a cryptographically signed message in MIME format.

udev Makefile.am has two different .pc files and put them
into two locations. Don't know if changing the udev Makefile
or changing the pkgconfig paths is the right way - someone
has to decide :)

udev and vala use an additional pkg-config dir
add it to the path

discovered because openobex did not find udev.pc

Signed-off-by: Dirk Neukirchen <dirkneukirchen@web.de>
SVN-Revision: 39792

10 years agonetifd: update to latest version, adds a bridge reload fix and fixes #15157
Felix Fietkau [Fri, 7 Mar 2014 18:14:41 +0000 (18:14 +0000)]
netifd: update to latest version, adds a bridge reload fix and fixes #15157

Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39791

10 years agoadd preliminary 3.14 support
Imre Kaloz [Fri, 7 Mar 2014 11:27:00 +0000 (11:27 +0000)]
add preliminary 3.14 support

Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39789

10 years agoralink: add support for wrtnode
John Crispin [Fri, 7 Mar 2014 09:54:59 +0000 (09:54 +0000)]
ralink: add support for wrtnode

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39786

10 years agoodhcp6c: fix int-overflow after 50d (thx Hauke Mehrtens)
Steven Barth [Fri, 7 Mar 2014 09:35:17 +0000 (09:35 +0000)]
odhcp6c: fix int-overflow after 50d (thx Hauke Mehrtens)

SVN-Revision: 39785

10 years agosunxi: update 3.13 defconfig to include lradc driver
Zoltan Herpai [Thu, 6 Mar 2014 11:33:43 +0000 (11:33 +0000)]
sunxi: update 3.13 defconfig to include lradc driver

Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 39783

10 years agosunxi: driver refresh for 3.13 - update gmac / mmc / usb / ahci drivers to follow...
Zoltan Herpai [Thu, 6 Mar 2014 00:09:30 +0000 (00:09 +0000)]
sunxi: driver refresh for 3.13 - update gmac / mmc / usb / ahci drivers to follow mainline dev trees - add driver for spi - update clock support - update a31 support - move to new DT compats where appropriate - re-order patchqueue where needed - verified working a20 smp - move most DTSes off files/ - update defconfig

Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 39782