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/lsattr.c

    r3232 r3621  
    1010 * Public License
    1111 */
     12//config:config LSATTR
     13//config:   bool "lsattr"
     14//config:   default y
     15//config:   select PLATFORM_LINUX
     16//config:   help
     17//config:     lsattr lists the file attributes on a second extended file system.
    1218
    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 - Display version info only when -V specified (G M Sipe)
    19  */
     19//applet:IF_LSATTR(APPLET(lsattr, BB_DIR_BIN, BB_SUID_DROP))
     20
     21//kbuild:lib-$(CONFIG_LSATTR) += lsattr.o e2fs_lib.o
    2022
    2123//usage:#define lsattr_trivial_usage
    2224//usage:       "[-Radlv] [FILE]..."
    2325//usage:#define lsattr_full_usage "\n\n"
    24 //usage:       "List file attributes on an ext2 fs\n"
     26//usage:       "List ext2 file attributes\n"
    2527//usage:     "\n    -R  Recurse"
    2628//usage:     "\n    -a  Don't hide entries starting with ."
    2729//usage:     "\n    -d  List directory entries instead of contents"
    2830//usage:     "\n    -l  List long flag names"
    29 //usage:     "\n    -v  List the file's version/generation number"
     31//usage:     "\n    -v  List version/generation number"
    3032
    3133#include "libbb.h"
Note: See TracChangeset for help on using the changeset viewer.