[LEDE-DEV] [PATCH] dropbear: Link ssh and scp command to /bin instead of /usr/bin

2017-08-30 Thread Rosen Penev
ssh and scp commands interfere with OpenSSH when installed in /usr/bin . One use case is when installing dropbear to get root access when only OpenSSH is available (OpenSSH disallows root password logins). Once dropbear installs, it replaces OpenSSH's executables, even when removed with opkg.

[LEDE-DEV] [PATCH] kernel: update 4.4 to 4.4.85

2017-08-30 Thread Kevin Darbyshire-Bryant
Refresh patches Compile & run tested: ar71xx - Archer C7 v2 Signed-off-by: Kevin Darbyshire-Bryant --- include/kernel-version.mk| 4 ++-- target/linux/ar71xx/patches-4.4/910-unaligned_access_hacks.patch | 2 +- 2 files

Re: [LEDE-DEV] Recent issues w/ sysupgrade

2017-08-30 Thread Philip Prindeville
Looking a little further into the console logging, what I’m seeing after a “dd” directly onto the flash is this: Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [6.299598] mount_root: loading kmods from

Re: [LEDE-DEV] [PATCH ubox 1/3] kmodloader: fix endianess check

2017-08-30 Thread Florian Fainelli
On 08/30/2017 06:23 AM, Hans Dedecker wrote: > Use __BYTE_ORDER macro to check system endianess as the macro's > __LITTLE_ENDIAN, __BIG_ENDIAN are defined irrespective of the > sytem endianess leading to an endianess check failure on big > endian systems. Good catch, can you add a Fixes: tag for

[LEDE-DEV] OpenWrt Summit - Ticket Sales and CFP, Reminder for prplwrt call tomorrow

2017-08-30 Thread Shelly Coen
Hi Everyone,  Tickets for the OpenWrt Summit are on sale now at openwrtsummit.eventbrite.com, we have a limited amount of early bird tickets available.  We have had a lot of responses to our survey but the more we have, the more accurate a picture we will have of the usage of OpenWrt/LEDE. 

[LEDE-DEV] [PATCH] procd: mdns: Support txt values with spaces

2017-08-30 Thread Karl Palsson
Properly quote the arguments so that you can register a service with TXT entries that contains spaces. Example: procd_add_mdns myservice tcp "key=descriptive text field 1" \ "another=something equally verbose" Output before: $ avahi-browse -r -v _myservice._tcp _myservice._tcp

Re: [LEDE-DEV] [PATCH ubox 1/3] kmodloader: fix endianess check

2017-08-30 Thread John Crispin
On 30/08/17 15:23, Hans Dedecker wrote: Use __BYTE_ORDER macro to check system endianess as the macro's __LITTLE_ENDIAN, __BIG_ENDIAN are defined irrespective of the sytem endianess leading to an endianess check failure on big endian systems. Thanks ! Acked-by: John Crispin

Re: [LEDE-DEV] Conditional dependencies in Makefiles

2017-08-30 Thread Ted Hess
Hi Felix - You make a good point here about the way we constructed the ffmpeg-full dependencies. We do need to re-think its configuration and somehow NOT create a 4th permanent build. Currently we have an ffmpeg-custom package which is not normally built but can be used for a custom tailored

Re: [LEDE-DEV] [PATCH ubox 2/3] kmodloader: lift restriction on module alias info

2017-08-30 Thread Yousong Zhou
On 30 August 2017 at 21:24, Hans Dedecker wrote: > kmodloader has a restriction of storing only 32 aliases for a given > module; as modules can have easily more than 32 aliases let's remove > the restriction by using a dynamic allocation mechanism when retrieving > the

[LEDE-DEV] [PATCH ubox 2/3] kmodloader: lift restriction on module alias info

2017-08-30 Thread Hans Dedecker
kmodloader has a restriction of storing only 32 aliases for a given module; as modules can have easily more than 32 aliases let's remove the restriction by using a dynamic allocation mechanism when retrieving the aliases. Signed-off-by: Hans Dedecker --- kmodloader.c | 14

[LEDE-DEV] [PATCH ubox 3/3] kmodloader: fix possible segfaults

2017-08-30 Thread Hans Dedecker
Signed-off-by: Hans Dedecker --- kmodloader.c | 12 1 file changed, 12 insertions(+) diff --git a/kmodloader.c b/kmodloader.c index 2ece0c2..1ddde0d 100644 --- a/kmodloader.c +++ b/kmodloader.c @@ -565,6 +565,9 @@ static int insert_module(char *path, const char

[LEDE-DEV] [PATCH ubox 1/3] kmodloader: fix endianess check

2017-08-30 Thread Hans Dedecker
Use __BYTE_ORDER macro to check system endianess as the macro's __LITTLE_ENDIAN, __BIG_ENDIAN are defined irrespective of the sytem endianess leading to an endianess check failure on big endian systems. Signed-off-by: Hans Dedecker --- kmodloader.c | 4 ++-- 1 file changed,

Re: [LEDE-DEV] [PATCH 2/2] main: add start|stop|flush|reload|restart event handling

2017-08-30 Thread John Crispin
On 28/08/17 09:57, Florian Eckert wrote: Add -e option for fw3 start|stop|flush|reload|restart events. If option is set, then common hotplug events are executed in dir '/etc/hotplug.d/firewall' Hi, this should be made into a generic feature inside procd. there is already hotplug trigger