Re: [OpenWrt-Devel] [PATCH] image: default block size for squashfs

2014-11-09 Thread Alexey N. Vinogradov
Where is squashfs ever necessary for initramfs? bcm53xx/image. The ubinize is invoked for any fs (initramfs, squashfs). And, in turn, in ubinize.conf the root.squashfs is reffered. So, if just ask to build initramfs (without any squash, etc.) it will invoke squashing, which would fail without

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

2014-11-09 Thread Matti Laakso
Hi Jamie, On Thu, Oct 30, 2014 at 12:58:40PM +0200, Matti Laakso wrote: Hi Sami, Using John's version: config interface 'wan' option proto 'wwan' option apn 'opengate' # option device '/dev/cdc-wdm0' (with or without commenting this) Does absolutely

Re: [OpenWrt-Devel] [PATCH 1/2] kernel: Use defconfig instead of full fledged kernel configuration

2014-11-09 Thread Felix Fietkau
On 2014-11-07 11:58, Maxime Ripard wrote: Rely on the Kconfig defconfig mechanism to fill all the missing options, instead of needing to set them all in the kernel configurations like what was previously done. This will allow to trim down a lot the configuration files, avoid carrying unused

[OpenWrt-Devel] [PATCH] 6in4: detect curl and busybox wget

2014-11-09 Thread Daniel Golle
b52053b 6in4: https support for he.net tunnel api introduced HTTPS support using wget. The busybox version of wget, however, doesn't support the -V option, thus poluting logfiles with a full invalid-parameter-output. Redirect stderr to fix that. As libcurl and curl support selecting the SSL

Re: [OpenWrt-Devel] ar8216 patch series

2014-11-09 Thread Dirk Neukirchen
On 09.11.2014 00:19, Heiner Kallweit wrote: Am 08.11.2014 um 13:49 schrieb Dirk Neukirchen: On 31.10.2014 21:46, Heiner Kallweit wrote: Patch series adds more abstraction to the driver, adds smaller improvements and fixes an issue with kernels = 3.14. Ticket 17800: With kernel 3.14 sometimes

[OpenWrt-Devel] [PATCH 1/5] brcm63xx: Add DT support for AGPF-S0

2014-11-09 Thread Álvaro Fernández Rojas
Signed-off-by: Álvaro Fernández Rojas nolt...@gmail.com --- diff --git a/target/linux/brcm63xx/dts/agpf-s0.dts b/target/linux/brcm63xx/dts/agpf-s0.dts new file mode 100644 index 000..9d66b89 --- /dev/null +++ b/target/linux/brcm63xx/dts/agpf-s0.dts @@ -0,0 +1,30 @@ +/dts-v1/; + +/include/

[OpenWrt-Devel] [PATCH 2/5] brcm63xx: Add DT support for A226G/M

2014-11-09 Thread Álvaro Fernández Rojas
Signed-off-by: Álvaro Fernández Rojas nolt...@gmail.com --- diff --git a/target/linux/brcm63xx/dts/dwv-s0.dts b/target/linux/brcm63xx/dts/dwv-s0.dts new file mode 100644 index 000..002d59b --- /dev/null +++ b/target/linux/brcm63xx/dts/dwv-s0.dts @@ -0,0 +1,30 @@ +/dts-v1/; + +/include/

[OpenWrt-Devel] [PATCH 3/5] brcm63xx: Add DT support for RG100A

2014-11-09 Thread Álvaro Fernández Rojas
Signed-off-by: Álvaro Fernández Rojas nolt...@gmail.com --- diff --git a/target/linux/brcm63xx/dts/rg100a.dts b/target/linux/brcm63xx/dts/rg100a.dts new file mode 100644 index 000..4349376 --- /dev/null +++ b/target/linux/brcm63xx/dts/rg100a.dts @@ -0,0 +1,30 @@ +/dts-v1/; + +/include/

[OpenWrt-Devel] [PATCH 5/5] brcm63xx: add DT support for SPW303V

2014-11-09 Thread Álvaro Fernández Rojas
Signed-off-by: Álvaro Fernández Rojas nolt...@gmail.com --- diff --git a/target/linux/brcm63xx/dts/spw303v.dts b/target/linux/brcm63xx/dts/spw303v.dts new file mode 100644 index 000..664ad7b --- /dev/null +++ b/target/linux/brcm63xx/dts/spw303v.dts @@ -0,0 +1,30 @@ +/dts-v1/; + +/include/

[OpenWrt-Devel] [RFC] ncurses vs ncursesw

2014-11-09 Thread Alexandru Ardelean
I'll try to get opinions about this. Since we're in the middle of packages migration, maybe it's an interesting opportunity to try to use ncursesw and drop ncurses. ncursesw is ncurses + Unicode (UTF8) support Both libraries built out of the same source base, and they're just 2 build variants.

Re: [OpenWrt-Devel] [RFC] ncurses vs ncursesw

2014-11-09 Thread Baptiste Jonglez
On Sun, Nov 09, 2014 at 09:40:37PM +0200, Alexandru Ardelean wrote: I'll try to get opinions about this. Since we're in the middle of packages migration, maybe it's an interesting opportunity to try to use ncursesw and drop ncurses. ncursesw is ncurses + Unicode (UTF8) support Both

Re: [OpenWrt-Devel] [RFC] ncurses vs ncursesw

2014-11-09 Thread Alexandru Ardelean
Well, yes, in the feeds there are more packages depending on libncurses. But since we are in the current feeds migration, it could be a good reason to encourage libncursesw. The reason I referenced openwrt/packages in my initial mail, is because those packages are more core, and we should try to

Re: [OpenWrt-Devel] [PATCH 1/2] kernel: Use defconfig instead of full fledged kernel configuration

2014-11-09 Thread Maxime Ripard
Hi Felix, On Sun, Nov 09, 2014 at 11:54:15AM +0100, Felix Fietkau wrote: On 2014-11-07 11:58, Maxime Ripard wrote: Rely on the Kconfig defconfig mechanism to fill all the missing options, instead of needing to set them all in the kernel configurations like what was previously done.