Re: [OpenWrt-Devel] seccomp patch lead to build failures

2015-03-28 Thread Dirk Neukirchen
On 26.03.2015 21:32, John Crispin wrote: On 26/03/2015 19:17, Dirk Neukirchen wrote: procd: add jail support 45010 leads to build errors on some? arches On omap I get: /jail/seccomp-bpf.h:72:3: error: #w$ # warning Platform does not support seccomp filter yet which fails the

[OpenWrt-Devel] [PATCH 1/2] [packages] add support for Huawei NCM modems

2015-03-28 Thread Maarten Deprez
Adds support for Huawei NCM modems, which expect ndisdup commands at a separate cdc-wdm device, supported by kmod-usb-net-huawei-cdc-ncm. This builds on the work of Oskari Rauta at https://sites.google.com/site/variousopenwrt/huawei-e3267 . In particular, i added a lot of resilience. It has

[OpenWrt-Devel] [PATCH 2/3] kernel: remove mp-alg

2015-03-28 Thread Dirk Neukirchen
from upstream commit title: [IPV4]: The scheduled removal of multipath cached routing support. removed in Kernel 2.6.23 (2007) Reasons: very buggy, no maintainer, no fixes Signed-off-by: Dirk Neukirchen dirkneukirc...@web.de --- package/kernel/linux/modules/netsupport.mk | 27

[OpenWrt-Devel] [PATCH 3/3] netfilter: add missing module/symbol

2015-03-28 Thread Dirk Neukirchen
ipv4 symbol was added but ipv6 symbol is missing Signed-off-by: Dirk Neukirchen dirkneukirc...@web.de --- include/netfilter.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/include/netfilter.mk b/include/netfilter.mk index cfeb0bd..e95744f 100644 --- a/include/netfilter.mk +++

Re: [OpenWrt-Devel] [PATCH 1/2] [packages] add support for Huawei NCM modems

2015-03-28 Thread Cezary Jackiewicz
Dnia 2015-03-28, o godz. 17:28:50 Maarten Deprez deprez.maar...@gmail.com napisaƂ(a): Adds support for Huawei NCM modems, which expect ndisdup commands at a separate cdc-wdm device, supported by kmod-usb-net-huawei-cdc-ncm. This builds on the work of Oskari Rauta at

Re: [OpenWrt-Devel] [PATCH] tools/e2fsprogs: add a darwin-compat patch

2015-03-28 Thread Felix Fietkau
On 2015-03-17 07:41, Lawrence D'Anna wrote: On darwin we need to import stdint to get these integer typedefs. It works for me on darwin without this patch. What version are you using, and what does the error look like? - Felix ___ openwrt-devel mailing

[OpenWrt-Devel] [PATCH 1/3] kernel: video.mk: [media] sn9c102: remove deprecated driver

2015-03-28 Thread Dirk Neukirchen
driver in staging since 3.14 removed upstream in 3.17 from upstream commit message: Most webcams covered by this driver are now supported by gspca. Nobody has the hardware or is willing to convert the remaining devices to gspca. Signed-off-by: Dirk Neukirchen dirkneukirc...@web.de ---

[OpenWrt-Devel] [PATCH 2/2] [luci] add Huawei NCM protocol

2015-03-28 Thread Maarten Deprez
Adds Huawei NCM protocol as well as huawei modem status support for Luci. Based on the work of Oskari Rauta at https://sites.google.com/site/variousopenwrt/huawei-e3267 . This version adds frequency locking, between other things. Signed-off-by: Maarten Deprez deprez.maar...@gmail.com diff

[OpenWrt-Devel] [PATCH] build: fix CMake assembly builds with ccache

2015-03-28 Thread Matthias Schiffer
CMAKE_ASM_COMPILER is automatically set to CMAKE_C_COMPILER by CMake, but CMAKE_C_COMPILER_ARG1 is lost. This causes assembly builds to fail when ccache is enabled (for example the package fastd on x86). Fix this by explicitly defining CMAKE_ASM_COMPILER and CMAKE_ASM_COMPILER_ARG1.

[OpenWrt-Devel] x86 failing to build (including buildbot)

2015-03-28 Thread Luiz Angelo Daros de Luca
Hello, Building for i386 target is failing with this error: ERROR: Missing site config for architecture i386 ! The missing file will cause configure scripts to fail during compilation. Please provide a openwrt/trunk/include/site/i386 file and restart the build. As shown in

[OpenWrt-Devel] [PATCH 1/5] omap: remove patch wlcore Add-support-for-DT-platform-data

2015-03-28 Thread Dirk Neukirchen
- does not compile with 3.18 compile error: 'struct wl12xx_platform_data' has no member named 'gpio' - different version was sent 2015 but cannot be tested by me see [PATCH v7 0/6] wlcore: add device-tree support series in linux-omap Signed-off-by: Dirk Neukirchen dirkneukirc...@web.de ---

[OpenWrt-Devel] [PATCH 5/5] omap: add missing symbols

2015-03-28 Thread Dirk Neukirchen
enabled by default like other TWL4030 symbols Signed-off-by: Dirk Neukirchen dirkneukirc...@web.de --- target/linux/omap/config-3.18 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/target/linux/omap/config-3.18 b/target/linux/omap/config-3.18 index 178d26f..a06a350 100644 ---

[OpenWrt-Devel] [PATCH 3/5] kernel: fix kmod-usb2-omap usb module

2015-03-28 Thread Dirk Neukirchen
CONFIG_MFD_OMAP_USB_HOST is needed for working USB on BeagleBoard tested on BeagleBoard C4 (EBVBeagle) Signed-off-by: Dirk Neukirchen dirkneukirc...@web.de --- package/kernel/linux/modules/usb.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

[OpenWrt-Devel] [PATCH 4/5] omap: add profile for BeagleBoard

2015-03-28 Thread Dirk Neukirchen
original BeagleBoard has no Ethernet provide a profile with all available USB Ethernet adapters EBVBeagle comes with a kmod-usb-net-mcs7830 compatible device tested with BeagleBoard C4 Signed-off-by: Dirk Neukirchen dirkneukirc...@web.de --- target/linux/omap/profiles/beagleboard.mk | 24

Re: [OpenWrt-Devel] adding seccomp and service jailing to procd

2015-03-28 Thread Kevin Darbyshire-Bryant
On 27/03/2015 14:37, John Crispin wrote: On 27/03/2015 13:45, Etienne Champetier wrote: Hi, 2015-03-27 10:42 GMT+01:00 John Crispin blo...@openwrt.org mailto:blo...@openwrt.org: OpenWrt service hardening and jailing = ... If there