[OpenWrt-Devel] [PATCH] [generic] ramips: adding support for OYE-0001 Wireless Router

2015-06-17 Thread younfan33
From: Tom Deng <2579131...@qq.com> Adding support for OYE-0001 Wireless Router. OYE-0001 is a wireless router made by oyewifi.com. Below is the details: MT7620A, 128MB DDR2, 16MB FLASH, SD Slot, USB 2.0, 4 x LAN + 1 x WAN. Signed-off-by: Tom Deng <2579131...@qq.com> --- Index: target/li

[OpenWrt-Devel] [PATCH procd] fix /dev/shm permissions

2015-06-17 Thread Daniel Gimpelevich
On my Ubuntu system, the permissions are 1777. They are incorrect in procd, leading to this: https://forum.openwrt.org/viewtopic.php?id=57073 This in intended for both CC and DD. Signed-off-by: Daniel Gimpelevich --- a/initd/early.c 2015-06-14 19:31:47.0 -0700 +++ b/initd/early.c

Re: [OpenWrt-Devel] [PATCH] brcm47xx: drop global description in favour of subtarget ones

2015-06-17 Thread Rafał Miłecki
On 28 May 2015 at 23:43, Rafał Miłecki wrote: > On 28 May 2015 at 23:35, Michael Heimpold wrote: >> Defining a description in this makefile prevents the subtarget >> Target/Description sections to appear in menuconfig's help >> for the subtargets. >> >> However, this also removes the menuconfig's

Re: [OpenWrt-Devel] jffs2 CRC failed (many times after reboot) - Ralink MT7628

2015-06-17 Thread Baptiste Clenet
2015-06-15 10:08 GMT+02:00 Baptiste Clenet : > Hello, > > The first boot, after flashing a new image, runs fine. > I edit my /etc/config/network configuration then reboot and I get > those errors (every reboot): > > [8.13] jffs2: jffs2_scan_inode_node(): CRC failed on node at > 0x0046000c:

Re: [OpenWrt-Devel] [PATCH] openvpn: bump to 2.3.7.

2015-06-17 Thread Felix Fietkau
On 2015-06-15 07:01, Yousong Zhou wrote: > Two patches are dropped as they were already applied upstream. > > Signed-off-by: Yousong Zhou Please fix the md5sum and refresh all patches. - Felix ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.

Re: [OpenWrt-Devel] [PATCH] musl: provide wtmp compatibility stub for Linux-PAM.

2015-06-17 Thread Felix Fietkau
On 2015-06-16 15:32, Yousong Zhou wrote: > Signed-off-by: Yousong Zhou Apparently this approach was rejected upstream. I want to keep the amount of non-upstream musl patches to a minimum. This issue seems to be easy to deal with by adding a small patch to Linux-PAM like Alpine Linux has done: h

Re: [OpenWrt-Devel] [PATCH] kernel: mitigate cgroups config dependency changes

2015-06-17 Thread Felix Fietkau
On 2015-06-16 15:20, Daniel Golle wrote: > Memory Resource Controller no longer depends on Resource counters since > Kernel version 4.0. > > Signed-off-by: Daniel Golle > --- > config/Config-kernel.in | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/config/Config-kernel.

Re: [OpenWrt-Devel] [PATCH] Add support for PandoraBox PBR-M1 Board

2015-06-17 Thread Felix Fietkau
On 2015-06-16 09:27, Tymon wrote: > Hi all, > please find below patch that adds support for PandoraBox PBR-M1 Board > to OpenWRT trunk. > > The board is based on mt7621 platform, and this patch > adds a separate profile for pbr-m1. > > Best regards, > Tymon > > > From: tymon > > Signe

Re: [OpenWrt-Devel] [PATCH procd] fix /dev/shm permissions, this time for real

2015-06-17 Thread Daniel Gimpelevich
Previous patch did not account for umask, now adding that. Signed-off-by: Daniel Gimpelevich --- a/initd/early.c +++ b/initd/early.c @@ -60,6 +60,8 @@ static void early_mounts(void) { + unsigned int oldumask = umask(0); + mount("proc", "/proc", "proc", MS_NOATIME, 0); mou

[OpenWrt-Devel] [PATCH v2] kernel: mitigate cgroups config dependency changes

2015-06-17 Thread Daniel Golle
Memory Resource Controller no longer depends on Resource counters since Kernel version 4.0. 3.18 is the only still supported version needing Resource counters for MEMCG, thus declare the dependency only for that version. Signed-off-by: Daniel Golle --- config/Config-kernel.in | 2 +- 1 file cha

[OpenWrt-Devel] [PATCH v2] openvpn: bump to 2.3.7.

2015-06-17 Thread Yousong Zhou
Two patches are dropped as they were already applied upstream. Signed-off-by: Yousong Zhou --- v2 <- v1 - Update PKG_MD5SUM - Refreshed all patches package/network/services/openvpn/Makefile |6 +-- .../patches/001-backport_cipher_none_fix.patch | 57 -

[OpenWrt-Devel] [PATCH] ipkg-build: suppress timestamps in gzip headers

2015-06-17 Thread Reiner Herrmann
When creating control.tar.gz, data.tar.gz and $package.ipk tar compresses them with default gzip options. This includes build timestamps in their gzip headers. By setting the GZIP env variable to -n, gzip no longer embeds them, which is a step towards reproducibility. See also [1] for more detaile

[OpenWrt-Devel] [PATCH] libusb-compat: fix build with musl

2015-06-17 Thread Álvaro Fernández Rojas
Signed-off-by: Álvaro Fernández Rojas --- package/libs/libusb-compat/Makefile| 4 +- .../patches/001-fix-musl-stdint.patch | 185 + 2 files changed, 187 insertions(+), 2 deletions(-) create mode 100644 package/libs/libusb-compat/patches/001-fix-

Re: [OpenWrt-Devel] [PATCH] libusb-compat: fix build with musl

2015-06-17 Thread Jo-Philipp Wich
Hi Álvaro, hmm, I have no issues building it under musl here. The buildbots seems to report no errors either. Can you provide a diffconfig.sh output? Btw, you do not need to replace all types, u_int{8,16,32,64}_t is exposed by musl if you include *and* if _GNU_SOURCE is defined. ~ Jow signa

Re: [OpenWrt-Devel] [PATCH] libusb-compat: fix build with musl

2015-06-17 Thread Álvaro Fernández Rojas
Hi Jow, I didn't mean to use that commit description, but something like "fix musl compatibility". You're right, libusb-compat builds without issues, but when flashrom checks for libusb-compat it fails due to u_int*_t types: http://buildbot.openwrt.org:8010/broken_packages/brcm63xx.smp/flashrom/

[OpenWrt-Devel] [PATCH] Add support for WeIO board. WeIO board (http://we-io.net) is based on Carambola2 module from 8Devices, and the patch adds a separate profile.

2015-06-17 Thread Drasko DRASKOVIC
Signed-off-by: Drasko DRASKOVIC --- target/linux/ar71xx/base-files/lib/ar71xx.sh | 3 + .../ar71xx/base-files/lib/upgrade/platform.sh | 3 +- target/linux/ar71xx/config-3.18| 1 + .../linux/ar71xx/files/arch/mips/ath79/mach-weio.c | 162 +

Re: [OpenWrt-Devel] [PATCH] Add support for WeIO board

2015-06-17 Thread Drasko DRASKOVIC
Thanks for revision, I have resent corrected patch: - Added description - Added signed-of - Corrected alphabetical order of `target/linux/ar71xx/base-files/lib/ar71xx.sh` BR, Drasko On Wed, Jun 17, 2015 at 2:17 PM, Karl Palsson wrote: > > Drasko DRASKOVIC wrote: >> --- >> target/linux/ar71xx/

Re: [OpenWrt-Devel] [PATCH] Add support for WeIO board. WeIO board (http://we-io.net) is based on Carambola2 module from 8Devices, and the patch adds a separate profile.

2015-06-17 Thread Karl Palsson
You said you're removed the commented out code? Also, somehow your description ended up in the subject... (More comments inline, but this looks like an older version of the patch) Sincerely, Karl Palsson Drasko DRASKOVIC wrote: > Signed-off-by: Drasko DRASKOVIC > --- > target/linux/ar71xx

[OpenWrt-Devel] [PATCH] ramips: add support for PandoraBox PBR-M1

2015-06-17 Thread tymon
This patch is for PandoraBox PBR-M1 which is based on mt7621, all the features work fine, including rtc, leds, button, usb3.0, etc. Signed-off-by: tymon --- target/linux/ramips/base-files/etc/board.d/01_leds | 5 + .../linux/ramips/base-files/etc/board.d/02_network | 1 + target/linux/ra