Re: [PATCH v2] udhcp: add option to set CoS priority

2023-04-12 Thread Pacien TRAN-GIRARD
Quoting Bernhard Reutner-Fischer (2023-04-12 20:51:16) > bloat-o-meter stats. > See 'make baseline; apply the patch; make bloatcheck' > and include the output in the commit message so folks are aware of the > costs of that functionality, please. If it's not too excessive, we may > not need a config

Re: [PATCH v2] udhcp: add option to set CoS priority

2023-04-12 Thread Bernhard Reutner-Fischer
On Tue, 11 Apr 2023 22:58:00 +0200 Clément Péron wrote: > Hi Pacien, > > On Tue, 11 Apr 2023 at 00:54, pacien wrote: > > > > I worked on my own version of this, before seeing that this one was > > already posted to the list. Sorry for the collision. > > > > Message-Id: <20230410214157.1017054-1

Re: [PATCH] build system: clean more files on make clean

2023-04-12 Thread Bernhard Reutner-Fischer
Hi Tomas! Applied, thanks! On Sun, 09 Apr 2023 10:19:29 +0200 (CEST) "Tomas Paukrt" wrote: > From 57bf559403d89133197d33a2a181815d1f057b2b Mon Sep 17 00:00:00 2001 > From: Tomas Paukrt > Date: Sun, 9 Apr 2023 09:06:43 +0200 > Subject: [PATCH] build system: clean more files on make clean > > S

Re: [PATCH] lineedit: fix crash when icanon set with -echo

2023-04-12 Thread Denys Vlasenko
Applied, thank you. On Mon, Apr 3, 2023 at 10:53 PM Akos Somfai wrote: > > When icanon is set with -echo (e.g. ssh from an emacs shell) then > S.state will remain null but later it will be deferenced causing ash to > crash. Fix: additional check on state. > --- > libbb/lineedit.c | 4 ++-- > 1 f

Re: sleep as an ash builtin

2023-04-12 Thread Denys Vlasenko
Indeed. Fixed. On Mon, Apr 10, 2023 at 6:11 PM Ron Yorston wrote: > > Denys Vlasenko wrote: > >Fixed. Please try current git. > > Thanks, Denys. Works now. > > But... > >/* Without this, bare "sleep" in ash shows _ash_ --help */ >if (ENABLE_ASH_SLEEP && applet_name[0] != 's') { > b