Re: 1.22.1 is released

2014-01-19 Thread Bernhard Reutner-Fischer
On 20 January 2014 06:00:01 Denys Vlasenko wrote: 20 January 2014 -- BusyBox 1.22.1 (stable) Bug fix release. Please schedule the ash SHLVL for the next round. TIA, Sent with AquaMail for Android http://www.aqua-mail.com ___ busybox mailing lis

Fwd: Help installing busy box?

2014-01-19 Thread Denys Vlasenko
-- Forwarded message -- From: Brian Maneke Date: Fri, Jan 17, 2014 at 12:07 AM Subject: Help installing busy box? To: vda.li...@googlemail.com Hey i am trying to install busy box to my phone. LG OPTIMUS F3 Model: LG-LS720 Rom: JZ054K I have tried to install several different v

1.22.1 is released

2014-01-19 Thread Denys Vlasenko
20 January 2014 -- BusyBox 1.22.1 (stable) Bug fix release. 1.22.1 has fixes for: find (was requiring the path argument in some cases, unlike GNU find), grep (fixes for -w handling), ntpd (wasn't slewing time after large negative step), compile fixes for some configurations. -- vda _

Re: [PATCH 2/2] top.c: fix compilation warnings

2014-01-19 Thread Denys Vlasenko
Applied, thanks! On Sat, Jan 18, 2014 at 3:36 PM, Bartosz Golaszewski wrote: > pfd[1] is unused > > Signed-off-by: Bartosz Golaszewski > --- > procps/top.c |5 - > 1 file changed, 5 deletions(-) > > diff --git a/procps/top.c b/procps/top.c > index 51f1c1a..530f45f 100644 > --- a/procps/

Re: [PATCH 1/2] ntpd: fix compilation warnings

2014-01-19 Thread Denys Vlasenko
Applied, thanks! On Sat, Jan 18, 2014 at 3:36 PM, Bartosz Golaszewski wrote: > GCC complained about since_last_update being set but not used. > > Signed-off-by: Bartosz Golaszewski > --- > networking/ntpd.c |4 > 1 file changed, 4 insertions(+) > > diff --git a/networking/ntpd.c b/netw

[PATCH] Make networking/libiproute/iplink.c compile with kernel versions prior to 2.6.23

2014-01-19 Thread Eugene Rudoy
Without this patch it fails with: CC networking/libiproute/iplink.o networking/libiproute/iplink.c: In function 'vlan_parse_opt': networking/libiproute/iplink.c:331:9: error: variable 'flags' has initializer but incomplete type networking/libiproute/iplink.c:331:25: error: storage size of

[PATCH] acpid: add FEATURE_SYSLOG

2014-01-19 Thread souf
Hi, With this small patch, acpid can log to syslog Best regards. Souf. --- busybox-1.22.0/util-linux/Config.src.orig 2014-01-19 15:18:11.201728304 +0100 +++ busybox-1.22.0/util-linux/Config.src 2014-01-19 15:18:39.581727732 +0100 @@ -11,6 +11,7 @@ bool "acpid" default y select PLATFORM_LI

[PATCH] mdev - add SELinux support

2014-01-19 Thread Amadeusz Sławiński
Add support for relabeling files. Files created or modified by mdev should now have correct SELinux labels. --- util-linux/mdev.c | 13 + 1 file changed, 13 insertions(+) diff --git a/util-linux/mdev.c b/util-linux/mdev.c index e80b58f..c8ef48d 100644 --- a/util-linux/mdev.c +++ b/uti

[PATCH] add selinux support to mdev

2014-01-19 Thread Amadeusz Sławiński
I'm booting in enforcing mode and init initializes SELinux, later when mdev is started it needs to create files with correct permissions for system to work correctly. Following patch allows for easy booting of SELinux system with mdev as /dev manager. Amadeusz _

[PATCH] testsuite: fix last "which" change

2014-01-19 Thread Michael Tokarev
In commit afa63b2dcdc9b9 I replaced `type -p' with `command -pv'. But actually it is wrong, the right substitution is `command -v'. We need to find our busybox which is in the first directory in $PATH, so `command -p' should not be used because it uses default PATH, not current value of PATH wher

Re: bb-1.22.0 and grep -w

2014-01-19 Thread Sedat Dilek
On Sat, Jan 18, 2014 at 6:18 PM, Karl Godt wrote: > Sedat Dilek wrote: >> >> On Sat, Jan 18, 2014 at 9:25 AM, Karl Godt wrote: >> >>> >>> Dear Busybox-Team ! >>> >>> I am running Puppy Linux as my main OS, that relies on Busybox in the >>> intial >>> ramdisk about some 70% and also uses Busybox

Re: [PATCH 2/2] sort: check global flags on fallback sort

2014-01-19 Thread Denys Vlasenko
Applied, thanks! On Sat, Jan 18, 2014 at 3:25 PM, Bartosz Golaszewski wrote: > Sort now performs global reverse on fallback sort if -r is set. Before > only key local flags were checked. > > Signed-off-by: Bartosz Golaszewski > --- > coreutils/sort.c |7 +-- > testsuite/sort.tests |