Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/e2fsprogs/chattr.c

    r3232 r3621  
    1010 * Public License
    1111 */
     12//config:config CHATTR
     13//config:   bool "chattr"
     14//config:   default y
     15//config:   help
     16//config:     chattr changes the file attributes on a second extended file system.
    1217
    13 /*
    14  * History:
    15  * 93/10/30 - Creation
    16  * 93/11/13 - Replace stat() calls by lstat() to avoid loops
    17  * 94/02/27 - Integrated in Ted's distribution
    18  * 98/12/29 - Ignore symlinks when working recursively (G M Sipe)
    19  * 98/12/29 - Display version info only when -V specified (G M Sipe)
    20  */
     18//applet:IF_CHATTR(APPLET(chattr, BB_DIR_BIN, BB_SUID_DROP))
     19
     20//kbuild:lib-$(CONFIG_CHATTR) += chattr.o e2fs_lib.o
    2121
    2222//usage:#define chattr_trivial_usage
    2323//usage:       "[-R] [-+=AacDdijsStTu] [-v VERSION] [FILE]..."
    2424//usage:#define chattr_full_usage "\n\n"
    25 //usage:       "Change file attributes on an ext2 fs\n"
     25//usage:       "Change ext2 file attributes\n"
    2626//usage:     "\nModifiers:"
    27 //usage:     "\n    -   Remove attributes"
    28 //usage:     "\n    +   Add attributes"
    29 //usage:     "\n    =   Set attributes"
     27//usage:     "\n    -,+,=   Remove/add/set attributes"
    3028//usage:     "\nAttributes:"
    3129//usage:     "\n    A   Don't track atime"
     
    3735//usage:     "\n    j   Write all data to journal first"
    3836//usage:     "\n    s   Zero disk storage when deleted"
    39 //usage:     "\n    S   Write file contents synchronously"
     37//usage:     "\n    S   Write synchronously"
    4038//usage:     "\n    t   Disable tail-merging of partial blocks with other files"
    4139//usage:     "\n    u   Allow file to be undeleted"
    4240//usage:     "\n    -R  Recurse"
    43 //usage:     "\n    -v  Set the file's version/generation number"
     41//usage:     "\n    -v VER  Set version/generation number"
    4442
    4543#include "libbb.h"
Note: See TracChangeset for help on using the changeset viewer.