openwrt/staging/lynxis/omap.git
10 years agokernel: dont rely on library modules to be depended on
John Crispin [Tue, 8 Oct 2013 15:08:33 +0000 (15:08 +0000)]
kernel: dont rely on library modules to be depended on

fixes https://dev.openwrt.org/ticket/14257

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

10 years agokernel: remove debug code from module insert script
John Crispin [Tue, 8 Oct 2013 15:08:23 +0000 (15:08 +0000)]
kernel: remove debug code from module insert script

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

10 years agohostapd: recognize 8021x as an authentication mode
Felix Fietkau [Tue, 8 Oct 2013 11:09:52 +0000 (11:09 +0000)]
hostapd: recognize 8021x as an authentication mode

Currently, in order to configure the authentication daemon in
8021x mode, we need to set wireless.@wifi-iface[0].encryption="wpa"
Though it works it confuses folks as 8021x is using WEP
encryption and not WPA. Therefore the terminology itself is
confusing. This change adds 8021x as a recognized string for 8021x
authentication.

Signed-off-by: Mathieu Olivari <mathieu@qca.qualcomm.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
SVN-Revision: 38339

10 years agohostapd: add external registrar support
Felix Fietkau [Tue, 8 Oct 2013 11:09:48 +0000 (11:09 +0000)]
hostapd: add external registrar support

Setting wireless.@wifi-iface[N].ext_registrar=1 will enable UPNP
advertising and add an external registrar to the interface this vif
belongs to (br-lan if the vif is included in the LAN bridge). By
enabling this we append upnp_iface=xxx to the hostapd config file.

Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: Mathieu Olivari <mathieu@qca.qualcomm.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
SVN-Revision: 38338

10 years agohostapd: enable WPS2 support on hostapd-full.config
Felix Fietkau [Tue, 8 Oct 2013 11:09:44 +0000 (11:09 +0000)]
hostapd: enable WPS2 support on hostapd-full.config

Enable CONFIG_WPS2 for hostapd. This is required to support
options like Virtual Push Button in WPS.

Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
SVN-Revision: 38337

10 years agohostapd: fix hostapd RSN preauthentication PMKSA caching
Felix Fietkau [Tue, 8 Oct 2013 11:09:40 +0000 (11:09 +0000)]
hostapd: fix hostapd RSN preauthentication PMKSA caching

In 2009 OpenWrt's hostapd config added an "auth_cache" boolean
to be used to address a reported issue #12129 [0] on a forum [1].
The reported issue on the ticket is different that the one
described on the forum. The commit was r33359. This change broke
proper RSN preauthentication [2] [3] [4] expectations on hostapd's
configuration for WPA2 and this in turn disabled PMKSA caching and
Opportunistic Key Caching. This change:

  * Leaves the "auth_cache" to be used only for WPA networks for those
    looking to use this as a workaround to a reported issue but annotates
    a warning over its usage.

  * Separate "auth_cache" from WPA2 RSN preauthentication, leaving
    WPA2 RSN preauthentication to enabled only with "rsn_preauth" with
    the expected and recommended settings.

  * Adds a new WPA2 RSN preauthentication "rsn_preauth_testing" to
    be used when evaluating funcionality for WPA2 RSN preauthentication
    with the expected and recommended settings with the only difference
    so far with what should be enabled by default to disable Opportunistic
    Key Caching.

Disabling the PMKSA cache should mean the STA could not roam off and back
onto the AP that had PMKSA caching disabled and would require a full
authentication cycle. This fixes this for WPA2 networks with
RSN preauthentication enabled.

This change should be applied to AA as well as trunk.

  TL DR;

The issue described on the forum has to do with failure of a STA
being able to try to authenticate again with the AP if it failed
its first try. This may have been an issue with hostapd in 2009
but as per some tests I cannot reproduce this today on a WPA2
network.

The issue described on the ticket alludes to a security issue with the
design of using a Radius server to authenticate to an AP. The issue
vaguely alludes to the circumstances of zapping a user, deleting their
authentication credentials to log in to the network, and that if
RSN preauthentication is enabled with PMKSA caching that the user
that was zapped would still be able to authenticate.

Lets treat these as separate issues.

I cannot reproduce the first issue reported on the forums of not
being able to authenticate anymore on a WPA2 network.

The issue reported on the ticket modified WPA2 RSN preauthentication
by adding two fields to the hostapd configuration if auth_cache
was enabled:

  * disable_pmksa_caching=1
  * okc=0

The first one disables PMKSA authentication cache.
The second one disables Opportunistic Key Caching.

The issue reported on the ticket was fixed by implementing a workaround
in hostapd's configuration. Disabling PMKSA caching breaks proper use
of WPA2 RSN pre authentication. The usage of disable_pmksa_caching=1
prevents hostapd from adding PMKSA entries into its cache when a successful
802.1x authentication occurs. In practice RSN preauthentication would
trigger a STA to perform authentication with other APs on the same SSID,
it would then have its own supplicant PMKSA cache held. If a STA roams
between one AP to another no new authenitcation would need to be performed
as the new AP would already have authenticated the STA. The purpose of the
PMKSA cache on the AP side would be for the AP to use the same PMKID for
a STA when the STA roams off onto another BSSID and later comes back to it.

Disabling Opportunistic Key Caching could help the reported issue
as well but its not the correct place to address this. Opportunistic
Key Caching enables an AP with different interfaces to share the
PMKSA cache. Its a technical enhancement and disabling it would
be useful to let a testing suite properly test for RSN preauthentication
given that otherwise Opportunistic Key Caching would enable an
interface being tested to derive its own derive the PMKSA entry.
In production though okc=1 should be enabled to help with RSN
preauthentication.

The real fix for this particular issue outside of the scope of hostapd's
configuration and it should not be dealt with as a workaround to
its configuration and breaking expected RSN preauthentication and
technical optimizations. Revert this change and enable users to pick
and choose to enable or disable disable_pmksa_caching and okc expecting them
to instead have read clearly more what these do.

As for the core issure ported, the correct place to fix this is to
enable a sort of messaging between the RADIUS server and its peers
so that if caching for authentication is enabled that cache can be
cleared upon user credential updates. Updating a user password
(not just zapping a user) is another possible issue that would need
to be resolved here. Another part of the solution might be to reduce
the cache timing to account for any systematic limitations (RADIUS
server not able to ask peers to clear cache might be
one).

[0] https://dev.openwrt.org/changeset/33359
[1] https://forum.openwrt.org/viewtopic.php?id=19596
[2] http://wireless.kernel.org/en/users/Documentation/hostapd#IEEE_802.11i.2FRSN.2FWPA2_pre-authentication
[3] http://wireless.kernel.org/en/users/Documentation/wpa_supplicant#RSN_preauthentication
[4] http://wiki.openwrt.org/doc/recipes/rsn_preauthentication

Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
SVN-Revision: 38336

10 years agohostapd: Add WPS unconfigured & WPS pin method support
Felix Fietkau [Tue, 8 Oct 2013 11:09:36 +0000 (11:09 +0000)]
hostapd: Add WPS unconfigured & WPS pin method support

Signed-off-by: Mathieu Olivari <mathieu@qca.qualcomm.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
SVN-Revision: 38335

10 years agohostapd: Add eap_reauth_period config option
Felix Fietkau [Tue, 8 Oct 2013 11:09:27 +0000 (11:09 +0000)]
hostapd: Add eap_reauth_period config option

This adds the eap_reauth_period to be used for modifying
the RADIUS server reauthentication authentication period,
a parameter that gets passed directly to the hostapd
configuration file.

Signed-off-by: Mathieu Olivari <mathieu@qca.qualcomm.com>
Signed-off-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
SVN-Revision: 38334

10 years agomac80211: wl12xx: build them again
Hauke Mehrtens [Mon, 7 Oct 2013 22:16:17 +0000 (22:16 +0000)]
mac80211: wl12xx: build them again

WL_TI is bool but was set to =m, which deactivated it. Now it is set to
=y and should be activated in the config so the wl12xx driver gets
build.

This closes #14212.

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

10 years agomac80211: brcmfmac: BRCMFMAC_USB was not set in config
Hauke Mehrtens [Mon, 7 Oct 2013 21:49:28 +0000 (21:49 +0000)]
mac80211: brcmfmac: BRCMFMAC_USB was not set in config

Somehow BRCMFMAC_USB was not set in the build and brcmfmac.ko did not had usb support.

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

10 years agoopenvpn: switch to new procd init script style
Luka Perkov [Mon, 7 Oct 2013 21:28:14 +0000 (21:28 +0000)]
openvpn: switch to new procd init script style

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

10 years agopolarssl: update to 1.2.9
Luka Perkov [Mon, 7 Oct 2013 21:28:12 +0000 (21:28 +0000)]
polarssl: update to 1.2.9

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

10 years agolantiq: fix ltq_ptm compile
John Crispin [Mon, 7 Oct 2013 20:13:32 +0000 (20:13 +0000)]
lantiq: fix ltq_ptm compile

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

10 years agolantiq: experia v8 fixes
John Crispin [Mon, 7 Oct 2013 15:03:00 +0000 (15:03 +0000)]
lantiq: experia v8 fixes

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

10 years agolantiq: fix fritz3370 dts file
John Crispin [Mon, 7 Oct 2013 15:02:56 +0000 (15:02 +0000)]
lantiq: fix fritz3370 dts file

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

10 years agolantiq: fix fritz image generation
John Crispin [Mon, 7 Oct 2013 15:02:52 +0000 (15:02 +0000)]
lantiq: fix fritz image generation

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

10 years agolantiq: fix eva partition split for squashfs
John Crispin [Mon, 7 Oct 2013 15:02:48 +0000 (15:02 +0000)]
lantiq: fix eva partition split for squashfs

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

10 years agoralink: fix asiarf image generation
John Crispin [Mon, 7 Oct 2013 15:02:44 +0000 (15:02 +0000)]
ralink: fix asiarf image generation

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

10 years agoralink: split mt7530 driver out of the gsw driver
John Crispin [Mon, 7 Oct 2013 15:02:39 +0000 (15:02 +0000)]
ralink: split mt7530 driver out of the gsw driver

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

10 years agoralink: build recovery images for dcs930 ip cam
John Crispin [Mon, 7 Oct 2013 15:02:35 +0000 (15:02 +0000)]
ralink: build recovery images for dcs930 ip cam

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

10 years agoralink: DIR610A1 Fix remaining issues
John Crispin [Mon, 7 Oct 2013 15:02:31 +0000 (15:02 +0000)]
ralink: DIR610A1 Fix remaining issues

This patch fixes:

 - Ethernet and Wireless LEDs
 - Wireless MAC Address
 - Remove whitespaces from dts file

Signed-off-by: Flavio Silveira <fggs@terra.com.br>
SVN-Revision: 38321

10 years agoralink: MT7620 eval board pinmux fixes
John Crispin [Mon, 7 Oct 2013 15:02:27 +0000 (15:02 +0000)]
ralink: MT7620 eval board pinmux fixes

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

10 years agoralink: make cevt systick selectable via kconfig
John Crispin [Mon, 7 Oct 2013 15:02:23 +0000 (15:02 +0000)]
ralink: make cevt systick selectable via kconfig

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

10 years agoralink: fix mt7620a pinmux
John Crispin [Mon, 7 Oct 2013 15:02:18 +0000 (15:02 +0000)]
ralink: fix mt7620a pinmux

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

10 years agotools: add tool to generate dcs93xl images
John Crispin [Mon, 7 Oct 2013 15:01:05 +0000 (15:01 +0000)]
tools: add tool to generate dcs93xl images

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

10 years agoodhcp6c: improve server selection, introduce "forceprefix" option
Steven Barth [Mon, 7 Oct 2013 08:43:33 +0000 (08:43 +0000)]
odhcp6c: improve server selection, introduce "forceprefix" option

SVN-Revision: 38314

10 years agoiproute2: update to 3.11
Luka Perkov [Mon, 7 Oct 2013 08:26:41 +0000 (08:26 +0000)]
iproute2: update to 3.11

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

10 years agobrcm47xx: Cocci spatch "noderef"
Hauke Mehrtens [Mon, 7 Oct 2013 00:01:01 +0000 (00:01 +0000)]
brcm47xx: Cocci spatch "noderef"

sizeof when applied to a pointer typed expression gives the size of the
pointer.
Found by coccinelle spatch "misc/noderef.cocci"

Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
SVN-Revision: 38312

10 years agobrcm47xx: move clock detection patches
Hauke Mehrtens [Mon, 7 Oct 2013 00:00:10 +0000 (00:00 +0000)]
brcm47xx: move clock detection patches

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

10 years agobrcm47xx: move and rename nvram gpio patch
Hauke Mehrtens [Sun, 6 Oct 2013 23:57:11 +0000 (23:57 +0000)]
brcm47xx: move and rename nvram gpio patch

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

10 years agobrcm47xx: update early printk patches
Hauke Mehrtens [Sun, 6 Oct 2013 23:55:35 +0000 (23:55 +0000)]
brcm47xx: update early printk patches

Early printk was disabled because it caused hangs on some devices, the
old patches were using the CFE console now we use the normal serial
console, it is at a constant address.

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

10 years agobrcm47xx: update board detection patches
Hauke Mehrtens [Sun, 6 Oct 2013 23:51:24 +0000 (23:51 +0000)]
brcm47xx: update board detection patches

Add patches like they are currently in the mainline mips tree and add
some more pending patches for board detection.

* Now the board name is shown under machine in /proc/cpuinfo.

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

10 years agokernel: b53: add switch name into printk when it fails.
Hauke Mehrtens [Sun, 6 Oct 2013 22:35:28 +0000 (22:35 +0000)]
kernel: b53: add switch name into printk when it fails.

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

10 years agobrcm47xx: b44: fix some problems with the phy
Hauke Mehrtens [Sun, 6 Oct 2013 18:31:32 +0000 (18:31 +0000)]
brcm47xx: b44: fix some problems with the phy

* do not try initialize a unused phy
* some improvements to the phylib patch
* do not turn the phy off when mac is off

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

10 years agoath9k: fix tx queueing issues after background scans
Felix Fietkau [Sat, 5 Oct 2013 12:12:21 +0000 (12:12 +0000)]
ath9k: fix tx queueing issues after background scans

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

10 years agobuild: extend menu with few ubifs options
Luka Perkov [Fri, 4 Oct 2013 10:49:47 +0000 (10:49 +0000)]
build: extend menu with few ubifs options

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

10 years agoopkg: add support for SHA256 verification
Steven Barth [Fri, 4 Oct 2013 05:56:20 +0000 (05:56 +0000)]
opkg: add support for SHA256 verification

based on a patch by Evan Hunt <each@isc.org>
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 38302

10 years agokirkwood: add support for UBI (3.10.x)
Luka Perkov [Fri, 4 Oct 2013 03:45:52 +0000 (03:45 +0000)]
kirkwood: add support for UBI (3.10.x)

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

10 years agonetifd: update to latest version, adds macvlan support
Felix Fietkau [Thu, 3 Oct 2013 14:51:34 +0000 (14:51 +0000)]
netifd: update to latest version, adds macvlan support

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

10 years agoimx6: update upstream pcie patches
Luka Perkov [Thu, 3 Oct 2013 13:06:42 +0000 (13:06 +0000)]
imx6: update upstream pcie patches

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

10 years agokirkwood: enable dts compilation
Luka Perkov [Thu, 3 Oct 2013 02:50:03 +0000 (02:50 +0000)]
kirkwood: enable dts compilation

In 3.10 we might build those, so for now just add this functionality.

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

10 years agokirkwood: fix initramfs images
Luka Perkov [Thu, 3 Oct 2013 02:50:02 +0000 (02:50 +0000)]
kirkwood: fix initramfs images

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

10 years agokirkwood: update patches and configuration (3.10)
Luka Perkov [Thu, 3 Oct 2013 02:50:00 +0000 (02:50 +0000)]
kirkwood: update patches and configuration (3.10)

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

10 years agobrcm47xx: add support for ipv6 in default network config
Hauke Mehrtens [Wed, 2 Oct 2013 23:22:18 +0000 (23:22 +0000)]
brcm47xx: add support for ipv6 in default network config

Modify /etc/init.d/netconfig to use UCI defaults for building the
default network config, which includes appropriate defaults for IPV6.

Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
SVN-Revision: 38294

10 years agobroadcom-diag: fix 'autoload' number of diag.ko
Hauke Mehrtens [Wed, 2 Oct 2013 23:14:08 +0000 (23:14 +0000)]
broadcom-diag: fix 'autoload' number of diag.ko

Change the autoload number from '5' to '05' so the module loads earlier (as intended).

Signed-off-by: Nathan Hintz <nlhintz@hotmail.com>
SVN-Revision: 38293

10 years agokernel: bgmac: fix BCM4707 patch
Hauke Mehrtens [Wed, 2 Oct 2013 23:12:46 +0000 (23:12 +0000)]
kernel: bgmac: fix BCM4707 patch

The bool logic was the wrong way around.

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

10 years agokernel: refresh patches
Hauke Mehrtens [Wed, 2 Oct 2013 22:26:43 +0000 (22:26 +0000)]
kernel: refresh patches

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

10 years agokernel: bcma: update to wireless-testing master-2013-10-01
Hauke Mehrtens [Wed, 2 Oct 2013 22:26:15 +0000 (22:26 +0000)]
kernel: bcma: update to wireless-testing master-2013-10-01

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

10 years agokernel: bgmac: move other bgmac patches to generic
Hauke Mehrtens [Wed, 2 Oct 2013 22:25:26 +0000 (22:25 +0000)]
kernel: bgmac: move other bgmac patches to generic

The bgmac driver will be used on the brcm47xx and the bcm53xx target.

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

10 years agokernel: bgmac: move bgmac patches already applied in mainline kernel to generic
Hauke Mehrtens [Wed, 2 Oct 2013 22:24:01 +0000 (22:24 +0000)]
kernel: bgmac: move bgmac patches already applied in mainline kernel to generic

The bgmac driver will be used on the brcm47xx and the bcm53xx target.
These are only the patches already applied in current net-next/master
branch.

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

10 years agopackage/index: fix index creating when building without signing
Steven Barth [Wed, 2 Oct 2013 16:38:28 +0000 (16:38 +0000)]
package/index: fix index creating when building without signing

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
SVN-Revision: 38287

10 years agoodhcp6c: validate hop-limit on RAs
Steven Barth [Wed, 2 Oct 2013 14:16:05 +0000 (14:16 +0000)]
odhcp6c: validate hop-limit on RAs

SVN-Revision: 38285

10 years agoAdd package signing infrastructure
Steven Barth [Wed, 2 Oct 2013 12:12:10 +0000 (12:12 +0000)]
Add package signing infrastructure

Add package signing key and certificate configuration options to the
"Image configuration" submenu. If enabled, the Packages.gz list will
be signed as file Packages.sig. The passphrase for the signing key can
be sourced from a file or entered by the user. The signing certificate
is automatically added to the firmware image if opkg-smime is selected.

Signed-off-by: Evan Hunt <each@isc.org>
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 38284

10 years ago6relayd: remove compat ULA setting by default (too many bad sideeffects)
Steven Barth [Wed, 2 Oct 2013 06:14:39 +0000 (06:14 +0000)]
6relayd: remove compat ULA setting by default (too many bad sideeffects)

SVN-Revision: 38283

10 years agoimx6: add default profile
Luka Perkov [Wed, 2 Oct 2013 00:33:49 +0000 (00:33 +0000)]
imx6: add default profile

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

10 years agokirkwood: drop PROFILE from image names
Luka Perkov [Wed, 2 Oct 2013 00:33:48 +0000 (00:33 +0000)]
kirkwood: drop PROFILE from image names

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 38281

10 years agokirkwood: add linux 3.10 support
Luka Perkov [Wed, 2 Oct 2013 00:33:47 +0000 (00:33 +0000)]
kirkwood: add linux 3.10 support

Backport appropriate patches to allow using device tree only board
defintions.

Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 38280

10 years agokirkwood: prepare for 3.10
Luka Perkov [Wed, 2 Oct 2013 00:33:45 +0000 (00:33 +0000)]
kirkwood: prepare for 3.10

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

10 years agokirkwood: explicitly set CPU_TYPE to xscale
Luka Perkov [Wed, 2 Oct 2013 00:33:43 +0000 (00:33 +0000)]
kirkwood: explicitly set CPU_TYPE to xscale

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

10 years agoc80211: add iwldvm to iwlwifi, this is needed to support the old wifi card.
Hauke Mehrtens [Tue, 1 Oct 2013 22:41:46 +0000 (22:41 +0000)]
c80211: add iwldvm to iwlwifi, this is needed to support the old wifi card.

This closes #14258

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

10 years agokernel: add industrialio-triggered-buffer.ko only when the config option is selected.
Hauke Mehrtens [Tue, 1 Oct 2013 22:40:32 +0000 (22:40 +0000)]
kernel: add industrialio-triggered-buffer.ko only when the config option is selected.

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

10 years agoep93xx: fix kmod-input-keyboard-ep93xx dependencies
Hauke Mehrtens [Tue, 1 Oct 2013 22:39:28 +0000 (22:39 +0000)]
ep93xx: fix kmod-input-keyboard-ep93xx dependencies

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

10 years agoep93xx: fix sound dependencies for ep93xx
Hauke Mehrtens [Tue, 1 Oct 2013 22:38:40 +0000 (22:38 +0000)]
ep93xx: fix sound dependencies for ep93xx

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

10 years agoat91: fix missing drivers/iio/adc/at91-adc.ko in kmod-at91-adc
Hauke Mehrtens [Tue, 1 Oct 2013 22:37:17 +0000 (22:37 +0000)]
at91: fix missing drivers/iio/adc/at91-adc.ko in kmod-at91-adc

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

10 years agonetifd: don't remove & readd addresses that only have a changed lifetime
Steven Barth [Tue, 1 Oct 2013 17:30:05 +0000 (17:30 +0000)]
netifd: don't remove & readd addresses that only have a changed lifetime

SVN-Revision: 38269

10 years agoprocd: fix incorrect use of sizeof() in vsnprintf()
Jo-Philipp Wich [Tue, 1 Oct 2013 14:41:07 +0000 (14:41 +0000)]
procd: fix incorrect use of sizeof() in vsnprintf()

SVN-Revision: 38268

10 years agoprocd: update to latest git head
John Crispin [Mon, 30 Sep 2013 20:48:51 +0000 (20:48 +0000)]
procd: update to latest git head

this fixes the syslog problem when using eglibc on x86.

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

10 years agolantiq: add support for VGV7519 KPN Experia box v8
John Crispin [Mon, 30 Sep 2013 20:48:46 +0000 (20:48 +0000)]
lantiq: add support for VGV7519 KPN Experia box v8

Signed-off-by: Maikel Bloemendal <mbloemendal@gmail.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 38266

10 years agoralink: dts fixes
John Crispin [Mon, 30 Sep 2013 20:48:39 +0000 (20:48 +0000)]
ralink: dts fixes

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

10 years agoralink: fix DIR-320-B1 board detection
John Crispin [Mon, 30 Sep 2013 20:48:34 +0000 (20:48 +0000)]
ralink: fix DIR-320-B1 board detection

https://dev.openwrt.org/ticket/14226

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

10 years agoralink: Change size of image for DIR-320 B1 to 8MB
John Crispin [Mon, 30 Sep 2013 20:48:27 +0000 (20:48 +0000)]
ralink: Change size of image for DIR-320 B1 to 8MB

http://patchwork.openwrt.org/patch/4102/

Signed-off-by: Vladimir Stolyarov <xakep6666@yandex.ru>
SVN-Revision: 38263

10 years agokernel: lib-textsearch needs to be auto probed for amanda nat to work
John Crispin [Mon, 30 Sep 2013 20:48:12 +0000 (20:48 +0000)]
kernel: lib-textsearch needs to be auto probed for amanda nat to work

https://dev.openwrt.org/ticket/14232

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

10 years agouClibc: fix scoped-IPv6-addresses in getnameinfo
Steven Barth [Mon, 30 Sep 2013 08:41:00 +0000 (08:41 +0000)]
uClibc: fix scoped-IPv6-addresses in getnameinfo

SVN-Revision: 38261

10 years agoscripts/gen-dependencies.sh: use the cross readelf (#12940)
Felix Fietkau [Sun, 29 Sep 2013 20:10:42 +0000 (20:10 +0000)]
scripts/gen-dependencies.sh: use the cross readelf (#12940)

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

10 years agomac80211: add AP inactivity handling / probing fixes to improve stability
Felix Fietkau [Sun, 29 Sep 2013 19:42:00 +0000 (19:42 +0000)]
mac80211: add AP inactivity handling / probing fixes to improve stability

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

10 years agomac80211: really fix the long standing wds ap tx power regression (#14153)
Felix Fietkau [Sun, 29 Sep 2013 12:53:21 +0000 (12:53 +0000)]
mac80211: really fix the long standing wds ap tx power regression (#14153)

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

10 years agorpcd: fix missing option removal when merging subsequent uci set calls
Jo-Philipp Wich [Sun, 29 Sep 2013 11:53:25 +0000 (11:53 +0000)]
rpcd: fix missing option removal when merging subsequent uci set calls

SVN-Revision: 38254

10 years agoubus: restrict unix domain socket permission to 0600 to disallow non-root connections
Jo-Philipp Wich [Sun, 29 Sep 2013 11:53:20 +0000 (11:53 +0000)]
ubus: restrict unix domain socket permission to 0600 to disallow non-root connections

SVN-Revision: 38253

10 years agoubox: support alternative spellings for modinfo and rmmod
Jo-Philipp Wich [Sun, 29 Sep 2013 11:53:17 +0000 (11:53 +0000)]
ubox: support alternative spellings for modinfo and rmmod

After this change, "rmmod" and "modinfo" works even if the user gives
the file name spelling instead of the kernel internal one, so that e.g.
"rmmod nls_iso8859-1.ko" and "rmmod nls_iso8859_1" will both succeed.

SVN-Revision: 38252

10 years agouci: change uci_ptr checking order in uci_delete()
Jo-Philipp Wich [Sun, 29 Sep 2013 11:53:10 +0000 (11:53 +0000)]
uci: change uci_ptr checking order in uci_delete()

SVN-Revision: 38251

10 years agouhttpd: add a config option for using ustream-polarssl, and use it by default
Felix Fietkau [Sun, 29 Sep 2013 11:26:09 +0000 (11:26 +0000)]
uhttpd: add a config option for using ustream-polarssl, and use it by default

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

10 years agoath9k: fix an AP mode powersave issue with aggregation
Felix Fietkau [Sun, 29 Sep 2013 11:07:58 +0000 (11:07 +0000)]
ath9k: fix an AP mode powersave issue with aggregation

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

10 years agoubox: fix kmod loading for modules with varying dashes & underscores in names (#14182...
Jo-Philipp Wich [Sat, 28 Sep 2013 13:12:42 +0000 (13:12 +0000)]
ubox: fix kmod loading for modules with varying dashes & underscores in names (#14182, #14189)

Instead of canonicalizing module names in the internal avl tree simpyl use a
custom strcmp() variant for the avl tree key comparisation. The custom comperator
simply treats dashes and underscores the same, so "nls_iso8859-15" is equal to
"nls-iso8859-15".

This allows us to simplify the code considerably and makes manual "modprobe"
invocations more forgiving when looking up the given module name.

SVN-Revision: 38248

10 years agokernel: disable kmod-iio for linux 3.6 as well (to avoid build issues due to missing...
Felix Fietkau [Sat, 28 Sep 2013 05:22:05 +0000 (05:22 +0000)]
kernel: disable kmod-iio for linux 3.6 as well (to avoid build issues due to missing config symbol changes)

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

10 years agokernel: add missing config symbol
Felix Fietkau [Fri, 27 Sep 2013 21:12:19 +0000 (21:12 +0000)]
kernel: add missing config symbol

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

10 years agokernel: exclude regmap-spi.ko if SPI support cannot be selected
Felix Fietkau [Fri, 27 Sep 2013 21:12:15 +0000 (21:12 +0000)]
kernel: exclude regmap-spi.ko if SPI support cannot be selected

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

10 years agoocteon: remove CONFIG_FW_LOADER override to fix build errors
Felix Fietkau [Fri, 27 Sep 2013 21:12:12 +0000 (21:12 +0000)]
octeon: remove CONFIG_FW_LOADER override to fix build errors

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

10 years agolantiq: add a default for CONFIG_MTD_NAND_XWAY to fix build errors
Felix Fietkau [Fri, 27 Sep 2013 21:12:08 +0000 (21:12 +0000)]
lantiq: add a default for CONFIG_MTD_NAND_XWAY to fix build errors

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

10 years agokernel: make sound-soc-core depend on kmod-ac97
Felix Fietkau [Fri, 27 Sep 2013 21:12:04 +0000 (21:12 +0000)]
kernel: make sound-soc-core depend on kmod-ac97

it has a conditional #ifdef based dependency on it, which trips up on
some targets

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

10 years agokernel: add another missing symbol for iio
Felix Fietkau [Fri, 27 Sep 2013 21:12:01 +0000 (21:12 +0000)]
kernel: add another missing symbol for iio

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

10 years agokernel: add missing symbols for iio on older kernel versions
Felix Fietkau [Fri, 27 Sep 2013 20:54:00 +0000 (20:54 +0000)]
kernel: add missing symbols for iio on older kernel versions

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

10 years agokernel: remove old kernel compat code for pcmcia
Felix Fietkau [Fri, 27 Sep 2013 20:47:09 +0000 (20:47 +0000)]
kernel: remove old kernel compat code for pcmcia

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

10 years agokernel: mark kmod-thermal menuconfig symbol as hidden to avoid building it on targets...
Felix Fietkau [Fri, 27 Sep 2013 20:44:11 +0000 (20:44 +0000)]
kernel: mark kmod-thermal menuconfig symbol as hidden to avoid building it on targets with no thermal drivers

Should fix build errors with Linux 3.3/3.6 targets, which use different
kconfig symbols

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

10 years agobuild: fix typo in arm cflags
Felix Fietkau [Fri, 27 Sep 2013 13:03:45 +0000 (13:03 +0000)]
build: fix typo in arm cflags

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

10 years agopatch: other tools might depend on this one
Luka Perkov [Fri, 27 Sep 2013 12:49:34 +0000 (12:49 +0000)]
patch: other tools might depend on this one

Signed-off-by: Markus Stenberg <markus.stenberg@iki.fi>
SVN-Revision: 38236

10 years agoquilt: add findutils as dependency
Luka Perkov [Fri, 27 Sep 2013 12:32:18 +0000 (12:32 +0000)]
quilt: add findutils as dependency

Signed-off-by: Markus Stenberg <markus.stenberg@iki.fi>
SVN-Revision: 38235

10 years agoar71xx: ar934x-nfc: disable subpage write when hardware ECC is used
Gabor Juhos [Fri, 27 Sep 2013 11:15:34 +0000 (11:15 +0000)]
ar71xx: ar934x-nfc: disable subpage write when hardware ECC is used

It is not supported by the controller.

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

10 years agoimx6: enable cpufreq-imx6q by default
Luka Perkov [Fri, 27 Sep 2013 10:49:37 +0000 (10:49 +0000)]
imx6: enable cpufreq-imx6q by default

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

10 years agomvebu: enable thermal module by default
Luka Perkov [Fri, 27 Sep 2013 10:49:36 +0000 (10:49 +0000)]
mvebu: enable thermal module by default

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

10 years agoimx6: enable thermal module by default
Luka Perkov [Fri, 27 Sep 2013 10:49:35 +0000 (10:49 +0000)]
imx6: enable thermal module by default

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