[OpenWrt-Devel] [PATCH] malta: add default network configuration

2015-05-30 Thread Daniel Golle
I didn't figure out how to achieve this using uci-defaults-new.sh, so use old-school uci-defaults script as that's what is used on realview as well. Signed-off-by: Daniel Golle --- target/linux/malta/base-files/etc/uci-defaults/02-network | 6 ++ 1 file changed, 6 insertions(+) create mode

[OpenWrt-Devel] [PATCH] block: support to mount read-only devices

2015-05-30 Thread Hua Shao
A read-only device will fail to mount without MS_RDONLY flag. Signed-off-by: Hua Shao --- block.c | 49 ++--- 1 file changed, 38 insertions(+), 11 deletions(-) diff --git a/block.c b/block.c index 4c8dda9..a3c0ea5 100644 --- a/block.c +++ b/block.c @@

[OpenWrt-Devel] [PATCH] mac80211: make netifd script create AP interface directly

2015-05-30 Thread Rafał Miłecki
Before starting hostapd we create interface for it. The problem is we try to create STA interface just to let hostapd change it to AP later. It may fail if device doesn't support STA interfaces or if we already hit a limit. Consider following phy (it's from BCM43602 and brcmfmac): $ iw phy phy0 in

Re: [OpenWrt-Devel] [PATCH 2/2] ar71xx: use Image/BuildLoaderPatched for TPLINK-SAFELOADER images

2015-05-30 Thread Felix Fietkau
On 2015-05-31 00:09, Matthias Schiffer wrote: > Ping? > > On 04/29/2015 11:38 PM, Matthias Schiffer wrote: >> Building the loader in Image/Build/TPLINK-SAFELOADER would break the image >> builder as no target compiler is available in that stage. >> >> Fixes #19580 >> >> Signed-off-by: Matthias S

Re: [OpenWrt-Devel] [PATCH 2/2] ar71xx: use Image/BuildLoaderPatched for TPLINK-SAFELOADER images

2015-05-30 Thread Matthias Schiffer
Ping? On 04/29/2015 11:38 PM, Matthias Schiffer wrote: > Building the loader in Image/Build/TPLINK-SAFELOADER would break the image > builder as no target compiler is available in that stage. > > Fixes #19580 > > Signed-off-by: Matthias Schiffer > --- > target/linux/ar71xx/image/Makefile | 8 +

[OpenWrt-Devel] [PATCH] lldpd: disable xml explicitly

2015-05-30 Thread Michael Heimpold
This prevents auto-detection of libxml2 and thus the error: Package lldpd is missing dependencies for the following libraries: libxml2.so.2 Preventing a dependency to libxml2 is preferred, since libxml2 would be a out-of-(core-)tree dependency. Reported-by: Buildbot Signed-off-by: Michael Heimpol

[OpenWrt-Devel] Add an option to resolv.conf permanently?

2015-05-30 Thread Maciej Soltysiak
Hi List, Sorry if it's something obvious which I missed, but is there a way to permanently add an options line to resolv.conf? Best regards, Maciej ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/

Re: [OpenWrt-Devel] uhttpd - bugs vs oficial repo

2015-05-30 Thread Maciej Soltysiak
Hi Yousong, Martin, On Sat, May 30, 2015 at 3:16 PM, Yousong Zhou wrote: > Not sure about the above issues reported. As for the repos' URL, you > can find them at http://nbd.name/gitweb.cgi > > - It's uhttpd on OpenWrt AA release and before. > - It's uhttpd2 on OpenWrt BB and later. > >

Re: [OpenWrt-Devel] uhttpd - bugs vs oficial repo

2015-05-30 Thread Yousong Zhou
Hi, Maciej On 30 May 2015 at 21:00, Maciej Soltysiak wrote: > Hi, > > == A bit of background first == > My TV fetches an XML from samsung.com every 2 seconds or so. > I used to trick the TV to get the file from a local server instead. > > When I tried hosting the file on openwrt (I'm on trunk) th

Re: [OpenWrt-Devel] uhttpd - bugs vs oficial repo

2015-05-30 Thread Martin Blumenstingl
Hi, On Sat, May 30, 2015 at 3:00 PM, Maciej Soltysiak wrote: > I'd like to see if I can fix the bug, but I don't know where is the official > repo for uhttp. Does anyone know? The official uhttpd2 repo is hosted by nbd: [0] Regards, Martin [0] http://nbd.name/gitweb.cgi?p=uhttpd2.git;a=summar

[OpenWrt-Devel] uhttpd - bugs vs oficial repo

2015-05-30 Thread Maciej Soltysiak
Hi, == A bit of background first == My TV fetches an XML from samsung.com every 2 seconds or so. I used to trick the TV to get the file from a local server instead. When I tried hosting the file on openwrt (I'm on trunk) the TV fails to handle the HTTP response given by uhttpd. nginx, lighthttpd

Re: [OpenWrt-Devel] [PATCH v4] [kernel] upstream fix: mount overlayfs r/o if workdir cannot be created

2015-05-30 Thread Thomas Hühn
Hi Rafal, > Your patch seems to be wrongly formatted, please see > http://wiki.openwrt.org/doc/devel/patches > (and setup your ~/.quiltrc) Thx for this hint … just updated my .quiltrc for proper future patch submissions :) Greetings Thomas > ___ > op

Re: [OpenWrt-Devel] [PATCH 1/2] ipq806x: move stmmac support in the kernel binary

2015-05-30 Thread Jonas Gorski
Hi, On Sat, May 30, 2015 at 3:11 AM, Mathieu Olivari wrote: > Ethernet GMAC is built-in the SoC, so there is no need to enable it as a > module. We'll just assume we need it. That's what is done for other > platform where this driver is used so it'll make things more consistent. > > Signed-off-by