summaryrefslogtreecommitdiffstats
path: root/config/busybox/fileutils/Config.in
diff options
context:
space:
mode:
Diffstat (limited to 'config/busybox/fileutils/Config.in')
-rw-r--r--config/busybox/fileutils/Config.in192
1 files changed, 192 insertions, 0 deletions
diff --git a/config/busybox/fileutils/Config.in b/config/busybox/fileutils/Config.in
new file mode 100644
index 000000000..5cbe77826
--- /dev/null
+++ b/config/busybox/fileutils/Config.in
@@ -0,0 +1,192 @@
+#
+# For a description of the syntax of this configuration file,
+# see scripts/kbuild/config-language.txt.
+#
+
+menu "File Utilities"
+ depends on BUSYBOX
+
+config BB_CONFIG_CHMOD
+ bool "chmod"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_CHOWN
+ bool "chown"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_CHGRP
+ bool "chgrp"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_CP
+ bool "cp"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_DD
+ bool "dd"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_DF
+ bool "df"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_DU
+ bool "du"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_LN
+ bool "ln"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_LS
+ bool "ls"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_FEATURE_LS_FILETYPES
+ bool " Enable filetyping options (-p and -F)"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_FEATURE_LS_FOLLOWLINKS
+ bool " Enable symlinks dereferencing (-L)"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_FEATURE_LS_RECURSIVE
+ bool " Enable recursion (-R)"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_FEATURE_LS_SORTFILES
+ bool " Sort the file names"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_FEATURE_LS_TIMESTAMPS
+ bool " Show file timestamps"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_FEATURE_LS_USERNAME
+ bool " Show username/groupnames"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_FEATURE_LS_COLOR
+ bool " Use color to identify file types"
+ default y
+ depends on BB_CONFIG_LS
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_MKDIR
+ bool "mkdir"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_MKFIFO
+ bool "mkfifo"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_MKNOD
+ bool "mknod"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_MV
+ bool "mv"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_RM
+ bool "rm"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_RMDIR
+ bool "rmdir"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_SYNC
+ bool "sync"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+config BB_CONFIG_TOUCH
+ bool "touch"
+ default n
+ help
+ Please submit a patch to add help text for this item.
+
+comment "Common options for cp and mv"
+ depends on BB_CONFIG_CP || BB_CONFIG_MV
+
+config BB_CONFIG_FEATURE_PRESERVE_HARDLINKS
+ bool " Preserve hard links"
+ default n
+ depends on BB_CONFIG_CP || BB_CONFIG_MV
+ help
+ Please submit a patch to add help text for this item.
+
+comment "Common options for ls and more"
+ depends on BB_CONFIG_LS || BB_CONFIG_MORE
+
+config BB_CONFIG_FEATURE_AUTOWIDTH
+ bool " Calculate terminal & column widths"
+ default n
+ depends on BB_CONFIG_LS || BB_CONFIG_MORE
+ help
+ Please submit a patch to add help text for this item.
+
+
+comment "Common options for df, du, ls"
+ depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
+
+config BB_CONFIG_FEATURE_HUMAN_READABLE
+ bool " Support for human readable output (example 13k, 23M, 235G)"
+ default n
+ depends on BB_CONFIG_DF || BB_CONFIG_DU || BB_CONFIG_LS
+ help
+ Please submit a patch to add help text for this item.
+
+endmenu
+