Re: [PATCH] Before calling execvp(), reset needs to flush stdout.

2017-02-17 Thread Denys Vlasenko
Applied, thanks On Thu, Feb 16, 2017 at 3:45 PM, Glenn Matthews (glmatthe) wrote: > Before calling execvp(), reset needs to flush stdout. > > Otherwise the reset sequence gets dropped on the floor. > --- > AUTHORS | 3 +++ > console-tools/reset.c | 2 ++ > 2

[RFC 1/2] Add hidden option FEATURE_HAVE_SEAMLESS_COMPRESSION

2017-02-17 Thread Kang-Che Sung
All applets that allow seamless compression now automatically select FEATURE_HAVE_SEAMLESS_COMPRESSION, and FEATURE_SEAMLESS_* now depend on this. This means that "Make tar, rpm, modprobe etc understand ... data" questions will no longer be asked if there are no applets requiring it. Currently

[RFC 2/2] Simplify check on disabling FEATURE_COMPRESS_USAGE

2017-02-17 Thread Kang-Che Sung
As long as FEATURE_SEAMLESS_BZ2 depends on FEATURE_HAVE_SEAMLESS_COMPRESSION, we won't need to check individual applets that use seamless compression. Also add the missing FEATURE_UNZIP_BZIP2 to the preprocessor check. TODO: See if we need to address FEATURE_COMPRESS_BBCONFIG here as well.

[PATCH] Fix FEATURE_{GZIP,BZIP2}_DECOMPRESS link error

2017-02-17 Thread Kang-Che Sung
... when gzip is selected but not gunzip nor zcat, or when bzip2 is selected but not bunzip2 nor bzcat. This regression is introduced in b130f9f758b6404c6d0911a1c120937ae6ab47f8 ("Allow 'gzip -d' and 'bzip2 -d' without gunzip or bunzip2") Signed-off-by: Kang-Che Sung ---