[PATCH] Add feature to gzip rotated message logs.

2012-06-05 Thread Danomi Manchego
Signed-off-by: Danomi Manchego danomimanchego...@gmail.com --- sysklogd/Config.src |7 +++ sysklogd/syslogd.c | 23 ++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/sysklogd/Config.src b/sysklogd/Config.src index b7a494e..5ca86f4 100644

[PATCH 1/1] install: add kconfig option to specify --noclobber

2014-04-15 Thread Danomi Manchego
adds a kconfig switch to specify --noclobber when configured to install with soft or hard links, and modifies the install.sh to process all the input arguments. Signed-off-by: Danomi Manchego danomimanchego...@gmail.com --- Config.in |8 Makefile.custom|3

Re: ifup/down broken!!!

2016-09-25 Thread Danomi Manchego
All, i thought I'd share a previous experience, in case it helped. In one of our projects, we had multiple ethernet interfaces for a time, controlled by full-blown ifplugd, but using bb ifupdown. On start-up, I would find that the two interfaces coming up at the same time would result in

[PATCH 1/1] ifupdown: add write lock around ifstate access

2016-09-28 Thread Danomi Manchego
So that concurrent access on systems with multiple network interfaces correctly update the ifstate file. Signed-off-by: Danomi Manchego <danomimanchego...@gmail.com> --- networking/ifupdown.c | 31 +++ 1 file changed, 31 insertions(+) diff --git a/netw

Re: [PATCH 1/1] ifupdown: add write lock around ifstate access

2016-09-29 Thread Danomi Manchego
Denys, On Thu, Sep 29, 2016 at 12:25 PM, Denys Vlasenko <vda.li...@googlemail.com> wrote: > On Thu, Sep 29, 2016 at 5:04 AM, Danomi Manchego > <danomimanchego...@gmail.com> wrote: >> So that concurrent access on systems with multiple >> network interfaces cor

ifup udhcpc command line option broken?

2016-12-21 Thread Danomi Manchego
Seems like this IFUPDOWN dependency in 1.26.0 is no longer any good? config IFUPDOWN_UDHCPC_CMD_OPTIONS string "ifup udhcpc command line options" default "-R -n" depends on IFUPDOWN && UDHCPC Danomi - ___ busybox mailing list busybox@busybox.net

Re: udhcpc6 client_id option bug

2021-12-13 Thread Danomi Manchego
message. So - much better. Thank your for your prompt response on this. Regards, Danomi - On Sun, Dec 12, 2021 at 11:17 AM Denys Vlasenko wrote: > > On Thu, Dec 9, 2021 at 1:36 AM Danomi Manchego > wrote: > > > Maybe udhcp_find_option needs a "bool dhcpv6" arg just like

udhcpc6 client_id option bug

2021-12-08 Thread Danomi Manchego
maybHi, I've been using BusyBox 1.34.1 for IPv6 stuff. I noticed that the DHCPv6 RELEASE does not include the client ID option (required by RFC8415, sec. 18.2.7), even though there is code to do it in send_d6_release: /* Client-id */ ci = udhcp_find_option(client_data.options,

udhcpc6 renew message copy/paste error

2022-04-01 Thread Danomi Manchego
Hi, The send_d6_renew function in d6_dhcpc.c has: /* Fill in: msg type, xid, ELAPSED_TIME */ opt_ptr = init_d6_packet(, DHCPREQUEST); The use of DHCPREQUEST appears to be a copy/paste error from the IPv4 client. It should be D6_MSG_RENEW, which is defined in d6_common.h but not used

mount -w flag

2022-02-10 Thread Danomi Manchego
Hi. It looks like -w flag works with the mount applet. However, -2 does not show in mount --help, presumably due to an extra //: //usage: "\n -r Read-only mount" usage: "\n -w Read-write mount (default)" //usage: "\n -t FSTYPE[,...] Filesystem type(s)" Mistake? Thanks in advance, Danomi -

Re: mount -w flag

2022-02-10 Thread Danomi Manchego
Sorry, typo - "However -w does not show in mount --help, ..." On Thu, Feb 10, 2022 at 12:44 PM Danomi Manchego wrote: > > Hi. It looks like -w flag works with the mount applet. However, -2 > does not show in mount --help, presumably due to an extra //: > > //usag

Re: udhcpc6 kernel listen mode is broken

2022-06-03 Thread Danomi Manchego
, 2022 at 9:34 PM Danomi Manchego wrote: > > Hello, > > On April 1, I sent "udhcpc6 renew message copy/paste error" email > about udhcpc6 sends the wrong message ID for Renew message due to > copy/paste error from IPv4 dhcpc.c. (Was DHCPREQUEST, should be > D6_MS

udhcpc6 kernel listen mode is broken

2022-05-10 Thread Danomi Manchego
Hello, On April 1, I sent "udhcpc6 renew message copy/paste error" email about udhcpc6 sends the wrong message ID for Renew message due to copy/paste error from IPv4 dhcpc.c. (Was DHCPREQUEST, should be D6_MSG_RENEW.) After fixing that, I found that the Renew is sent correctly, and the DHCPv6

Re: udhcpc6 kernel listen mode is broken

2022-08-05 Thread Danomi Manchego
Yes, these changes work - they match what I patched locally. Thanks for getting back to this. On Tue, Aug 2, 2022 at 9:35 AM Denys Vlasenko wrote: > > Fixed, thank you. Can you try current git? > > On Sat, Jun 4, 2022 at 2:58 AM Danomi Manchego > wrote: > > > > S