Re: [LEDE-DEV] [PATCH libubox 2/2] uloop: Enable utracing of multi-threaded programs

2017-09-13 Thread Yousong Zhou
On 12 September 2017 at 19:12, Michal Sojka wrote: > This is needed for Linux < 4.7 or < 4.4.13 to report ptrace events in > threads. > > Signed-off-by: Michal Sojka > --- > uloop.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/uloop.c b/uloop.c > index 3813e18..e6d77d

Re: [LEDE-DEV] [PATCH libubox 1/2] uloop: Fix race condition in SIGCHLD handling

2017-09-13 Thread Yousong Zhou
On 12 September 2017 at 19:12, Michal Sojka wrote: > When uloop_process_add() is called outside of uloop_run(), i.e. not > from a callback (which is the case of at least utrace and ujail), > child events can be missed. The reason is that when SIGCHILD handler > is installed in uloop_run(), after t

Re: [LEDE-DEV] [PATCH] rt2x00: port remaining patches for mac80211 from 4.13-rc6

2017-09-13 Thread Daniel Golle
Hi Hauke, On Thu, Sep 14, 2017 at 12:02:21AM +0200, Hauke Mehrtens wrote: > On 08/25/2017 12:02 AM, Daniel Golle wrote: > > Convert patches for RT3883 and RT3663 as well as support for > > external PA on MT7620 to use the changed calling convention for > > rt2.*_read(...) functions. > > > > Signe

Re: [LEDE-DEV] [RFC 0/4] mac80211: update to backports-4.13-rc6

2017-09-13 Thread Hauke Mehrtens
On 08/24/2017 11:40 PM, Hauke Mehrtens wrote: > This updates mac80211 to backports-4.13-rc6 based on kernel 4.13-rc6. > > This was compile tested on multiple targets and runtime tested on a > lantiq device with ath9k and ath10k. > I plan to create an official backports release based on kernel 4.

Re: [LEDE-DEV] [PATCH] rt2x00: port remaining patches for mac80211 from 4.13-rc6

2017-09-13 Thread Hauke Mehrtens
On 08/25/2017 12:02 AM, Daniel Golle wrote: > Convert patches for RT3883 and RT3663 as well as support for > external PA on MT7620 to use the changed calling convention for > rt2.*_read(...) functions. > > Signed-off-by: Daniel Golle > --- > ...rt2800lib-add-channel-configuration-function-.patch

[LEDE-DEV] [LEDE-DEV, v2, 10/11] uboot-at91: Add support for SAMA5D4 Xplained board

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Add support for SAMA5D4 Xplained board and options to select & build u-boot configs for different media storage. Signed-off-by: Sandeep Sheriker Mallikarjun --- package/boot/uboot-at91/Makefile | 24 ++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/package

[LEDE-DEV] [LEDE-DEV, v2, 11/11] at91bootstrap: New package at91bootstrap

2017-09-13 Thread Sandeep Sheriker Mallikarjun
at91bootstrap is a second-level bootloader for Microchip(Atmel AT91) SoCs. It provides a set of algorithms to manage the hardware initialization and to download the main application or a third-level bootloader(i.e. uboot) from specified boot media to main memory and execute it. Signed-off-by: Sand

[LEDE-DEV] [LEDE-DEV, v2, 09/11] uboot-at91: Add support for SAMA5D2 Xplained board

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Add support for SAMA5D2 Xplained board and options to select & build u-boot configs for different media storage. Signed-off-by: Sandeep Sheriker Mallikarjun --- package/boot/uboot-at91/Makefile | 17 - 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/package/boot/ub

[LEDE-DEV] [LEDE-DEV, v2, 08/11] uboot-at91: Add support for SAMA5D3 Xplained board

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Add support for SAMA5D3 Xplained board and options to select & build u-boot configs for different media storage. Signed-off-by: Sandeep Sheriker Mallikarjun --- package/boot/uboot-at91/Makefile | 16 +++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/package/boot/ubo

[LEDE-DEV] [LEDE-DEV, v2, 07/11] uboot-at91: move BUILD_SUBTARGET from U-Boot/Default to devices

2017-09-13 Thread Sandeep Sheriker Mallikarjun
currenlty U-Boot/Default supports only at91 legacy devices.To add sama5 support, moving BUILD_SUBTARGET from U-Boot/Default to target devices. Signed-off-by: Sandeep Sheriker Mallikarjun --- package/boot/uboot-at91/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/p

[LEDE-DEV] [LEDE-DEV, v2, 06/11] at91: Add UBI parameters for sama5d4.

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Add UBIFS_OPTS & UBINIZE_OPTS parameters for sama5d4 Xplained board. Signed-off-by: Sandeep Sheriker Mallikarjun --- target/linux/at91/image/Makefile | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/target/linux/at91/image/Makefile b/target/linux/at91/image/Makefile ind

[LEDE-DEV] [LEDE-DEV, v2, 01/11] at91: Renaming subtarget sama5d3 to sama5

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Renaming at91 subtarget sama5d3 to sama5 and using at91-sama5d3_xplained as a target device in sama5 subtarget.This will enable to add other sama5d2 & sama5d4 target devices in sama5 subtraget.This will avoid code duplication when sama5d2 & sama5d4 added as different subtarget. Signed-off-by: Sand

[LEDE-DEV] [LEDE-DEV,v2, 03/11] at91: Install zImage.

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Installing zImage to bin folder of device target. Signed-off-by: Sandeep Sheriker Mallikarjun --- target/linux/at91/image/Makefile | 6 ++ 1 file changed, 6 insertions(+) diff --git a/target/linux/at91/image/Makefile b/target/linux/at91/image/Makefile index 6e2b6b6..99c7e21 100644 --- a/ta

[LEDE-DEV] [LEDE-DEV,v2, 05/11] at91: Add SAMA5D4 device

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Add support for SAMA5D4 with target device as at91-sama5d4_xplained in SAMA5 subtarget and build images for SAMA5D4 Xplained board. Signed-off-by: Sandeep Sheriker Mallikarjun --- target/linux/at91/base-files/lib/at91.sh | 3 +++ target/linux/at91/image/sama5.mk | 8 2 files ch

[LEDE-DEV] [LEDE-DEV,v2, 04/11] at91: Add SAMA5D2 device

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Add support for SAMA5D2 with target device as at91-sama5d2_xplained in SAMA5 subtarget and build images for SAMA5D2 Xplained board. Signed-off-by: Sandeep Sheriker Mallikarjun --- target/linux/at91/base-files/lib/at91.sh | 3 +++ target/linux/at91/image/sama5.mk | 8 2 files ch

[LEDE-DEV] [LEDE-DEV, v2, 02/11] build: add image command for installing zImage file.

2017-09-13 Thread Sandeep Sheriker Mallikarjun
Signed-off-by: Sandeep Sheriker Mallikarjun --- include/image-commands.mk | 5 + 1 file changed, 5 insertions(+) diff --git a/include/image-commands.mk b/include/image-commands.mk index 2aac8fb..acf25d6 100644 --- a/include/image-commands.mk +++ b/include/image-commands.mk @@ -114,6 +114,11