diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-23 09:42:01 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-06-23 09:42:01 +0200 |
commit | e7ff017a1a8a429aabb02e80fbede1ce1126d8ea (patch) | |
tree | e575b52d78f70fcfacde82135328e2d89f9c997b /e2fsprogs | |
parent | 56bbbfae7df48f778362d1848d2a4afd2c293d76 (diff) | |
download | busybox-w32-e7ff017a1a8a429aabb02e80fbede1ce1126d8ea.tar.gz busybox-w32-e7ff017a1a8a429aabb02e80fbede1ce1126d8ea.tar.bz2 busybox-w32-e7ff017a1a8a429aabb02e80fbede1ce1126d8ea.zip |
chattr: update list of attributes in --help
function old new delta
packed_usage 33717 33823 +106
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'e2fsprogs')
-rw-r--r-- | e2fsprogs/chattr.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/e2fsprogs/chattr.c b/e2fsprogs/chattr.c index 5a7545e09..4dfe803d2 100644 --- a/e2fsprogs/chattr.c +++ b/e2fsprogs/chattr.c | |||
@@ -32,15 +32,24 @@ | |||
32 | //usage: "\nAttributes:" | 32 | //usage: "\nAttributes:" |
33 | //usage: "\n A No atime" | 33 | //usage: "\n A No atime" |
34 | //usage: "\n a Append only" | 34 | //usage: "\n a Append only" |
35 | //usage: "\n C No copy-on-write" | ||
35 | //usage: "\n c Compressed" | 36 | //usage: "\n c Compressed" |
36 | //usage: "\n D Synchronous dir updates" | 37 | //usage: "\n D Synchronous dir updates" |
37 | //usage: "\n d Don't backup with dump" | 38 | //usage: "\n d Don't backup with dump" |
39 | //usage: "\n E Encrypted" | ||
40 | //usage: "\n e File uses extents" | ||
41 | //usage: "\n F Case-insensitive dir" | ||
42 | //usage: "\n I Indexed dir" | ||
38 | //usage: "\n i Immutable" | 43 | //usage: "\n i Immutable" |
39 | //usage: "\n j Write data to journal first" | 44 | //usage: "\n j Write data to journal first" |
40 | //usage: "\n s Zero storage when deleted" | 45 | //usage: "\n N File is stored in inode" |
46 | //usage: "\n P Hierarchical project ID dir" | ||
41 | //usage: "\n S Synchronous file updates" | 47 | //usage: "\n S Synchronous file updates" |
48 | //usage: "\n s Zero storage when deleted" | ||
49 | //usage: "\n T Top of dir hierarchy" | ||
42 | //usage: "\n t Don't tail-merge with other files" | 50 | //usage: "\n t Don't tail-merge with other files" |
43 | //usage: "\n u Allow undelete" | 51 | //usage: "\n u Allow undelete" |
52 | //usage: "\n V Verity" | ||
44 | 53 | ||
45 | #include "libbb.h" | 54 | #include "libbb.h" |
46 | #include "e2fs_lib.h" | 55 | #include "e2fs_lib.h" |