Re: [LEDE-DEV] fstools: ext4 overlay support - rootfs mounted twice bug

2016-06-29 Thread John Crispin
Hi, the patch is an attachement making inline commenting impossible. please send patches inline > mount_root: Don't mount ext4 rootfs twice the patch is incorrect, it breaks the vase where there is an overlay setup + extroot. after your patch the extroot codepath wont ever run if there is a

Re: [LEDE-DEV] fstools: ext4 overlay support - rootfs mounted twice bug

2016-06-29 Thread John Crispin
On 29/06/2016 12:11, Josua Mayer wrote: > Hi John, > > thansk for taking a look. I actually sent it this way by intention, > looking to get in touch with someone who had the original bug. > > Am 29.06.2016 um 08:30 schrieb John Crispin: >> Hi, >> >> the patch is an attachement making inline

Re: [LEDE-DEV] fstools: ext4 overlay support - rootfs mounted twice bug

2016-06-29 Thread Josua Mayer
Hi John, thansk for taking a look. I actually sent it this way by intention, looking to get in touch with someone who had the original bug. Am 29.06.2016 um 08:30 schrieb John Crispin: > Hi, > > the patch is an attachement making inline commenting impossible. please > send patches inline >From

Re: [LEDE-DEV] [PATCH netifd] alias: Set alias link device status to disabled when device is removed

2016-06-29 Thread Jo-Philipp Wich
Hi Hans, pushed to netifd.git - thank you! ~ Jo ___ Lede-dev mailing list Lede-dev@lists.infradead.org http://lists.infradead.org/mailman/listinfo/lede-dev

[LEDE-DEV] adding luci to snapshot images

2016-06-29 Thread John Crispin
Hi Jo, can we add luci to snapshot images until the first release is out ? people are using the images and seem to be confused by there being no luci. personally i would prefer to not include luci in snapshots to keep them as minimal as possible but until we have a first release it would make

Re: [LEDE-DEV] adding luci to snapshot images

2016-06-29 Thread Jo-Philipp Wich
Hi, it would certainly help to bridge the gap until the #1 release and it would give more testing exposure to the ui... My observation on the matter is this: People who do *not* want to have the ui included are either building from source or using the IB anyway and those users *requiring* a ui

Re: [LEDE-DEV] adding luci to snapshot images

2016-06-29 Thread L. D. Pinney
While I think adding luci will be convenient for many users. I feel that the initial release is the paramount issue and that builds containing luci could be added later. A nice solution would be to offer downloads built w/wo lucias well as adding 'luci' to the filename if built with luci.

[LEDE-DEV] [PATCH 3/4] ar71xx: image: unify indentation with 2 whitespaces

2016-06-29 Thread Yousong Zhou
Signed-off-by: Yousong Zhou --- target/linux/ar71xx/image/generic.mk | 224 +-- 1 file changed, 112 insertions(+), 112 deletions(-) diff --git a/target/linux/ar71xx/image/generic.mk b/target/linux/ar71xx/image/generic.mk index

[LEDE-DEV] [PATCH 1/4] ar71xx: hiwifi-hc6361: move packages selection to generic.mk

2016-06-29 Thread Yousong Zhou
Remove kmod-crypto-deflate and kmod-ledtrig-gpio as the device works the same by default without them Signed-off-by: Yousong Zhou --- target/linux/ar71xx/image/generic.mk| 15 +-- target/linux/ar71xx/image/legacy-devices.mk | 8 2 files

[LEDE-DEV] [PATCH 1/2] firmware: extract prism54-firmware into own package

2016-06-29 Thread Hauke Mehrtens
From: Hauke Mehrtens Instead of downloading the firmware for prism54 devices in the wireless.mk do it in an extra package Makefile. To ship the complete source code Intel ships our modified OpenWrt/LEDE + the content of the dl directory. We do not want to have any files

[LEDE-DEV] [PATCH 2/2] prism54-firmware: add also other p54 firmware to own package

2016-06-29 Thread Hauke Mehrtens
From: Hauke Mehrtens Extract the other p54 firmware files into the prism54-firmware package. Signed-off-by: Hauke Mehrtens --- package/firmware/prism54-firmware/Makefile | 75 -- package/kernel/mac80211/Makefile

Re: [LEDE-DEV] adding luci to snapshot images

2016-06-29 Thread Rafał Miłecki
On 29 June 2016 at 16:54, Jo-Philipp Wich wrote: > My observation on the matter is this: > People who do *not* want to have the ui included are either building > from source or using the IB anyway and those users *requiring* a ui tend > to be unable to spin their own builds (no

[LEDE-DEV] [PATCH v2 4/4] ar71xx: seama: fix making factory images

2016-06-29 Thread Yousong Zhou
rootfs part needs to be aligned to erase block size which is passed as the 6th argument to Image/Build/Seama and is now 65536 since commit commit 5119ee9 "ar71xx: fix bogus hardcoded kernel image size for Seama images (fixes #20585)", but $(($(6) - 64)) still assumes that the argument is a limit

[LEDE-DEV] [PATCH] ramips: Add support for the NixCore X1 Module

2016-06-29 Thread L. D. Pinney
The NixCore X1 is a Ralink/MediaTek rt5350 WiFi Module. http://nixcores.com/ Signed-off-by: L. D. Pinney Acked-by: Drew Gaylo --- target/linux/ramips/base-files/etc/board.d/02_network | 1 + target/linux/ramips/base-files/lib/ramips.sh | 3

[LEDE-DEV] [PATCH] e2fsprogs: fix build problem with very old libmagic

2016-06-29 Thread Hauke Mehrtens
From: Hauke Mehrtens The libmagic shipped with RedHat 5 does not define MAGIC_NO_CHECK_COMPRESS and MAGIC_NO_CHECK_COMPRESS. e2fsprogs should check for that otherwise the build will fail. Signed-off-by: Hauke Mehrtens ---

[LEDE-DEV] [PATCH netifd] alias: Set alias link device status to disabled when device is removed

2016-06-29 Thread Hans Dedecker
Fixes missing link state event propagation for an aliased device in case a new device is added as the link state has the last known status of the old device possible resulting into no link state change detection. Signed-off-by: Hans Dedecker --- alias.c | 4 +++- 1 file

[LEDE-DEV] [PATCH 1/2] fstools: support for ext4fs overlay

2016-06-29 Thread josua . mayer97
From: Ram Chandra Jangir This change will enables eMMC (ext4 fs) boot support, when we try to boot from eMMC card then it will read partition names from /sys/block/mmcblkX/mmcblkXY/uevent file and will mount the rootfs_data partition as ext4fs overlay. Signed-off-by: Ram

[LEDE-DEV] [PATCH 2/2] mount_root: Don't mount ext4 rootfs twice

2016-06-29 Thread josua . mayer97
From: Josua Mayer When there is a) no rootfs_data overlay partition, and b) /dev/root points to an ext4 partition the partition would be mounted twice, once as / and then as /overlay. The essence of this change is to return before mounting /overlay, if /dev/root has been

[LEDE-DEV] [Bug CC 15.05.1] ath9k crashes on TL-WR1043NDv1

2016-06-29 Thread Daniel Golle
Hi! I got an interesting bug on a quite ancient ath9k system which used to run stable on BB. Can anyone with more insight of ath9k tell me what's going on? DISTRIB_RELEASE='Chaos Calmer' DISTRIB_REVISION='r49378' system type : Atheros AR9132 rev 2 machine : TP-LINK

Re: [LEDE-DEV] fstools: ext4 overlay support - rootfs mounted twice bug

2016-06-29 Thread Josua Mayer
Am 29.06.2016 um 12:21 schrieb John Crispin: > > > On 29/06/2016 12:11, Josua Mayer wrote: >> Hi John, >> >> thansk for taking a look. I actually sent it this way by intention, >> looking to get in touch with someone who had the original bug. >> >> Am 29.06.2016 um 08:30 schrieb John Crispin:

Re: [LEDE-DEV] fstools: ext4 overlay support - rootfs mounted twice bug

2016-06-29 Thread John Crispin
On 29/06/2016 12:34, Josua Mayer wrote: > > > Am 29.06.2016 um 12:21 schrieb John Crispin: >> >> >> On 29/06/2016 12:11, Josua Mayer wrote: >>> Hi John, >>> >>> thansk for taking a look. I actually sent it this way by intention, >>> looking to get in touch with someone who had the original