[OpenWrt-Devel] [PATCH 2/3] build: use options to add kernels/dtbs in rootfs

2014-08-11 Thread Luka Perkov
Use support for options to enable targets and profiles select kernel or dtb inclusion by default. Signed-off-by: Luka Perkov --- config/Config-images.in | 49 target/linux/mxs/profiles/01-duckbill.mk | 5 +++- 2 files changed, 41 insertions

[OpenWrt-Devel] [PATCH 1/3] build: add support for options

2014-08-11 Thread Luka Perkov
This patch adds support for target DEFAULT_OPTIONS and profile OPTIONS variables. Those are simmilar to existing DEFAULT_PACKAGES and PACKAGES but one can use them to select other options by default in menuconfig. Signed-off-by: Luka Perkov --- include/target.mk | 4 scripts/metadata.pl

Re: [OpenWrt-Devel] [PATCH] kernel: ledtrig-netdev: use netdev_notifier_info

2014-07-08 Thread Luka Perkov
Hi Claudio, On Mon, Jul 07, 2014 at 08:24:32PM -0400, Claudio Leite wrote: > Since kernel 3.11, the third parameter passed to notifier_call() > is of type struct netdev_notifier_info. This patch fixes an oops > when setting a netdev LED trigger. > > Signed-off-by: Claudio Leite > --- > .../patc

[OpenWrt-Devel] [PATCH][uclient] http: implement data_sent write callback

2014-07-07 Thread Luka Perkov
Signed-off-by: Luka Perkov --- uclient-http.c | 22 ++ 1 file changed, 22 insertions(+) diff --git a/uclient-http.c b/uclient-http.c index 9652fb8..b9de3a7 100644 --- a/uclient-http.c +++ b/uclient-http.c @@ -653,6 +653,12 @@ static void __uclient_notify_read(struct

[OpenWrt-Devel] [PATCH][uclient][V2] fetch: fix segfault after destination was not reached

2014-07-07 Thread Luka Perkov
Signed-off-by: Luka Perkov --- v1->v2: * don't change connecting to connected uclient-fetch.c | 34 -- 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/uclient-fetch.c b/uclient-fetch.c index 881b4ea..22f15c6 100644 --- a/uclient-fetch

[OpenWrt-Devel] [PATCH] [libubox] examples: fix build error

2014-07-03 Thread Luka Perkov
Patch fixes the following error: error: format ‘%s’ expects argument of type ‘char *’, but argument 3 has type ‘void *’ [-Werror=format=] indent_printf(indent, "%s\n", blobmsg_data(data)); Signed-off-by: Luka Perkov --- examples/blobmsg-example.c | 2 +- 1 file changed, 1 inser

[OpenWrt-Devel] [PATCH 4/5] [libubox] examples: add missing include

2014-07-03 Thread Luka Perkov
Patch fixes following build error: error: implicit declaration of function ‘close’ [-Werror=implicit-function-declaration] close(cl->s.fd.fd); Signed-off-by: Luka Perkov --- examples/ustream-example.c | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/ustream-example.c b/examp

[OpenWrt-Devel] [PATCH 3/5] [libubox] examples: fix linking with json-c

2014-07-03 Thread Luka Perkov
Signed-off-by: Luka Perkov --- examples/CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 51b97df..2126d29 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -11,8 +11,10 @@ ENDIF

[OpenWrt-Devel] [PATCH 5/5] [libubox] examples: use PRIu64 instead %lld when printing uint64_t values

2014-07-03 Thread Luka Perkov
Patch fixes build failure: error: format ‘%lld’ expects argument of type ‘long long int’, but argument 3 has type ‘uint64_t’ [-Werror=format=] indent_printf(indent, "%lld\n", *(uint64_t *)data); Signed-off-by: Luka Perkov --- examples/blobmsg-example.c | 2 +- 1 file changed, 1

[OpenWrt-Devel] [PATCH 2/5] [libubox] examples: remove set but unused variable

2014-07-03 Thread Luka Perkov
Fixes build failure. Signed-off-by: Luka Perkov --- examples/blobmsg-example.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/blobmsg-example.c b/examples/blobmsg-example.c index 5d0a8d0..01c0915 100644 --- a/examples/blobmsg-example.c +++ b/examples/blobmsg

[OpenWrt-Devel] [PATCH 1/5] [libubox] usock: fix indentation

2014-07-03 Thread Luka Perkov
Signed-off-by: Luka Perkov --- usock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usock.h b/usock.h index 8f30add..5df4362 100644 --- a/usock.h +++ b/usock.h @@ -23,12 +23,12 @@ #define USOCK_UDP 1 #define USOCK_SERVER 0x0100 -#define USOCK_NOCLOEXEC

[OpenWrt-Devel] [PATCH][ubox] validate: return error on failed validation

2014-06-27 Thread Luka Perkov
-by: Luka Perkov --- This patch should be applied after ubox series that I've sent earlier. validate/cli.c | 29 + 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/validate/cli.c b/validate/cli.c index 935b5f7..07d2b2e 100644 --- a/validate/cli.c

[OpenWrt-Devel] [PATCH] procd: fix uci_validation

2014-06-27 Thread Luka Perkov
Regardles of the return code from validate_data _error variable will be 0 due to 'local' command in the previous line. With this patch we are able to catch the return code from validate_data tool. Signed-off-by: Luka Perkov --- package/system/procd/Makefile | 9 - pack

[OpenWrt-Devel] [PATCH 3/3] [ubox] validate: add missing yes/no boolean values

2014-06-27 Thread Luka Perkov
Signed-off-by: Luka Perkov --- validate/cli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validate/cli.c b/validate/cli.c index a2a82ed..935b5f7 100644 --- a/validate/cli.c +++ b/validate/cli.c @@ -22,9 +22,9 @@ print_usage(char *argv) static const char

[OpenWrt-Devel] [PATCH 2/3] [ubox] validate: add valid bool types enabled/disabled

2014-06-27 Thread Luka Perkov
They are already supported in config_get_bool function found in OpenWrt base-package. Signed-off-by: Luka Perkov --- validate/validate.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validate/validate.c b/validate/validate.c index f550e76..5bc3bc4 100644 --- a/validate

[OpenWrt-Devel] [PATCH 1/3] [ubox] validate: fix indentation

2014-06-27 Thread Luka Perkov
Signed-off-by: Luka Perkov --- validate/validate.c | 88 ++--- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/validate/validate.c b/validate/validate.c index 150c08d..f550e76 100644 --- a/validate/validate.c +++ b/validate

[OpenWrt-Devel] [PATCH 2/2] busybox: use ntp enabled config option

2014-06-26 Thread Luka Perkov
Even if enabled option is missing from ntp configuration we are still keeping default behavior. Signed-off-by: Luka Perkov --- package/utils/busybox/Makefile | 4 ++-- package/utils/busybox/files/sysntpd | 6 -- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/package

[OpenWrt-Devel] [PATCH 1/2] base-files: add enabled config option for ntp service

2014-06-26 Thread Luka Perkov
Signed-off-by: Luka Perkov --- package/base-files/Makefile| 2 +- package/base-files/files/etc/config/system | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package/base-files/Makefile b/package/base-files/Makefile index a699084..5faa439 100644 --- a/package

Re: [OpenWrt-Devel] [PATCH] kernel/3.10: mtd: m25p80: add support for EON EN25QH128

2014-06-11 Thread Luka Perkov
Hi Sergey, On Wed, Jun 11, 2014 at 03:05:34AM +0400, Sergey Ryazanov wrote: > This flash is used in newer Ubnt UniFi AP Pro > > Signed-off-by: Sergey Ryazanov > --- > ...-m25p80-add-support-for-EON-EN25QH128-flash.patch | 20 > > 1 file changed, 20 insertions(+) > create

Re: [OpenWrt-Devel] Kirkwood kernel version

2014-06-05 Thread Luka Perkov
Hi Claudio, On Thu, Jun 05, 2014 at 08:22:13AM -0400, Claudio Leite wrote: > I am cleaning up my port for a kirkwood-based router, D-Link DIR-665. > I see there are now some patches for 3.14, and a new 'router' > subtarget. I reworked the port to use the new subtarget. Should I also > rework it to

Re: [OpenWrt-Devel] [PATCH] imx6: kernel: update 3.14 pcie patches

2014-06-04 Thread Luka Perkov
Hi Tim, On Wed, Jun 04, 2014 at 01:14:57PM -0700, Tim Harvey wrote: > Remove old irq map patch and replace it with the propper upstream patches > allowing IMX6 PCIe devices behind PCIe switches to work properly. > > Signed-off-by: Tim Harvey > --- > ...dts_imx_fix-invallid-#address-cells-value.

Re: [OpenWrt-Devel] [PATCH] libusb-compat: create directory for libusb-config

2014-06-04 Thread Luka Perkov
On Wed, Jun 04, 2014 at 09:11:18AM +0200, Luka Perkov wrote: > On Tue, Jun 03, 2014 at 02:03:34PM -0700, Tim Harvey wrote: > > Fix a build regression caused by r39975 by making sure $(STAGING_DIR)/host > > directory exists before trying to copy files to it. > > >

Re: [OpenWrt-Devel] [PATCH] libusb-compat: create directory for libusb-config

2014-06-04 Thread Luka Perkov
Hi Tim, On Tue, Jun 03, 2014 at 02:03:34PM -0700, Tim Harvey wrote: > Fix a build regression caused by r39975 by making sure $(STAGING_DIR)/host > directory exists before trying to copy files to it. > > Cc: Florian Fainelli > > Signed-off-by: Tim Harvey > --- > package/libs/libusb-compat/Make

Re: [OpenWrt-Devel] [PATCH] kirkwood: add support for Marvell rd88f6281 as gateway+nas profile in legacy mode

2014-06-02 Thread Luka Perkov
Hi Eugene, please port this device so it uses device tree, I've tried to get this board myself but I've been told that the board is no longer for sale. Luka On Mon, Jun 02, 2014 at 07:36:50PM +0300, Eugene San (eugenesan) wrote: > Signed-off-by: Eugene San (eugenesan) > --- > .../base-files/et

Re: [OpenWrt-Devel] [PATCH] [packages] debootstrap: bump version to 1.0.60~bpo70+1

2014-05-26 Thread Luka Perkov
Hi Daniel, On Mon, May 26, 2014 at 04:35:38PM +0200, Daniel Golle wrote: > Signed-off-by: Daniel Golle > > --- > admin/debootstrap/Makefile | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Applied with patch refresh in r40863. Thanks! Luka __

Re: [OpenWrt-Devel] [PATCH] kernel: other.mk: add pps-gpio support

2014-05-23 Thread Luka Perkov
Hi Tim, On Wed, May 21, 2014 at 10:25:32AM -0700, Tim Harvey wrote: > The pps-gpio kernel module supports Pulse-Per-Second provided by a GPIO. > > Signed-off-by: Tim Harvey > --- > package/kernel/linux/modules/other.mk | 16 > 1 file changed, 16 insertions(+) Applied with mino

Re: [OpenWrt-Devel] [PATCH 3/3] package: uboot-envtools: add Pogoplug E02 support

2014-05-23 Thread Luka Perkov
Hi Felix, On Thu, May 22, 2014 at 10:12:55PM +0200, Felix Kaechele wrote: > The settings require that the OpenWrt provided u-boot is used as either > first or second stage bootloader as it modifies the partitioning scheme > to move the u-boot environment to a separate mtd partition. > > Signed-of

Re: [OpenWrt-Devel] [PATCH 2/3] package: uboot-kirkwood: re-add Pogoplug E02 support

2014-05-23 Thread Luka Perkov
Hi Felix, On Thu, May 22, 2014 at 10:12:54PM +0200, Felix Kaechele wrote: > This patch modifies the u-boot config for the Pogoplug E02 to work with > OpenWRT. > It also enables building a second stage bootloader image. > > Signed-off-by: Felix Kaechele > --- > package/boot/uboot-kirkwood/Makefi

Re: [OpenWrt-Devel] [PATCH 1/3] kirkwood: Pogoplug E02 kernel support for 3.14

2014-05-23 Thread Luka Perkov
Hi Felix, On Thu, May 22, 2014 at 10:12:53PM +0200, Felix Kaechele wrote: > this also fixes a typo in the UBIFS_OPTS > > Signed-off-by: Felix Kaechele > --- > .../kirkwood/patches-3.14/150-pogoplug_e02.patch | 127 > + > target/linux/kirkwood/profiles/120-pogoplug.mk

[OpenWrt-Devel] [PATCH] [tools] mkimage: update to 2014.04

2014-05-20 Thread Luka Perkov
Signed-off-by: Luka Perkov --- tools/mkimage/Makefile | 11 + tools/mkimage/patches/010-freebsd-ulong-fix.patch | 2 +- tools/mkimage/patches/020-openbsd_fixes.patch | 4 ++-- .../patches/030-allow-to-use-different-magic.patch | 28

Re: [OpenWrt-Devel] [PATCH 8/9] images.mk: no longer ubinize only for ubifs

2014-05-17 Thread Luka Perkov
Hi Daniel, On Sat, May 17, 2014 at 10:30:07PM +0200, Daniel wrote: > from what I can see at91, imx6, kirkwood, lantiq, omap and xburst currently > use > ubinize.cfg. > It should be easy to nuke ubinize.cfg in most of these targets, from having a > quick view the only difference in the present ubi

Re: [OpenWrt-Devel] [PATCH v2 7/9] scripts: add ubinize-image.sh to generate ubi images

2014-05-17 Thread Luka Perkov
Hi Daniel, On Sat, May 17, 2014 at 07:30:46PM +0200, Daniel Golle wrote: > See also > https://gitorious.org/openwrt-oxnas/openwrt-oxnas/source/target/linux/ > oxnas/image/Makefile Well, you haven't really answered my question. You are using this in your Makefile: sh $(TOPDIR)/scripts/combined-i

Re: [OpenWrt-Devel] [PATCH 8/9] images.mk: no longer ubinize only for ubifs

2014-05-17 Thread Luka Perkov
Hi Daniel, On Sat, May 17, 2014 at 05:52:16AM +0200, Daniel Golle wrote: > use scripts/ubinize-image.sh to generate ubinized images in > target/*/images/Makefile Will this break some targets? For example imx6 and kirkwood? Luka > Signed-off-by: Daniel Golle > > diff --git a/include/image.mk

Re: [OpenWrt-Devel] [PATCH 1/6] mxs/imx6: make boardnames consistent with other targets

2014-05-13 Thread Luka Perkov
Hi Michael, On Tue, May 13, 2014 at 11:38:43PM +0200, Michael Heimpold wrote: > target/linux/imx6/Makefile |2 +- I've commited this chunk only in r40758. Thanks. Luka ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.ope

[OpenWrt-Devel] [PATCH] [uclient] fetch: fix segfault after destination was not reached

2014-05-13 Thread Luka Perkov
Signed-off-by: Luka Perkov --- uclient-fetch.c | 40 +++- 1 file changed, 31 insertions(+), 9 deletions(-) diff --git a/uclient-fetch.c b/uclient-fetch.c index 881b4ea..01dfbf1 100644 --- a/uclient-fetch.c +++ b/uclient-fetch.c @@ -137,7 +137,7 @@ static void

[OpenWrt-Devel] [PATCH] [fstools] ubi: add missing newlines

2014-05-11 Thread Luka Perkov
Signed-off-by: Luka Perkov --- ubi.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ubi.c b/ubi.c index b2d7299..e2a4a06 100644 --- a/ubi.c +++ b/ubi.c @@ -139,7 +139,7 @@ static int main_image(char *partition, char *image, char *overlay) libubi

Re: [OpenWrt-Devel] [PATCH][tools] quilt: bump to version 0.63

2014-05-09 Thread Luka Perkov
Hi Hannu, On Thu, May 08, 2014 at 09:36:31PM +0300, Hannu Nyman wrote: > Quilt version 0.63 has been released this week. Applied in r40744. Thanks! Luka PS. Next time please follow the official guide [1]. [1] https://dev.openwrt.org/wiki/SubmittingPatches __

Re: [OpenWrt-Devel] [PATCH v2][flashrom] Update to latest version and remove unneeded dependencies

2014-05-09 Thread Luka Perkov
compat > > Pepe > > 2014-05-09 10:34 GMT+02:00, Luka Perkov : > > On Fri, May 09, 2014 at 10:28:50AM +0200, José Vázquez wrote: > >> 2014-05-09 8:32 GMT+02:00, Luka Perkov : > >> > Hi Alvaro, > >> > > >> > I don't see this change.

Re: [OpenWrt-Devel] [PATCH v2][flashrom] Update to latest version and remove unneeded dependencies

2014-05-09 Thread Luka Perkov
On Fri, May 09, 2014 at 10:28:50AM +0200, José Vázquez wrote: > 2014-05-09 8:32 GMT+02:00, Luka Perkov : > > Hi Alvaro, > > > > I don't see this change. Patch v2 is same as v1. > > > > Luka > > > In v1 he eliminated cpu dependencies while in v2 dmidec

Re: [OpenWrt-Devel] [PATCH v2][flashrom] Update to latest version and remove unneeded dependencies

2014-05-08 Thread Luka Perkov
Hi Alvaro, On Fri, May 09, 2014 at 02:39:28AM +0200, Álvaro Fernández Rojas wrote: > Update flashrom to latest version and remove unneeded dependencies. > > Signed-off-by: Álvaro Fernández Rojas > --- > v2: Add dmidecode dependency only for x86 target. I don't see this change. Patch v2 is same

Re: [OpenWrt-Devel] [PATCH 07/30][ WRT1900AC ] mamba mvebu: force nand driver to use 4-bit ECC

2014-05-08 Thread Luka Perkov
Hi Matthew, On Thu, May 08, 2014 at 02:31:13PM -0700, Matthew Fatheree wrote: > From 90ae505c06fddcc08622594bb82bb449511c7e9a Mon Sep 17 00:00:00 2001 > From: Matthew Fatheree > Date: Sat, 19 Apr 2014 00:08:43 +0700 > Subject: [PATCH 07/30] mamba mvebu: force nand driver to use 4-bit ECC > > if

Re: [OpenWrt-Devel] [PATCH 14/30][ WRT1900AC ] Add TLC59116 Led driver

2014-05-08 Thread Luka Perkov
Hi Matthew, On Thu, May 08, 2014 at 01:59:25PM -0700, Matthew Fatheree wrote: > From ddf018f5b987fb9b3e9f92added6ec241481e723 Mon Sep 17 00:00:00 2001 > From: Matthew Fatheree > Date: Sun, 4 May 2014 19:00:07 +0700 > Subject: [PATCH 14/30] Add TLC59116 Led driver > > Signed-off-by: Matthew Fathe

Re: [OpenWrt-Devel] [PATCH 13/30][ WRT1900AC ] add default network configuration for mvebu mamba

2014-05-08 Thread Luka Perkov
Hi Matthew, On Thu, May 08, 2014 at 01:58:35PM -0700, Matthew Fatheree wrote: > From 7d595a327865bb5d518d9d401eb9711dfa7a5c20 Mon Sep 17 00:00:00 2001 > From: Matthew Fatheree > Date: Sun, 4 May 2014 18:13:05 +0700 > Subject: [PATCH 13/30] add default network configuration for mvebu mamba > > mv

Re: [OpenWrt-Devel] [PATCH 15/30][ WRT1900AC ] mamba mvebu: add fw_printenv tool to read U-boot

2014-05-08 Thread Luka Perkov
On Thu, May 08, 2014 at 02:07:13PM -0700, Matthew Fatheree wrote: > From 4a9565f1139fbb585727638fd69a0437bdd212b6 Mon Sep 17 00:00:00 2001 > From: Matthew Fatheree > Date: Sun, 4 May 2014 19:04:04 +0700 > Subject: [PATCH 15/30] mamba mvebu: add fw_printenv tool to read U-boot > environment from L

[OpenWrt-Devel] [PATCH] [ubus] lua: forward return codes from lua to ubus

2014-05-05 Thread Luka Perkov
From: Steven Barth Signed-off-by: Steven Barth Tested-by: Luka Perkov --- v1->v2: * move variable and change its name for consistency --- lua/ubus.c | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lua/ubus.c b/lua/ubus.c index 0f2338c..92fb0a1 100644 --- a/

[OpenWrt-Devel] [PATCH] [libubox] uloop: fix multiple calls to uloop_run()

2014-05-04 Thread Luka Perkov
Signed-off-by: Luka Perkov --- uloop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/uloop.c b/uloop.c index ee568a8..c3d206a 100644 --- a/uloop.c +++ b/uloop.c @@ -646,6 +646,7 @@ void uloop_run(void) if (!recursive_calls++) uloop_setup_signals(true

[OpenWrt-Devel] [PATCH] [uclient] add support for PUT requests

2014-05-04 Thread Luka Perkov
Signed-off-by: Luka Perkov --- uclient-http.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/uclient-http.c b/uclient-http.c index e7d3ff0..4562325 100644 --- a/uclient-http.c +++ b/uclient-http.c @@ -40,6 +40,7 @@ enum request_type { REQ_GET, REQ_HEAD

Re: [OpenWrt-Devel] [PATCH] [package] kobs-ng: Add support for overriding size

2014-04-19 Thread Luka Perkov
Hi Tim, On Thu, Apr 17, 2014 at 09:25:16AM -0700, Tim Harvey wrote: > By default kobs-ng will use the size of /dev/mtd0 for the IMX bootstreams. > This patch allows overriding that size in order to reserve space at the end > of the mtd partition for u-boot.img in the case of using an SPL bootloade

Re: [OpenWrt-Devel] [PATCH] imx6-gateworks: enable new canbus packages

2014-04-19 Thread Luka Perkov
Hi Tim, On Thu, Apr 17, 2014 at 09:24:32AM -0700, Tim Harvey wrote: > The canbus package was recently changed to a more active project. This patch > updates the default package names to include the same functionality as before. > > Signed-off-by: Tim Harvey > --- > target/linux/imx6/profiles/12

[OpenWrt-Devel] [PATCH] [ubus] lua: forward return codes from lua to ubus

2014-04-16 Thread Luka Perkov
From: Steven Barth Signed-off-by: Steven Barth Tested-by: Luka Perkov --- lua/ubus.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lua/ubus.c b/lua/ubus.c index 0f2338c..4177d00 100644 --- a/lua/ubus.c +++ b/lua/ubus.c @@ -292,17 +292,21 @@ ubus_method_handler

Re: [OpenWrt-Devel] lantiq voip foo

2014-04-14 Thread Luka Perkov
On Thu, Apr 10, 2014 at 09:23:36AM +0200, John Crispin wrote: > any volunteers for this ? > > any one successfully used chan_lantiq ? I have but in "production" I am still running owsip that we did before. One of the example configs I have is below. But somebody who knows asterisk should revise

Re: [OpenWrt-Devel] [PATCH v2 1/7] [boot] uboot-lantiq: update to v2013.10

2014-04-14 Thread Luka Perkov
On Sun, Apr 13, 2014 at 09:43:22AM +0200, John Crispin wrote: > On 27/10/2013 21:36, Daniel Schwierzeck wrote: > > Patches created from tree: > > g...@github.com:danielschwierzeck/u-boot-lantiq.git > > v2013.10..u-boot-lantiq-v2013.10-openwrt4 > > > > Signed-off-by: Daniel Schwierzeck > > i no

Re: [OpenWrt-Devel] [PATCH] New package: easycwmp package

2014-04-08 Thread Luka Perkov
Hi Mohamed, On Mon, Apr 07, 2014 at 06:04:56PM +0200, MOHAMED Kallel wrote: > Add new package. Its name is easycwmp. easycwmp is a GPLv2 open > source implementation of the TR069 cwmp standard. easycwmp is a > complete cwmp client fully conform with the TR-069 standrad Can you please provide a

Re: [OpenWrt-Devel] [PATCH v2] [packages]: collectd: make nut conditional

2014-03-14 Thread Luka Perkov
Hi Tim, On Tue, Mar 04, 2014 at 07:57:41AM -0800, Tim Harvey wrote: > Make the nut support conditional and specify its dependencies. > > Signed-off-by: Tim Harvey > --- > utils/collectd/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied with minor changes. Thank you. Luk

Re: [OpenWrt-Devel] [PATCH] imx6: optimize for NEON FPU hardware

2014-02-27 Thread Luka Perkov
On Tue, Feb 25, 2014 at 08:10:51AM -0800, Tim Harvey wrote: > The IMX6 SoC uses an ARM Cortext-A9 which has both NEON and VFPv3 hardware > blocks. This will tune gcc to use neon instead of vfpv3 which will outperform > VFPv3. > > Signed-off-by: Tim Harvey > --- > target/linux/imx6/Makefile | 2

Re: [OpenWrt-Devel] [PATCH] imx6: enable FPU for hard float

2014-02-27 Thread Luka Perkov
Hi Tim, On Tue, Feb 25, 2014 at 08:10:29AM -0800, Tim Harvey wrote: > The OpenWrt build system uses MACHINE_FEATURES of fpu to set the HAS_FPU which > in turn sets the default of CONFIG_SOFT_FLOAT as well as uClibc configuration. > As the IMX6 SoC has both vfpv3 and NEON hardware support we want t

Re: [OpenWrt-Devel] [PATCH] imx6: enable IMX6 watchdog

2014-02-20 Thread Luka Perkov
Hi Tim, On Thu, Feb 20, 2014 at 08:11:44AM -0800, Tim Harvey wrote: > Signed-off-by: Tim Harvey > --- > target/linux/imx6/config-3.10 | 2 +- > target/linux/imx6/config-3.13 | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) Applied in r39643. Thank you. Luka __

Re: [OpenWrt-Devel] [PATCH] imx6: update Ventana dts

2014-02-20 Thread Luka Perkov
Hi Tim, On Thu, Feb 20, 2014 at 08:12:59AM -0800, Tim Harvey wrote: > Update the Ventana device-tree to match upstream: > - Add IMX6Q/IMX6DL variants for GW54xx/GW53xx/GW52xx/GW51xx > - align pinctrl with upstream > - consolidate multiple patches into one > > Signed-off-by: Tim Harvey > ---

Re: [OpenWrt-Devel] Fixes to BB trunk bot build

2014-02-16 Thread Luka Perkov
Hi Michel, On Sun, Feb 16, 2014 at 10:59:35PM +0100, Michel Stempin wrote: > My question is: how to submit this to the list: is a single patchset better > or an individual per package submission the best way? Please send patch per package as described here: https://dev.openwrt.org/wiki/Submittin

Re: [OpenWrt-Devel] [PATCH v2 5/5] mvebu: update kernel config

2014-02-10 Thread Luka Perkov
Hi Seif, On Sun, Feb 02, 2014 at 10:06:41PM -0800, Seif Mazareeb wrote: > Enabling the NAND controller on the mvebu target. > > Signed-off-by: Seif Mazareeb > --- > target/linux/mvebu/config-3.10 |4 > 1 file changed, 4 insertions(+) The series has been applied from commit r39564 to c

Re: [OpenWrt-Devel] [PATCH] Add gccgo and libgo

2014-02-04 Thread Luka Perkov
Hi Geert-Johan, On Tue, Feb 04, 2014 at 02:26:38PM +0100, Geert-Johan Riemer wrote: > Still haven't heard anything. Any chance to get this merged in? > > http://patchwork.openwrt.org/patch/4711/ I've started testing that this weekend but I've hit build problem with eglibc which I had to fix firs

[OpenWrt-Devel] [PATCHv2 3/4] [rpcd] file: when writing a file make sure it's contents are stored

2014-01-29 Thread Luka Perkov
Fixes problems with ubi(fs). Signed-off-by: Luka Perkov --- file.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/file.c b/file.c index 8eef2b5..f9c65a2 100644 --- a/file.c +++ b/file.c @@ -214,8 +214,14 @@ rpc_file_write(struct ubus_context *ctx, struct ubus_object

[OpenWrt-Devel] [PATCHv2 1/4] [rpcd] fix whitespaces

2014-01-29 Thread Luka Perkov
Signed-off-by: Luka Perkov --- file.c| 6 +++--- include/rpcd/plugin.h | 4 ++-- iwinfo.c | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/file.c b/file.c index 57e0894..d22add5 100644 --- a/file.c +++ b/file.c @@ -87,7 +87,7 @@ enum

[OpenWrt-Devel] [PATCHv2 4/4] [rpcd] fix segmentation fault when plugins are loaded

2014-01-29 Thread Luka Perkov
Function rpc_plugin_register_library() is modifying the struct's contents in list_add() call. That said, the rpc_plugin struct should not be defined as const. This caused segmentation fault when built on up-to-date Arch Linux. Signed-off-by: Luka Perkov --- file.c | 2 +- iwinfo.c | 2

[OpenWrt-Devel] [PATCHv2 2/4] [rpcd] file: create a file on write if it does not exist

2014-01-29 Thread Luka Perkov
Signed-off-by: Luka Perkov --- file.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/file.c b/file.c index d22add5..8eef2b5 100644 --- a/file.c +++ b/file.c @@ -203,17 +203,15 @@ rpc_file_write(struct ubus_context *ctx, struct ubus_object *obj

Re: [OpenWrt-Devel] [PATCH]: Backporting of NAND support to mvebu

2014-01-29 Thread Luka Perkov
Hi Seif, On Tue, Jan 28, 2014 at 04:37:23PM -0800, Seif Mazareeb wrote: > Please find the follow repository: > https://github.com/mazareeb/openwrt/commits/master > > This repository adds 5 patches that mainly aim to back port the recently > added NAND support to mainline to openwrt. > On the way

[OpenWrt-Devel] [PATCH 4/5][rpcd] plugin: do proper error checking after dlsym()

2014-01-26 Thread Luka Perkov
-off-by: Luka Perkov --- plugin.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugin.c b/plugin.c index 687944d..5e7a1ea 100644 --- a/plugin.c +++ b/plugin.c @@ -412,15 +412,17 @@ rpc_plugin_register_library(struct ubus_context *ctx, const char *path) { struct

[OpenWrt-Devel] [PATCH 5/5][rpcd] fix segmentation fault when plugins are loaded

2014-01-26 Thread Luka Perkov
Function rpc_plugin_register_library() is modifying the struct's contents in list_add() call. That said, the rpc_plugin struct should not be defined as const. This caused segmentation fault when built on up-to-date Arch Linux. Signed-off-by: Luka Perkov --- file.c | 2 +- iwinfo.c | 2

[OpenWrt-Devel] [PATCH 2/5][rpcd] file: create a file on write if it does not exist

2014-01-26 Thread Luka Perkov
Signed-off-by: Luka Perkov --- file.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/file.c b/file.c index d22add5..8eef2b5 100644 --- a/file.c +++ b/file.c @@ -203,17 +203,15 @@ rpc_file_write(struct ubus_context *ctx, struct ubus_object *obj

[OpenWrt-Devel] [PATCH 3/5][rpcd] file: when writing a file make sure it's contents are stored

2014-01-26 Thread Luka Perkov
Fixes problems with ubi(fs). Signed-off-by: Luka Perkov --- file.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/file.c b/file.c index 8eef2b5..f9c65a2 100644 --- a/file.c +++ b/file.c @@ -214,8 +214,14 @@ rpc_file_write(struct ubus_context *ctx, struct ubus_object

[OpenWrt-Devel] [PATCH 1/5][rpcd] fix whitespaces

2014-01-26 Thread Luka Perkov
Signed-off-by: Luka Perkov --- file.c| 6 +++--- include/rpcd/plugin.h | 4 ++-- iwinfo.c | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/file.c b/file.c index 57e0894..d22add5 100644 --- a/file.c +++ b/file.c @@ -87,7 +87,7 @@ enum

[OpenWrt-Devel] [PATCH] [ubus] lua: allow methods with no arguments

2014-01-26 Thread Luka Perkov
dealing with a table in the first place. Signed-off-by: Luka Perkov --- lua/ubus.c | 16 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/lua/ubus.c b/lua/ubus.c index 45ea3bb..6da935d 100644 --- a/lua/ubus.c +++ b/lua/ubus.c @@ -349,12 +349,11 @@ static int

[OpenWrt-Devel] [PATCH] [ubus] lua: fix whitespaces and typo

2014-01-26 Thread Luka Perkov
Signed-off-by: Luka Perkov --- lua/ubus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/ubus.c b/lua/ubus.c index 84ee06b..45ea3bb 100644 --- a/lua/ubus.c +++ b/lua/ubus.c @@ -19,8 +19,8 @@ #include #include -#define MODNAME"ubus" -#defin

Re: [OpenWrt-Devel] BT Home Hub 2B support - nand driver patch (for comment only)

2014-01-21 Thread Luka Perkov
On Tue, Jan 21, 2014 at 08:50:03PM +0100, Ben Mulvihill wrote: > Any enlightenment you can provide will be gratefully received. I have not tested this patch yet but it could be related to your problem... Luka >From ad77bb90cbebcd107e81722e1fbdcff91fe55614 Mon Sep 17 00:00:00 2001 From: Antonio

Re: [OpenWrt-Devel] Adding Go to OpenWRT

2014-01-07 Thread Luka Perkov
Hi Geert-Johan, On Tue, Jan 07, 2014 at 11:13:50AM +0100, Geert-Johan Riemer wrote: > I'm working on adding Go (http://golang.org) to OpenWRT. Actually, I already > have it working. Great! > The goals: > - Create gcc crosscompiler with the gccgo frontend which can be used to > compile a go pro

Re: [OpenWrt-Devel] [PATCHv2][packages] add libnetconf package

2014-01-04 Thread Luka Perkov
Hi Jiri, On Sat, Jan 04, 2014 at 10:00:12PM +0100, Jiří Šlachta wrote: > libnetconf is a NETCONF library in C intended for building NETCONF > clients and servers. It provides basic functions to connect NETCONF > client and server to each other via SSH, to send and receive NETCONF > messages and to

Re: [OpenWrt-Devel] [PATCH][packages]gstreamer: update grammar.y to build with bison 3

2013-12-30 Thread Luka Perkov
Hi John, On Tue, Dec 03, 2013 at 11:02:49PM -0500, John Vogel wrote: > In gstreamer's gst/parse/grammar.y, YYLEX_PARAM is no longer supported in > bison 3. > > This patch replaces YYLEX_PARAM with %lex-param. > > Signed-off-by John Vogel > > diff --git a/multimedia/gstreamer/patches/005-YYLEX

Re: [OpenWrt-Devel] [PATCH] [packages] debootstrap: version bump to 1.0.55

2013-12-20 Thread Luka Perkov
Hi Sandy, On Fri, Nov 08, 2013 at 10:37:19PM -0500, Sandy McArthur Jr wrote: > Updates PKG_VERSION and PKG_MD5SUM to version 1.0.55 as that is > actually available at > http://ftp.debian.org/debian/pool/main/d/debootstrap/ > > This is part of my first attempt to build an OpenWrt image. I don't >

Re: [OpenWrt-Devel] [PATCH][packages]debootstrap: version in Makefile not available

2013-12-20 Thread Luka Perkov
Hi John, On Wed, Nov 27, 2013 at 07:06:13PM -0500, John Vogel wrote: > debootstrap-udeb 1.0.48 is no longer available. The version that is > currently available from upstream is 1.0.55. > > This patch bumps debootstrap PKG_VERSION to 1.0.55. > > Signed-off-by John Vogel > > --- > diff --git a/

Re: [OpenWrt-Devel] [PATCH] imx6: proper fix for io-remap

2013-12-18 Thread Luka Perkov
Hi Tim, On Thu, Dec 12, 2013 at 09:31:44AM -0800, Tim Harvey wrote: > The previous patch was not the proper fix for PCI devices that require io > resources. The new patch is the proper fix backported from mainline. > > Signed-off-by: Tim Harvey > --- > ...remove-outbound-io-mem-ATU-region-mapp

Re: [OpenWrt-Devel] [PATCH 1/3] kernel: add rtc-ds1672 module support

2013-12-16 Thread Luka Perkov
On Thu, Dec 12, 2013 at 12:32:09AM -0800, Tim Harvey wrote: > Signed-off-by: Tim Harvey > --- > package/kernel/linux/modules/other.mk | 17 + > 1 file changed, 17 insertions(+) Applied in r39110. Thanks! Luka ___ openwrt-devel mailing

Re: [OpenWrt-Devel] [PATCH 2/3] imx6: add rtc feature support

2013-12-16 Thread Luka Perkov
On Thu, Dec 12, 2013 at 12:32:10AM -0800, Tim Harvey wrote: > Signed-off-by: Tim Harvey > --- > target/linux/imx6/Makefile| 2 +- > target/linux/imx6/config-3.10 | 4 > 2 files changed, 5 insertions(+), 1 deletion(-) Applied with minor changes and 3.12 support in r39111. Thanks! Luka _

Re: [OpenWrt-Devel] [PATCH 3/3] imx6: ventana: add default kernel modules for GSC

2013-12-16 Thread Luka Perkov
On Thu, Dec 12, 2013 at 12:32:11AM -0800, Tim Harvey wrote: > All Gateworks Ventana boards have a Gateworks System Controller > which emulates the following: > - ds1672 RTC > - pca953x GPIO expander > - hardware monitor > - at24 eeprom > > Signed-off-by: Tim Harvey > --- > target/linux/imx6/

Re: [OpenWrt-Devel] [PATCH] imx6: ventana: add canbus utils

2013-12-16 Thread Luka Perkov
On Thu, Dec 12, 2013 at 09:32:23AM -0800, Tim Harvey wrote: > Some of the Gateworks Ventana boards have CAN bus support, therefore > we will install the userspace utils. > > Signed-off-by: Tim Harvey > --- > target/linux/imx6/profiles/120-gateworks.mk | 3 ++- > 1 file changed, 2 insertions(+),

Re: [OpenWrt-Devel] [PATCH 1/4] [package] uboot-kirkwood: update to 2013.10

2013-12-16 Thread Luka Perkov
Hi Alexander, On Mon, Dec 16, 2013 at 08:54:04AM +0100, Alexander Couzens wrote: > I've tested it the dockstar uboot as well the ubifs commands. > The kirkwood target should depend on target images options include zImage and > include dtb into rootfs. Thank you for testing! Now we only need som

[OpenWrt-Devel] [PATCH 2/4] kirkwood: update support for iconnect

2013-12-15 Thread Luka Perkov
oader (initial or second stage). Signed-off-by: Luka Perkov CC: Imre Kaloz --- .../base-files/etc/uci-defaults/02_network | 4 ++- target/linux/kirkwood/image/Makefile | 6 ++-- .../linux/kirkwood/patches-3.10/130-iconnect.patch | 41 ++ target/

[OpenWrt-Devel] [PATCH 3/4] kirkwood: update support for ib62x0

2013-12-15 Thread Luka Perkov
0 openwrt-kirkwood-ib62x0-rootfs.ubifs ; ubi write 0x80 rootfs ${filesize} ; reset Signed-off-by: Luka Perkov Tested-by: Luka Perkov CC: Imre Kaloz --- .../linux/kirkwood/patches-3.10/110-ib62x0.patch | 26 +- 1 file changed, 15 insertions(+), 11 deletions(-) diff

[OpenWrt-Devel] [PATCH 4/4] kirkwood: update support for dockstar

2013-12-15 Thread Luka Perkov
0 openwrt-kirkwood-dockstar-rootfs.ubifs ; ubi write 0x80 rootfs ${filesize} ; reset Note that commands were not tested on real board and should be executed if uboot-kirkwood package is used as a bootloader (initial or second stage). Signed-off-by: Luka Perkov CC: Imre Kaloz --- .../kir

[OpenWrt-Devel] [PATCH 1/4] [package] uboot-kirkwood: update to 2013.10

2013-12-15 Thread Luka Perkov
at it include parallel build support, use alphabetic order of the boards and introduce common OpenWrt configuration. Signed-off-by: Luka Perkov Tested-by (on ib62x0): Luka Perkov CC: Felix Kaechele CC: Wojciech Dubowik CC: Alexander Couzens CC: Daniel Engberg CC: Imre Kaloz --- ib62x0

Re: [OpenWrt-Devel] [PATCH][packages]i2c-tools: fix TARGET_CPPFLAGS

2013-12-15 Thread Luka Perkov
Hi John, On Fri, Dec 06, 2013 at 04:37:37PM -0500, John Vogel wrote: > The Makefile for i2c-tools sets TARGET_CPPFLAGS to point to the linux source > headers rather that the i2c-tools header, causing build failure. > > This patch changes TARGET_CPPFLAGS to point to the packages include dir. This

Re: [OpenWrt-Devel] [PATCH] packages: strongswan: Add second download mirror

2013-12-13 Thread Luka Perkov
On Fri, Dec 13, 2013 at 09:59:22AM +0100, Helmut Schaa wrote: > > Signed-off-by: Helmut Schaa > --- > net/strongswan/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied in r39043. Thanks! Luka ___ openwrt-devel mailing list openw

Re: [OpenWrt-Devel] [PATCH] imx6: add canbus support for Ventana boards

2013-12-11 Thread Luka Perkov
On Fri, Dec 06, 2013 at 01:10:46AM -0800, Tim Harvey wrote: > - The GW5400, GW5300, and GW5200 all have CAN bus option > > Signed-off-by: Tim Harvey > --- > target/linux/imx6/files-3.10/arch/arm/boot/dts/imx6dl-gw52xx.dts | 7 +++ > target/linux/imx6/files-3.10/arch/arm/boot/dts/imx6dl-gw53x

Re: [OpenWrt-Devel] [PATCH] imx6: add flexcan support

2013-12-11 Thread Luka Perkov
On Fri, Dec 06, 2013 at 01:10:19AM -0800, Tim Harvey wrote: > backport a upstream changes: > - 0060-flexcan.patch: >- add flexcan pinctrl and devicetree config > - 0061-can-flexcan-use-correct-clock-as-base-for-bit-rate-calculation.patch: >- fix a clock issue > - 062-imx6q-fix-the-wrong-

Re: [OpenWrt-Devel] [PATCH] kernel: add canbus kernel module support

2013-12-11 Thread Luka Perkov
On Fri, Dec 06, 2013 at 01:09:44AM -0800, Tim Harvey wrote: > Signed-off-by: Tim Harvey > --- > package/kernel/linux/modules/can.mk | 171 > > 1 file changed, 171 insertions(+) > create mode 100644 package/kernel/linux/modules/can.mk Applied with changes in

[OpenWrt-Devel] [PATCH] ixp4xx: upgrade: don't copy extra binaries

2013-12-09 Thread Luka Perkov
hexdump is already added to new temporary file system while less is not used at all. While at it, remove some trailing whitespaces. Signed-off-by: Luka Perkov CC: Imre Kaloz --- target/linux/ixp4xx/base-files/lib/upgrade/platform.sh | 7 ++- 1 file changed, 2 insertions(+), 5 deletions

Re: [OpenWrt-Devel] [PATCH] imx6: add support for GW53xx

2013-12-09 Thread Luka Perkov
On Fri, Dec 06, 2013 at 01:08:56AM -0800, Tim Harvey wrote: > The Gateworks GW53xx family of products is based on the Freescale > i.MX6DL SoC and offers a small form-factor with peripherals such as: Applied in r39012. Thanks! Luka ___ openwrt-devel mail

Re: [OpenWrt-Devel] [PATCH] kernel: added defines for 3.12

2013-12-09 Thread Luka Perkov
On Fri, Dec 06, 2013 at 01:02:33AM -0800, Tim Harvey wrote: > Signed-off-by: Tim Harvey > --- > target/linux/generic/config-3.12 | 6 ++ > 1 file changed, 6 insertions(+) Applied in r39009. Thanks! Luka ___ openwrt-devel mailing list openwrt-devel

Re: [OpenWrt-Devel] [PATCH] kernel: module updates for 3.12

2013-12-09 Thread Luka Perkov
On Fri, Dec 06, 2013 at 01:03:17AM -0800, Tim Harvey wrote: > Signed-off-by: Tim Harvey > --- > package/kernel/linux/modules/sound.mk | 13 + > package/kernel/linux/modules/usb.mk | 6 ++ > 2 files changed, 19 insertions(+) Applied with 'imx6: usb module update for 3.12' in r3

Re: [OpenWrt-Devel] Testing Sunxi target with cubieboard

2013-11-15 Thread Luka Perkov
Hi Saverio, On Thu, Nov 14, 2013 at 10:38:55PM +0100, Saverio Proto wrote: > can you give me some advice ? I've added only minimal support, it only worked with initramfs. Since last night (r38811) Zoltan took over the target and pushed 3.12 kernel. He should give you more information at this poin

Re: [OpenWrt-Devel] [PATCH 4/4] kirkwood: Add userland support for Pogoplug E02

2013-10-31 Thread Luka Perkov
Hi Felix, On Thu, Oct 31, 2013 at 11:11:56AM +0100, Felix Kaechele wrote: > This patch adds the userland support for the Pogoplug E02 by Cloud > Engines, Inc. > > Signed-off-by: Felix Kaechele > --- > .../kirkwood/base-files/etc/uci-defaults/01_leds| 4 > .../kirkwood/base-files/etc/u

<    1   2   3   4   5   >