Re: [PATCH] mount: add option to disable NFS completely

2023-05-25 Thread Reimu
On 2023/5/25 22:17, David Laight wrote: > From: Reimu >> Sent: 25 May 2023 15:04 >> >> This can save up to ~40 kbytes with uclibc and it helps a lot when >> you're building a very tiny busybox for embedded systems. >> --- >>  util-linux/mount.c | 14 +- >>  1 file changed, 13

RE: [PATCH] mount: add option to disable NFS completely

2023-05-25 Thread David Laight
From: Reimu > Sent: 25 May 2023 15:04 > > This can save up to ~40 kbytes with uclibc and it helps a lot when > you're building a very tiny busybox for embedded systems. > --- >  util-linux/mount.c | 14 +- >  1 file changed, 13 insertions(+), 1 deletion(-) > > diff --git

[PATCH] mount: add option to disable NFS completely

2023-05-25 Thread Reimu
This can save up to ~40 kbytes with uclibc and it helps a lot when you're building a very tiny busybox for embedded systems. ---  util-linux/mount.c | 14 +-  1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/util-linux/mount.c b/util-linux/mount.c index 4e65b6b46..1c3e2bf64

Re: [PATCH 2/2] od: add tests

2023-05-25 Thread Denys Vlasenko
Applied, thank you On Thu, May 11, 2023 at 4:06 PM David Leonard wrote: > > On Fri, 12 May 2023, David Leonard wrote: > > * Added tests for od (non-DESKTOP little-endian) > > * Allow 'optional' to invert meaning of a config option with '!' > > Hmm, that patch seems to have been a bit mangled in

Re: Suspicious BUG in hush, while 'elif' has more commands than 1, only the first command is executed

2023-05-25 Thread Denys Vlasenko
Thanks for the report. Fixed in git. On Fri, May 19, 2023 at 9:07 AM vsfos wrote: > > Tested on wsl ubuntu 22.04 and linux orangepi5 by executing scripts below: > > #!/bin/sh > if false; then > : nothing > elif echo 'test-1'; echo 'test-2' ; echo 'test-3'; then > echo "abcdefg-1" > fi >