Re: [OpenWrt-Devel] [PATCH] comgt: add ncm proto support

2014-10-23 Thread Bjørn Mork
Sami Olmari s...@olmari.fi writes: option proto 'wwan' I don't know much about how this is supposed to work (don't have any Huawei NCM modem), but I do see this in the patch posted earlier in this thread: diff --git a/package/network/utils/comgt/files/3g.usb

[OpenWrt-Devel] [PATCH] ar71xx: added to ath79 spi driver - SPI Transfer Modes

2014-10-23 Thread Дмитрий Смирнов
Added SPI_MODE_1, SPI_MODE_3 and SPI_MODE_3 to ath79 driver, also we must select GPIO=miso_line if we use these three modes(except SPI_MODE_0), because a dedicated GPIO pin is used as SPI MISO since SPI controller doesn't support modes other than mode-0 (from source for Atheros CUS227 board)

[OpenWrt-Devel] [PATCH] ar71xx:‏ added ath79-spi devtree support

2014-10-23 Thread Дмитрий Смирнов
Added ath79-spi Devtree Support http://www.crashcourse.ca/wiki/index.php/Kernel_parsing_of_device_trees source: https://www.codeaurora.org/cgit/quic/qsdk/oss/system/openwrt/tag/?h=aa/bananaid=AU_LINUX_QSDK_BANANA_10.4_TARGET_ALL.2.4.406 thanks to Gerd Signed-off-by: Dmytro

Re: [OpenWrt-Devel] [PATCH 2/4] openssl: disable srp

2014-10-23 Thread Etienne Champetier
HI This patch serie is only suggestion, except for disabling sslv2 (sslv3 is dead so sslv2 ...) 2014-10-22 21:50 GMT+02:00 Karl P ka...@tweak.net.au: Please no on this one? SRP is great, and it's never going to be used if it keeps getting turned off. If you're going to use openssl, you're

Re: [OpenWrt-Devel] [PATCH] ar71xx: added to ath79 spi driver - SPI Transfer Modes

2014-10-23 Thread John Crispin
On 23/10/2014 09:22, Дмитрий Смирнов wrote: ++ * Copyright (c) 2013 The Linux Foundation. All rights reserved. why are you adding LF to the list of (c) holders ? did the LF create this patch ? ___ openwrt-devel mailing list

Re: [OpenWrt-Devel] [PATCH] ar71xx:‏ added ath79-spi devtree support

2014-10-23 Thread John Crispin
Hi, why do we need this ? ath79 does not have OF support, so i dont see why this driver should have it. John On 23/10/2014 09:22, Дмитрий Смирнов wrote: Added ath79-spi Devtree Support http://www.crashcourse.ca/wiki/index.php/Kernel_parsing_of_device_trees source:

Re: [OpenWrt-Devel] [PATCH] ar71xx: added to ath79 spi driver - SPI Transfer Modes

2014-10-23 Thread Дмитрий Смирнов
I did not anything added, copied as is. If it is important that it is possible to miss. ++ * Copyright (c) 2013 The Linux Foundation. All rights reserved. why are you adding LF to the list of (c) holders ? did the LF create this patch ?

Re: [OpenWrt-Devel] [PATCH] ar71xx:‏ added ath79-spi devtree support

2014-10-23 Thread Дмитрий Смирнов
Hello, Yes, thanks, did not pay attention) Regards, Dmytro Hi, why do we need this ? ath79 does not have OF support, so i dont see why this driver should have it. John

Re: [OpenWrt-Devel] [PATCH] ar71xx: added to ath79 spi driver - SPI Transfer Modes

2014-10-23 Thread John Crispin
On 23/10/2014 09:22, Дмитрий Смирнов wrote: Added SPI_MODE_1, SPI_MODE_3 and SPI_MODE_3 to ath79 driver, also we must select GPIO=miso_line if we use these three modes(except SPI_MODE_0), because a dedicated GPIO pin is used as SPI MISO since SPI controller doesn't support modes other than

[OpenWrt-Devel] [PATCH 1/3][RESEND] netifd : Reinsert ip parameters (addresses/routes) based on old interface config state

2014-10-23 Thread Hans Dedecker
Reinserts the config IP parameters as the config_ip parameter of the new interface is set to false in interface_alloc and thus not loading the config ip options of the old interface Signed-off-by: Hans Dedecker dedec...@gmail.com --- interface.c | 7 +-- 1 file changed, 5 insertions(+), 2

[OpenWrt-Devel] [PATCH 2/3] [RESEND] netifd : Apply interface metric on subnet routes when reloading ip

2014-10-23 Thread Hans Dedecker
Signed-off-by: Hans Dedecker dedec...@gmail.com --- interface-ip.c | 14 +++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/interface-ip.c b/interface-ip.c index 62d15fd..1459e9c 100644 --- a/interface-ip.c +++ b/interface-ip.c @@ -1154,9 +1154,11 @@ void

[OpenWrt-Devel] [PATCH 3/3] [V2] netifd: Read current link state when processing netlink event

2014-10-23 Thread Hans Dedecker
Netifd commit b2dcb02570939d98b92c7c55db1c328693a5d52a introduces a race condition resulting into infinite toggling interfaces (eg static interfaces with linksensing enabled, vlan interfaces with proto none (#18106)) when linksensing is enabled resulting into a crash. As netlink event messages

[OpenWrt-Devel] [PATCH/resend] [netifd/scripts] make netifd scripts recognize signal strings such as INT/TERM/KILL/... signal in proto_kill_command()

2014-10-23 Thread Bastian Bittorf
netifd: scripts: make netifd scripts recognize signal strings such as INT/TERM/KILL/... instead of let the caller do the conversion of symbolic to numeric (e.g. SIGUSR1 - 16), do the conversion internally - the old mode (numeric) is still supported Signed-off-by: Bastian Bittorf

[OpenWrt-Devel] [PATCH/resend] [odhcp6c] script: only call firewall, if installed

2014-10-23 Thread Bastian Bittorf
odhcp6c: script: only call firewall, if installed we dont use fw3, so i was wondering about error-messages in syslog about fw3. check if 'fw3' is in place, before calling it. Signed-off-by: Bastian Bittorf bitt...@bluebottle.com --- package/network/ipv6/odhcp6c/files/dhcpv6.script |4 +++-

[OpenWrt-Devel] [PATCH] [base-files] dhcp.script - only call firewall, if installed

2014-10-23 Thread Bastian Bittorf
base-files: dhcp.script: - only call firewall, if installed we dont use fw3, so i was wondering about error-messages in syslog about fw3. check if 'fw3' is in place, before calling it. Signed-off-by: Bastian Bittorf bitt...@bluebottle.com ---

[OpenWrt-Devel] [PATCH/resend] [odhcp6c/scripts] directly use signal name

2014-10-23 Thread Bastian Bittorf
odhcp6c: scripts: directly use signal name in proto_dhcp_renew() we call proto_kill_command, which now supports symbolic names directly, so conversion unneeded. Signed-off-by: Bastian Bittorf bitt...@bluebottle.com --- package/network/ipv6/odhcp6c/files/dhcpv6.sh |6 +++--- 1 file changed,

[OpenWrt-Devel] [PATCH/resend] [netifd] /proto/dhcp.sh: directly use signal name

2014-10-23 Thread Bastian Bittorf
netifd: proto/dhcp.sh: directly use signal name in proto_dhcp_renew() we call proto_kill_command, which now supports symbolic names directly, so conversion unneeded. Signed-off-by: Bastian Bittorf bitt...@bluebottle.com --- package/network/config/netifd/files/lib/netifd/proto/dhcp.sh |6

[OpenWrt-Devel] Watch That Windows Update: FTDI Drivers Are Killing Fake Chips

2014-10-23 Thread Owen Brotherwood
Although you guys are probably on Linux, I had my FTDI cable on a windows box and was delayed in my progress with a board due to: http://hackaday.com/2014/10/22/watch-that-windows-update-ftdi-drivers-are-killing-fake-chips/ Boy, was I annoyed. https://forum.openwrt.org/viewtopic.php?id=53555

Re: [OpenWrt-Devel] Watch That Windows Update: FTDI Drivers Are Killing Fake Chips

2014-10-23 Thread Karl Palsson
On Thu, Oct 23, 2014 at 01:06:22PM +0200, Owen Brotherwood wrote: Although you guys are probably on Linux, I had my FTDI cable on a windows box and was delayed in my progress with a board due to: http://hackaday.com/2014/10/22/watch-that-windows-update-ftdi-drivers-are-killing-fake-chips/

[OpenWrt-Devel] [PATCH] uhttpd2: mimetypes: add json and jsonp (distinct from js)

2014-10-23 Thread Karl Palsson
Just avoids some warnings in developer tools consoles. ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH] mimetypes: add json and jsonp (distinct from js)

2014-10-23 Thread Karl Palsson
From: Karl Palsson ka...@remake.is .js files are being transferred as text/javascript, which, although obsolete by RFC 4329 is most backward compatible. .json and .jsonp are both transferred as application/octet-stream however, causing warnings on the console for some browsers, even though it

[OpenWrt-Devel] python-smbus

2014-10-23 Thread smilebef
Strange thing with python smbus modul. I install python-smbus and try to import smbus in python but python can not find any smbus modules. I look for the package python-smbus, wich contain nothing. The refered Website http://lm-sensors.org/wiki/I2CTools say, the python smbus modul is in

Re: [OpenWrt-Devel] python-smbus

2014-10-23 Thread Alexandru Ardelean
python-smbus is a obsolete package. the python package has been moved to github; currently it's been upgraded from 2.7.3 (which was in oldpackages) to 2.7.8 it could be that there's a bug in the python package which causes python-smbus not to build/install will check it out; might be something

[OpenWrt-Devel] [PATCH] [ca-certificates] Update to Version 20141019

2014-10-23 Thread Christian Schoenebeck
Update to Version 20141019 Signed-off-by: Christian Schoenebeck christian.schoeneb...@gmail.com --- package/system/ca-certificates/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package/system/ca-certificates/Makefile b/package/system/ca-certificates/Makefile

[OpenWrt-Devel] [PATCH] mpc85xx: fix WAN/LAN-MAC for TP-LINK TL-WDR4900 v1

2014-10-23 Thread Bastian Bittorf
mpc85xx: fix WAN/LAN-MAC for TP-LINK TL-WDR4900 v1 This works around a bootloader issue and reads the macs from config-partition during initial network setup. We have 9 valid macs stored in the partition, the 1st two are used for the radios, 3 and 4 are now used for WAN/LAN.