Re: [LEDE-DEV] [RFC PATCH odhcpd] config: respect ignore uci option

2017-01-04 Thread Karl Palsson
Jo-Philipp Wich wrote: > The odhcpd documentation currently implies that "option ignore > 1" in a section of type "dhcp" will disable any services on the > referenced interface while the code actually ignores the > setting when initializing referenced interfaces. > > This commonly

Re: [LEDE-DEV] [PATCH v4 0/6] sunxi: rework image build and sysupgrade support

2017-01-04 Thread Felix Fietkau
On 2017-01-04 15:19, Yousong Zhou wrote: > This series mainly tries achieve the following goals > > - use new image generation method > - squashfs sdcard image support > - mkfs.f2fs or mkfs.ext4 remaining space within squashfs rootfs partition and >mount it as rw overlay > - sysupgrade

[LEDE-DEV] [PATCH RFC 1/3] busybox: convert netmsg applet to "new style" applet definition

2017-01-04 Thread Magnus Kroken
The "new style" busybox applet approach moves all config and build definitions related to an applet to its .c file. Signed-off-by: Magnus Kroken --- .../busybox/patches/210-add_netmsg_util.patch | 54 ++ 1 file changed, 15 insertions(+), 39

[LEDE-DEV] [PATCH RFC 2/3] busybox: convert lock applet to "new style" applet definitions

2017-01-04 Thread Magnus Kroken
Signed-off-by: Magnus Kroken --- .../utils/busybox/patches/220-add_lock_util.patch | 54 ++ 1 file changed, 15 insertions(+), 39 deletions(-) diff --git a/package/utils/busybox/patches/220-add_lock_util.patch

[LEDE-DEV] [PATCH v4 6/6] sunxi: define a Default profile

2017-01-04 Thread Yousong Zhou
Then the default package set was generated by sort | uniq all current available device packages and the result set seems tamable Signed-off-by: Yousong Zhou --- target/linux/sunxi/profiles/00-default.mk | 28 1 file changed, 28 insertions(+)

[LEDE-DEV] [PATCH v4 3/6] sunxi: add sysupgrade support

2017-01-04 Thread Yousong Zhou
Enalbe builtin support for FAT filesystem as we need to mount boot partition to store sysupgrade.tgz there Signed-off-by: Yousong Zhou --- .../sunxi/base-files/lib/preinit/79_move_config| 20 +++ .../linux/sunxi/base-files/lib/upgrade/platform.sh | 67

[LEDE-DEV] [PATCH v4 4/6] sunxi: use fwtool for checking sdcard images

2017-01-04 Thread Yousong Zhou
To achieve this, device tree compatible string was used as boardname and the value of it will be checked against supported_devices list. It should be noted that we do not distinguish between sun5i-a13-olimex-som and sun5i-a13-olinuxino as they share the same dts file. The other thing is that we

[LEDE-DEV] [PATCH v4 2/6] sunxi: make sdcard image with squashfs as rootfs

2017-01-04 Thread Yousong Zhou
Two things that need to be noted - There is no partition type id allocated for squashfs yet. In the case of sunxi, any non-zero value should work and we keep it 83 (the value for ext4) - Remaining spare space within the rootfs partition, not the entire sdcard space will be formated as

[LEDE-DEV] [PATCH] lantiq: fix console print

2017-01-04 Thread Hauke Mehrtens
The boot loader of many boards provides a kernel boot argument with a broken console parameter to the kernel. This will be taken before the stdout-path defined in device tree and the serial will not work on this board. Multiple boards are affected by this problem, so revert this patch for all

[LEDE-DEV] Finished porting of chan_lantiq to asterisk11 and asterisk13

2017-01-04 Thread Stefan Koch
Hi I have finished the chan_lantiq porting from asterisk 1.8 to asterisk 11 and asterisk 13. GIT-Repository: https://github.com/kochstefan/asterisk_channel_lantiq.git See branches: asterisk-1_8 (asterisk 1.8 needs glibc) asterisk-11 (asterisk 11 needs musl) asterisk-13 (asterisk 13 needs

[LEDE-DEV] [PATCH] uboot-sunxi: fixup making uboot-xxx-boot.scr

2017-01-04 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- This patch intends to fixup the commit rewriting uboot-sunxi: "uboot-sunxi: add uboot-sunxi-all for selecting all other variants" package/boot/uboot-sunxi/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: [LEDE-DEV] [RFC PATCH odhcpd] config: respect ignore uci option

2017-01-04 Thread Stijn Tintel
On 03-01-17 14:09, Jo-Philipp Wich wrote: > The odhcpd documentation currently implies that "option ignore 1" in a section > of type "dhcp" will disable any services on the referenced interface while the > code actually ignores the setting when initializing referenced interfaces. > > This commonly

[LEDE-DEV] [PATCH] ar71xx: add support for RB-941-2nD

2017-01-04 Thread Thibaut VARENE <ha...@slashdirt.org>
>From e55aa1ddff1563d582b456807f20c0457fcaed77 Mon Sep 17 00:00:00 2001 From: Thibaut VARENE Date: Wed, 4 Jan 2017 22:44:54 +0100 Subject: [PATCH] ar71xx: add support for RB-941-2nD Add full support for Mikrotik RB-941-2nD (hAP lite) Original patch by Sergey Sergeev

[LEDE-DEV] [PATCH] zlib: update to 1.2.10

2017-01-04 Thread Magnus Kroken
* Fix bug in deflate_stored() for zero-length input * Fix bug in gzwrite.c that produced corrupt gzip files Signed-off-by: Magnus Kroken --- Zlib authors recommend immediately upgrading from 1.2.9 due to these bugs. package/libs/zlib/Makefile | 4 ++-- 1 file changed, 2

[LEDE-DEV] [PATCH v4 1/6] sunxi: convert to new image generation method

2017-01-04 Thread Yousong Zhou
The new Device/xxx were transformed automatically from old profiles. Most device names are now taken from basename of the corresponding kernel device tree file. Device/sun5i-a13-olimex-som is an exception because it is not explicitly supported in the kernel yet and shares the same dts file with

[LEDE-DEV] [PATCH v4 0/6] sunxi: rework image build and sysupgrade support

2017-01-04 Thread Yousong Zhou
This series mainly tries achieve the following goals - use new image generation method - squashfs sdcard image support - mkfs.f2fs or mkfs.ext4 remaining space within squashfs rootfs partition and mount it as rw overlay - sysupgrade with fwtool check support Device profiles are

[LEDE-DEV] [PATCH v4 5/6] uboot-sunxi: add uboot-sunxi-all for selecting all other variants

2017-01-04 Thread Yousong Zhou
While at it, the following changes are introduced - Rewrite the Makefile for better readability - Make parallel builds possible Signed-off-by: Yousong Zhou --- package/boot/uboot-sunxi/Makefile | 192 ++ 1 file changed, 50

Re: [LEDE-DEV] [PATCH] uboot-sunxi: fixup making uboot-xxx-boot.scr

2017-01-04 Thread Felix Fietkau
On 2017-01-04 17:27, Yousong Zhou wrote: > Signed-off-by: Yousong Zhou > --- > This patch intends to fixup the commit rewriting uboot-sunxi: "uboot-sunxi: > add > uboot-sunxi-all for selecting all other variants" Folded into that commit in my staging tree. Thanks, -

Re: [LEDE-DEV] [PATCH v4 0/6] sunxi: rework image build and sysupgrade support

2017-01-04 Thread Yousong Zhou
On 4 January 2017 at 22:42, Felix Fietkau wrote: > On 2017-01-04 15:19, Yousong Zhou wrote: >> This series mainly tries achieve the following goals >> >> - use new image generation method >> - squashfs sdcard image support >> - mkfs.f2fs or mkfs.ext4 remaining space within

Re: [LEDE-DEV] [PATCH] brcm47xx: legacy: specify DEVICE_PACKAGES for all devices

2017-01-04 Thread Rafał Miłecki
On 29 December 2016 at 08:06, Rafał Miłecki wrote: > From: Rafał Miłecki > > This allows more feature complete images. Of course it affect the size, > e.g. enabling b43 bumped rootfs from 1569618 to 2029122 for me. > > Signed-off-by: Rafał Miłecki

Re: [LEDE-DEV] newbie opkg upgrading questions..

2017-01-04 Thread Bastian Bittorf
* Yousong Zhou [04.01.2017 09:09]: > > root@wzr-ag300h:~# mount > > proc on /proc type proc (ro,noatime) > > tmpfs on /tmp type tmpfs (rw,nosuid,nodev,noatime) > > overlayfs:/overlay on / type overlay > > (ro,noatime,lowerdir=/,upperdir=/overlay/upper,workdir=/overlay/work)