[OpenWrt-Devel] hostapd disconnects with Apple devices.

2015-01-12 Thread Mikko Hissa
Hi everyone, If I recall correctly, since June/July 2014, Apple devices get constantly disconnected from AP. A simple fix is to disable hostapd's disassoc_low_ack. I saw this behaviour on iPads, iPhones, MacBooks, iMacs etc. Should the default setting be altered? Best regards, Mikko ___

[OpenWrt-Devel] ddns-scripts "sleep 10" before updating?

2015-01-12 Thread Catalin Patulea
Hi Christian, curious about something else.. In dynamic_dns_updater.sh there's a "sleep 10": # we need time here because hotplug.d is fired by netifd # but IP addresses are not set by DHCP/DHCPv6 etc. write_log 7 "Waiting 10 seconds for interfaces to fully come up" sleep 10 & PID_SLEEP=$! wait $PI

[OpenWrt-Devel] ddns-scripts 2.0.1-1 breaks freedns.afraid.org?

2015-01-12 Thread Catalin Patulea
Hi Christian, I use ddns-scripts with freedns.afraid.org. Here is the service line for it: #freedns.afraid.org is weird, you just need an update code, for which we use the password variable "freedns.afraid.org" "http://freedns.afraid.org/dynamic/update.php?[PASSWORD]&address=[IP]"; So I was leav

Re: [OpenWrt-Devel] Announcement of mac80211 driver support for Marvell 88W8864 chip

2015-01-12 Thread Ian Kent
On Mon, 2015-01-12 at 19:03 -0800, David Lin wrote: > Hi Ian, > > 1. I will take off these additional blank lines. > 2. I work for problems reported from community. If you do find problems > for the driver, please let me know. Thanks David. I've posted an issue description at https:

Re: [OpenWrt-Devel] Announcement of mac80211 driver support for Marvell 88W8864 chip

2015-01-12 Thread David Lin
Hi Ian, 1. I will take off these additional blank lines. 2. I work for problems reported from community. If you do find problems for the driver, please let me know. Thanks David -Original Message- From: Ian Kent [mailto:ra...@themaw.net] Sent: Tuesday, January 13, 2015

Re: [OpenWrt-Devel] Announcement of mac80211 driver support for Marvell 88W8864 chip

2015-01-12 Thread Ian Kent
Hi David, Please forgive the top posting. I don't think that the kernel programming style guidelines recommend against it and I also don't know if checkpatch.pl will complain about it but personally I find the additional blank lines in things like the below actually make the code harder to read:

[OpenWrt-Devel] [PATCH] [mvebu] WRT1900AC set default switch config

2015-01-12 Thread Mark Milburn
Set the default configuration for the switch so that is consistent with how it was configured by u-Boot. These changes are essentially identical to: https://dev.openwrt.org/browser/trunk/target/linux/kirkwood/base-files/etc/uci-defaults/02_network?rev=43750 Signed-off-by: Mark Milburn --- .../l

Re: [OpenWrt-Devel] [PATCH] [mvebu] WRT1900AC set default switch config

2015-01-12 Thread mark milburn
Oops. forgot to --signoff. resubmitting. On Mon, Jan 12, 2015 at 6:15 PM, Mark Milburn wrote: > Set the default configuration for the switch so that is consistent with how it > was configured by u-Boot. These changes are essentially identical to: > https://dev.openwrt.org/browser/trunk/target/

[OpenWrt-Devel] [PATCH] [mvebu] WRT1900AC set default switch config

2015-01-12 Thread Mark Milburn
Set the default configuration for the switch so that is consistent with how it was configured by u-Boot. These changes are essentially identical to: https://dev.openwrt.org/browser/trunk/target/linux/kirkwood/base-files/etc/uci-defaults/02_network?rev=43750 --- .../linux/mvebu/base-files/etc/uci-

[OpenWrt-Devel] [PATCH] Add kmod-w1-slave-ds2413

2015-01-12 Thread Wouter Paesen
This patch adds support for building the ds2413 one-wire kernel module. Signed-off-by: Wouter Paesen --- trunk/package/kernel/linux/modules/w1.mk(revision 43950) +++ trunk/package/kernel/linux/modules/w1.mk(working copy) @@ -174,3 +174,19 @@ endef $(eval $(call KernelPackage,w1-slave-

[OpenWrt-Devel] [PATCH] Initramfs image copied to bin for malta builds

2015-01-12 Thread Eric Schultz
Malta ramdisk images are no longer copied to output due to a recent change. This change reimplements copying of ramdisk images for Malta builds. Signed-off-by: Eric Schultz --- target/linux/malta/image/Makefile | 5 + 1 file changed, 5 insertions(+) diff --git a/target/linux/malta/image/Mak

[OpenWrt-Devel] [PATCH 4/6] ar8216: introduce enable_eee swconfig attribute to control 802.3az EEE per port

2015-01-12 Thread Heiner Kallweit
Users reported network issues with AR8327 which turned out to be caused by EEE not working correctly with certain link partners (ticket 14597). The workaround was to disable EEE on all ports (changeset 41577). The issue was with certain link partners only, therefore this patch allows to control us

[OpenWrt-Devel] [PATCH 6/6] ar8216: display flow control info in swconfig get_link in case of autonegatiation too

2015-01-12 Thread Heiner Kallweit
The swconfig get_link attribute (at least) on AR8327/AR8337 doesn't consider the autonegotiated flow control. AR8327/AR8337 provide the info about autonegotiated rx/tx flow control in bits 10 and 11 of the port status register. Use these values to display info about autonegotiated rx/tx flow contro

[OpenWrt-Devel] [PATCH 5/6] ar8216: add 802.3az EEE info to swconfig get_link attribute

2015-01-12 Thread Heiner Kallweit
AR8327/AR8337 allow to read the result of EEE autonegotiation. If EEE is autonegotiated between the link partners, display this as part of the swconfig get_link attribute. eee100: 100MBit EEE supported by both link partners eee1000: 1GBit EEE supported by both link partners Signed-off-by: Heiner

[OpenWrt-Devel] [PATCH 2/6] ar8216: replace ar8xxx_rmw with ar8xxx_reg_set where appropriate

2015-01-12 Thread Heiner Kallweit
Replace ar8xxx_rmw with ar8xxx_reg_set where appropriate. Signed-off-by: Heiner Kallweit --- target/linux/generic/files/drivers/net/phy/ar8216.c | 13 + target/linux/generic/files/drivers/net/phy/ar8327.c | 6 ++ 2 files changed, 7 insertions(+), 12 deletions(-) diff --git a/ta

[OpenWrt-Devel] [PATCH 1/6] ar8216: define all switch_addr structs as const

2015-01-12 Thread Heiner Kallweit
Define all switch_addr structs as const. Signed-off-by: Heiner Kallweit --- target/linux/generic/files/drivers/net/phy/ar8216.c | 6 +++--- target/linux/generic/files/drivers/net/phy/ar8327.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/target/linux/generic/files/dr

[OpenWrt-Devel] [PATCH 3/6] ar8216: introduce ar8xxx_reg_clear complementing ar8xxx_reg_set

2015-01-12 Thread Heiner Kallweit
Introduce ar8xxx_reg_clear complementing ar8xxx_reg_set. Signed-off-by: Heiner Kallweit --- target/linux/generic/files/drivers/net/phy/ar8216.c | 10 -- target/linux/generic/files/drivers/net/phy/ar8216.h | 6 ++ target/linux/generic/files/drivers/net/phy/ar8327.c | 10 -- 3

[OpenWrt-Devel] [PATCH 0/6] ar8216: patch series for AR8327/AR8337

2015-01-12 Thread Heiner Kallweit
Patches 1-3 are improvements w/o functional change. Patches 4 allows to control EEE PHY sleep mode per port via swconfig. Motivation is that as workaround for issues with certain link partners EEE was disabled in general. Still the default is to initially disable EEE on all ports, however the brav

[OpenWrt-Devel] [PATCH] netifd: Make interface identifier of delegated IPv6 address configurable

2015-01-12 Thread Hans Dedecker
The ip6ifaceid UCI interface parameter makes the interface identifier of the delegated IPv6 address configurable. The parameter can have the following values: eui64 : Interface identifier is generated from the interface's MAC address random : Interface identifier is generated randomly

Re: [OpenWrt-Devel] [PATCH] [ar71xx] Add support for MERCURY MAC1200R

2015-01-12 Thread Roger Pueyo Centelles
Hi, Please check http://wiki.openwrt.org/toh/mercury/mac1200r Regards, Roger 2015-01-12 0:21 GMT+01:00 Bruno Randolf : > On 01/11/2015 09:25 PM, Gioacchino Mazzurco wrote: > >> The device has two radios: > >> - 802.11abgn AR9344 SoC, ath9k, working OK > >> - 802.11ac QCA988x, ath10k, working

[OpenWrt-Devel] [PATCH v2 1/3] iproute2: bump version to 3.18.0

2015-01-12 Thread Russell Senior
Signed-off-by: Russell Senior --- package/network/utils/iproute2/Makefile | 6 +++--- package/network/utils/iproute2/patches/300-ip_tiny.patch | 15 --- 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/package/network/utils/iproute2/Makefile b/packag

[OpenWrt-Devel] [PATCH v2 2/3] iproute2: fix header problem for musl

2015-01-12 Thread Russell Senior
iproute2 includes "sanitized" linux kernel headers, which work fine for uClibc, however with musl there is some header conflict, principally some ipv6 structure redefinition. This patch removes from include/linux/if_bridge.h to solve the problem. Signed-off-by: Russell Senior --- .../utils/i

[OpenWrt-Devel] [PATCH v2 3/3] iproute2: add package for bridge program

2015-01-12 Thread Russell Senior
The 'bridge' program has been part of iproute2 for a while, and it was once declared[1] to the the intended longterm replacement for bridge-utils, but its features are still mostly distinct[2] from the venerable brctl. [1] http://lwn.net/Articles/435845/ [2] http://sgros-students.blogspot.com/201