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

    r3232 r3621  
    77 * Licensed under GPLv2, see file LICENSE in this source tree.
    88 */
     9//config:config TUNE2FS
     10//config:   bool "tune2fs"
     11//config:   default n  # off: it is too limited compared to upstream version
     12//config:   help
     13//config:     tune2fs allows the system administrator to adjust various tunable
     14//config:     filesystem parameters on Linux ext2/ext3 filesystems.
     15
     16//applet:IF_TUNE2FS(APPLET(tune2fs, BB_DIR_SBIN, BB_SUID_DROP))
     17
     18//kbuild:lib-$(CONFIG_TUNE2FS) += tune2fs.o
     19
     20//usage:#define tune2fs_trivial_usage
     21//usage:       "[-c MAX_MOUNT_COUNT] "
     22////usage:     "[-e errors-behavior] [-g group] "
     23//usage:       "[-i DAYS] "
     24////usage:     "[-j] [-J journal-options] [-l] [-s sparse-flag] "
     25////usage:     "[-m reserved-blocks-percent] [-o [^]mount-options[,...]] "
     26////usage:     "[-r reserved-blocks-count] [-u user] "
     27//usage:       "[-C MOUNT_COUNT] "
     28//usage:       "[-L LABEL] "
     29////usage:     "[-M last-mounted-dir] [-O [^]feature[,...]] "
     30////usage:     "[-T last-check-time] [-U UUID] "
     31//usage:       "BLOCKDEV"
     32//usage:
     33//usage:#define tune2fs_full_usage "\n\n"
     34//usage:       "Adjust filesystem options on ext[23] filesystems"
     35
    936#include "libbb.h"
    1037#include <linux/fs.h>
     
    2754#define FETCH_LE32(field) \
    2855    (sizeof(field) == 4 ? SWAP_LE32(field) : BUG_wrong_field_size())
    29 
    30 //usage:#define tune2fs_trivial_usage
    31 //usage:       "[-c MAX_MOUNT_COUNT] "
    32 ////usage:     "[-e errors-behavior] [-g group] "
    33 //usage:       "[-i DAYS] "
    34 ////usage:     "[-j] [-J journal-options] [-l] [-s sparse-flag] "
    35 ////usage:     "[-m reserved-blocks-percent] [-o [^]mount-options[,...]] "
    36 ////usage:     "[-r reserved-blocks-count] [-u user] "
    37 //usage:       "[-C MOUNT_COUNT] "
    38 //usage:       "[-L LABEL] "
    39 ////usage:     "[-M last-mounted-dir] [-O [^]feature[,...]] "
    40 ////usage:     "[-T last-check-time] [-U UUID] "
    41 //usage:       "BLOCKDEV"
    42 //usage:
    43 //usage:#define tune2fs_full_usage "\n\n"
    44 //usage:       "Adjust filesystem options on ext[23] filesystems"
    4556
    4657enum {
Note: See TracChangeset for help on using the changeset viewer.