btrfs-progs: restore: list the supported compression
Show the list of supported compression algorithms in the help string as we now have optional LZO and ZSTD. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
73545c1fe6
commit
5c95441d2c
|
@ -1358,6 +1358,15 @@ static const char * const cmd_restore_usage[] = {
|
|||
" -v|--verbose deprecated, alias for global -v option",
|
||||
HELPINFO_INSERT_GLOBALS,
|
||||
HELPINFO_INSERT_VERBOSE,
|
||||
"",
|
||||
"Compression support: zlib"
|
||||
#if BTRFSRESTORE_LZO
|
||||
", lzo"
|
||||
#endif
|
||||
#if BTRFSRESTORE_ZSTD
|
||||
", zstd"
|
||||
#endif
|
||||
,
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue