Magellan Linux

Diff of /trunk/mkinitrd-magellan/busybox/coreutils/Config.in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 983 by niro, Fri Apr 24 18:33:46 2009 UTC revision 984 by niro, Sun May 30 11:32:42 2010 UTC
# Line 52  config CHOWN Line 52  config CHOWN
52    chown is used to change the user and/or group ownership    chown is used to change the user and/or group ownership
53    of files.    of files.
54    
55    config FEATURE_CHOWN_LONG_OPTIONS
56     bool "Enable long options"
57     default n
58     depends on CHOWN && LONG_OPTS
59     help
60      Enable use of long options
61    
62  config CHROOT  config CHROOT
63   bool "chroot"   bool "chroot"
64   default n   default n
# Line 78  config CP Line 85  config CP
85   help   help
86    cp is used to copy files and directories.    cp is used to copy files and directories.
87    
88    config FEATURE_CP_LONG_OPTIONS
89     bool "Enable long options for cp"
90     default n
91     depends on CP && LONG_OPTS
92     help
93      Enable long options for cp.
94      Also add support for --parents option.
95    
96  config CUT  config CUT
97   bool "cut"   bool "cut"
98   default n   default n
# Line 100  config FEATURE_DATE_ISOFMT Line 115  config FEATURE_DATE_ISOFMT
115    Enable option (-I) to output an ISO-8601 compliant    Enable option (-I) to output an ISO-8601 compliant
116    date/time string.    date/time string.
117    
118    config FEATURE_DATE_COMPAT
119     bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format"
120     default y
121     depends on DATE
122     help
123      System time can be set by 'date -s DATE' and simply 'date DATE',
124      but formats of DATE string are different. 'date DATE' accepts
125      a rather weird MMDDhhmm[[YY]YY][.ss] format with completely
126      unnatural placement of year between minutes and seconds.
127      date -s (and other commands like touch -d) use more sensible
128      formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss).
129    
130      With this option off, 'date DATE' is 'date -s DATE' support
131      the same format. With it on, 'date DATE' additionally supports
132      MMDDhhmm[[YY]YY][.ss] format.
133    
134  config DD  config DD
135   bool "dd"   bool "dd"
136   default n   default n
# Line 113  config FEATURE_DD_SIGNAL_HANDLING Line 144  config FEATURE_DD_SIGNAL_HANDLING
144   default y   default y
145   depends on DD   depends on DD
146   help   help
147    sending a SIGUSR1 signal to a running `dd' process makes it    Sending a SIGUSR1 signal to a running `dd' process makes it
148    print to standard error the number of records read and written    print to standard error the number of records read and written
149    so far, then to resume copying.    so far, then to resume copying.
150    
151    $ dd if=/dev/zero of=/dev/null&    $ dd if=/dev/zero of=/dev/null&
152    $ pid=$! kill -USR1 $pid; sleep 1; kill $pid    $ pid=$! kill -USR1 $pid; sleep 1; kill $pid
153    10899206+0 records in 10899206+0 records out    10899206+0 records in
154      10899206+0 records out
155    
156    config FEATURE_DD_THIRD_STATUS_LINE
157     bool "Enable the third status line upon signal"
158     default n
159     depends on DD && FEATURE_DD_SIGNAL_HANDLING
160     help
161      Displays a coreutils-like third status line with transferred bytes,
162      elapsed time and speed.
163    
164  config FEATURE_DD_IBS_OBS  config FEATURE_DD_IBS_OBS
165   bool "Enable ibs, obs and conv options"   bool "Enable ibs, obs and conv options"
# Line 189  config ECHO Line 229  config ECHO
229  config FEATURE_FANCY_ECHO  config FEATURE_FANCY_ECHO
230   bool "Enable echo options (-n and -e)"   bool "Enable echo options (-n and -e)"
231   default y   default y
232   depends on ECHO || ASH_BUILTIN_ECHO   depends on ECHO || ASH_BUILTIN_ECHO || HUSH
233   help   help
234    This adds options (-n and -e) to echo.    This adds options (-n and -e) to echo.
235    
# Line 204  config ENV Line 244  config ENV
244  config FEATURE_ENV_LONG_OPTIONS  config FEATURE_ENV_LONG_OPTIONS
245   bool "Enable long options"   bool "Enable long options"
246   default n   default n
247   depends on ENV && GETOPT_LONG   depends on ENV && LONG_OPTS
248   help   help
249    Support long options for the env applet.    Support long options for the env applet.
250    
# Line 217  config EXPAND Line 257  config EXPAND
257  config FEATURE_EXPAND_LONG_OPTIONS  config FEATURE_EXPAND_LONG_OPTIONS
258   bool "Enable long options"   bool "Enable long options"
259   default n   default n
260   depends on EXPAND && GETOPT_LONG   depends on EXPAND && LONG_OPTS
261   help   help
262    Support long options for the expand applet.    Support long options for the expand applet.
263    
# Line 249  config FOLD Line 289  config FOLD
289   help   help
290    Wrap text to fit a specific width.    Wrap text to fit a specific width.
291    
292    config FSYNC
293     bool "fsync"
294     default n
295     help
296      fsync is used to flush file-related cached blocks to disk.
297    
298  config HEAD  config HEAD
299   bool "head"   bool "head"
300   default n   default n
# Line 285  config INSTALL Line 331  config INSTALL
331  config FEATURE_INSTALL_LONG_OPTIONS  config FEATURE_INSTALL_LONG_OPTIONS
332   bool "Enable long options"   bool "Enable long options"
333   default n   default n
334   depends on INSTALL && GETOPT_LONG   depends on INSTALL && LONG_OPTS
335   help   help
336    Support long options for the install applet.    Support long options for the install applet.
337    
# Line 358  config FEATURE_LS_USERNAME Line 404  config FEATURE_LS_USERNAME
404  config FEATURE_LS_COLOR  config FEATURE_LS_COLOR
405   bool "Allow use of color to identify file types"   bool "Allow use of color to identify file types"
406   default y   default y
407   depends on LS && GETOPT_LONG   depends on LS && LONG_OPTS
408   help   help
409    This enables the --color option to ls.    This enables the --color option to ls.
410    
# Line 388  config MKDIR Line 434  config MKDIR
434  config FEATURE_MKDIR_LONG_OPTIONS  config FEATURE_MKDIR_LONG_OPTIONS
435   bool "Enable long options"   bool "Enable long options"
436   default n   default n
437   depends on MKDIR && GETOPT_LONG   depends on MKDIR && LONG_OPTS
438   help   help
439    Support long options for the mkdir applet.    Support long options for the mkdir applet.
440    
# Line 415  config MV Line 461  config MV
461  config FEATURE_MV_LONG_OPTIONS  config FEATURE_MV_LONG_OPTIONS
462   bool "Enable long options"   bool "Enable long options"
463   default n   default n
464   depends on MV && GETOPT_LONG   depends on MV && LONG_OPTS
465   help   help
466    Support long options for the mv applet.    Support long options for the mv applet.
467    
# Line 492  config RMDIR Line 538  config RMDIR
538  config FEATURE_RMDIR_LONG_OPTIONS  config FEATURE_RMDIR_LONG_OPTIONS
539   bool "Enable long options"   bool "Enable long options"
540   default n   default n
541   depends on RMDIR && GETOPT_LONG   depends on RMDIR && LONG_OPTS
542   help   help
543    Support long options for the rmdir applet, including    Support long options for the rmdir applet, including
544    --ignore-fail-on-non-empty for compatibility with GNU rmdir.    --ignore-fail-on-non-empty for compatibility with GNU rmdir.
# Line 509  config SHA1SUM Line 555  config SHA1SUM
555   help   help
556    Compute and check SHA1 message digest    Compute and check SHA1 message digest
557    
558    config SHA256SUM
559     bool "sha256sum"
560     default n
561     help
562      Compute and check SHA256 message digest
563    
564    config SHA512SUM
565     bool "sha512sum"
566     default n
567     help
568      Compute and check SHA512 message digest
569    
570  config SLEEP  config SLEEP
571   bool "sleep"   bool "sleep"
572   default n   default n
# Line 617  config TAIL Line 675  config TAIL
675    from files.    from files.
676    
677  config FEATURE_FANCY_TAIL  config FEATURE_FANCY_TAIL
678   bool "Enable extra tail options (-q, -s, and -v)"   bool "Enable extra tail options (-q, -s, -v, and -F)"
679   default y   default y
680   depends on TAIL   depends on TAIL
681   help   help
# Line 649  config TEST Line 707  config TEST
707  config FEATURE_TEST_64  config FEATURE_TEST_64
708   bool "Extend test to 64 bit"   bool "Extend test to 64 bit"
709   default n   default n
710   depends on TEST || ASH_BUILTIN_TEST   depends on TEST || ASH_BUILTIN_TEST || HUSH
711   help   help
712    Enable 64-bit support in test.    Enable 64-bit support in test.
713    
# Line 714  config UNEXPAND Line 772  config UNEXPAND
772  config FEATURE_UNEXPAND_LONG_OPTIONS  config FEATURE_UNEXPAND_LONG_OPTIONS
773   bool "Enable long options"   bool "Enable long options"
774   default n   default n
775   depends on UNEXPAND && GETOPT_LONG   depends on UNEXPAND && LONG_OPTS
776   help   help
777    Support long options for the unexpand applet.    Support long options for the unexpand applet.
778    
# Line 754  config FEATURE_WC_LARGE Line 812  config FEATURE_WC_LARGE
812   default n   default n
813   depends on WC   depends on WC
814   help   help
815    Use "unsigned long long" in wc for count variables.    Use "unsigned long long" in wc for counter variables.
816    
817  config WHO  config WHO
818   bool "who"   bool "who"
# Line 811  config FEATURE_HUMAN_READABLE Line 869  config FEATURE_HUMAN_READABLE
869   help   help
870    Allow df, du, and ls to have human readable output.    Allow df, du, and ls to have human readable output.
871    
872  comment "Common options for md5sum, sha1sum"  comment "Common options for md5sum, sha1sum, sha256sum, sha512sum"
873   depends on MD5SUM || SHA1SUM   depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM
874    
875  config FEATURE_MD5_SHA1_SUM_CHECK  config FEATURE_MD5_SHA1_SUM_CHECK
876   bool "Enable -c, -s and -w options"   bool "Enable -c, -s and -w options"
877   default n   default n
878   depends on MD5SUM || SHA1SUM   depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM
879   help   help
880    Enabling the -c options allows files to be checked    Enabling the -c options allows files to be checked
881    against pre-calculated hash values.    against pre-calculated hash values.

Legend:
Removed from v.983  
changed lines
  Added in v.984