Re: util-linux version update in Busybox packages

2023-10-12 Thread Christian Eggers
addressed in current Busybox version, is Busybox fixing > it in its upcoming releases? > > > > Thanks & regards, > > Ankit Siddhapura > > ___ Christian Eggers Software Engineer ​ ARRI Arnold & Richt

Re: [PATCH] chrt: support for musl C library

2020-10-15 Thread Christian Eggers
Hi Bernhard, On Thursday, 15 October 2020, 11:40:03 CEST, Bernhard Reutner-Fischer wrote: > On Fri, 11 Sep 2020 17:45:38 +0200 > > Christian Eggers wrote: > > musl "implements" several sched_xxx() functions by returning ENOSYS. As > > an alternative, either pthrea

[PING] chrt: support for musl C library

2020-10-14 Thread Christian Eggers
Gentle ping for a recent patch which fixes the "chrt" applet with the musl C library. http://lists.busybox.net/pipermail/busybox/2020-September/088226.html Best regards Christian [http://assets.arri.com/media/sign/2020-04-03-E-mail-signature-Stellar2_V1.jpg]

[PATCH] chrt: support for musl C library

2020-09-11 Thread Christian Eggers
/chrt.c?id=fcc3078754291d2f5121797eb91b364f8e24b2f1 References: http://git.musl-libc.org/cgit/musl/commit/src/sched/sched_setscheduler.c?id=1e21e78bf7a5c24c217446d8760be7b7188711c2 Signed-off-by: Christian Eggers --- util-linux/chrt.c | 31 +-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/

Ping

2020-07-22 Thread Christian Eggers
Gentle ping for my patches from June 29. [PATCH 1/3] shell: Fix "read -d ''" behavior Christian Eggers [PATCH 2/3] ip: Add support for "noprefixroute" option Christian Eggers [PATCH 3/3] ip address: Add support for "valid_lft" and "preferr

Re: Applet hwclock does not work

2020-07-07 Thread Christian Eggers
Dear Lukasz, Am Dienstag, 30. Juni 2020, 15:36:56 CEST schrieb Lukasz Serafin: > When I write: > > busybox hwclock -u -s > > I get the answer: > hwclock: settimeofday: Invalid argument I had a similar problem on my system. Did you set the system time (e.g. using "date" or "ntpdate") prior using "

[PATCH 2/3] ip: Add support for "noprefixroute" option

2020-06-29 Thread Christian Eggers
The "noprefixroute" option suppresses automatic generation of a routing table entry based on the interface's ip address. The ifa_flags field has only 8 bit. If higher bits are set, rta_tb[IFA_FLAGS] has to be used instead. Signed-off-by: Christian Eggers ---

[PATCH 3/3] ip address: Add support for "valid_lft" and "preferred_lft" options

2020-06-29 Thread Christian Eggers
Signed-off-by: Christian Eggers --- networking/libiproute/ip_common.h | 4 ++ networking/libiproute/ipaddress.c | 65 +++ 2 files changed, 62 insertions(+), 7 deletions(-) diff --git a/networking/libiproute/ip_common.h b/networking/libiproute/ip_common.h index

[PATCH 1/3] shell: Fix "read -d ''" behavior

2020-06-29 Thread Christian Eggers
med after comparing with the delimiter. Signed-off-by: Christian Eggers --- shell/shell_common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/shell_common.c b/shell/shell_common.c index 12c4a073c..42c4c9c97 100644 --- a/shell/shell_common.c +++ b