diff options
author | Gao Xiang <hsiangkao@aol.com> | 2020-10-12 08:41:43 +0800 |
---|---|---|
committer | Gao Xiang <hsiangkao@aol.com> | 2020-10-12 23:44:56 +0800 |
commit | c631e56bfbb4ff03c8c5798754f31dec1928b49f (patch) | |
tree | 9106a7e7a1a03c94b2ee9ae9593ebbda13d73a9e | |
parent | 8a9e8046f170d0ea71d2ef7b2d39f9ce204c4697 (diff) |
AOSP: erofs-utils: update usage due to fs_config
After fs_config support is added, usage() should
be updated together as well.
Fixes: 8a9e8046f170 ("AOSP: erofs-utils: add fs_config support")
Link: https://lore.kernel.org/r/20201012003805.4068-1-hsiangkao@aol.com
Reviewed-by: Li Guifu <bluce.lee@aliyun.com>
Signed-off-by: Gao Xiang <hsiangkao@aol.com>
-rw-r--r-- | mkfs/main.c | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/mkfs/main.c b/mkfs/main.c index 1910034..6dda9e3 100644 --- a/mkfs/main.c +++ b/mkfs/main.c @@ -61,17 +61,23 @@ static void usage(void) { fputs("usage: [options] FILE DIRECTORY\n\n" "Generate erofs image from DIRECTORY to FILE, and [options] are:\n" - " -zX[,Y] X=compressor (Y=compression level, optional)\n" - " -d# set output message level to # (maximum 9)\n" - " -x# set xattr tolerance to # (< 0, disable xattrs; default 2)\n" - " -EX[,...] X=extended options\n" - " -T# set a fixed UNIX timestamp # to all files\n" - " --exclude-path=X avoid including file X (X = exact literal path)\n" - " --exclude-regex=X avoid including files that match X (X = regular expression)\n" + " -zX[,Y] X=compressor (Y=compression level, optional)\n" + " -d# set output message level to # (maximum 9)\n" + " -x# set xattr tolerance to # (< 0, disable xattrs; default 2)\n" + " -EX[,...] X=extended options\n" + " -T# set a fixed UNIX timestamp # to all files\n" + " --exclude-path=X avoid including file X (X = exact literal path)\n" + " --exclude-regex=X avoid including files that match X (X = regular expression)\n" #ifdef HAVE_LIBSELINUX - " --file-contexts=X specify a file contexts file to setup selinux labels\n" + " --file-contexts=X specify a file contexts file to setup selinux labels\n" +#endif + " --help display this help and exit\n" +#ifdef WITH_ANDROID + "\nwith following android-specific options:\n" + " --mount-point=X X=prefix of target fs path (default: /)\n" + " --product-out=X X=product_out directory\n" + " --fs-config-file=X X=fs_config file\n" #endif - " --help display this help and exit\n" "\nAvailable compressors are: ", stderr); print_available_compressors(stderr, ", "); } |