X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0d3fffa91dee49ba80032ce5c67f1cb47aee8f4d..f84043cb6a26b0761008efa98fe9d52fd2dc63c6:/package/busybox/config/miscutils/Config.in diff --git a/package/busybox/config/miscutils/Config.in b/package/busybox/config/miscutils/Config.in index f13d8ba0b..7784a8297 100644 --- a/package/busybox/config/miscutils/Config.in +++ b/package/busybox/config/miscutils/Config.in @@ -23,6 +23,7 @@ config BUSYBOX_CONFIG_CROND bool "crond" default y select BUSYBOX_CONFIG_FEATURE_SUID + select BUSYBOX_CONFIG_FEATURE_SYSLOG help Crond is a background daemon that parses individual crontab files and executes commands on behalf of the users in question. @@ -66,8 +67,9 @@ config BUSYBOX_CONFIG_DC config BUSYBOX_CONFIG_DEVFSD bool "devfsd (obsolete)" default n + select BUSYBOX_CONFIG_FEATURE_SYSLOG help - This is deprecated, and will be going away in a future release. + This is deprecated, and will be removed at the end of 2008. Provides compatibility with old device names on a devfs systems. You should set it to true if you have devfs enabled. @@ -103,15 +105,14 @@ config BUSYBOX_CONFIG_DEVFSD_VERBOSE config BUSYBOX_CONFIG_FEATURE_DEVFS bool " Use devfs names for all devices (obsolete)" - default y + default n help + This is obsolete and will be going away at the end of 2008.. + This tells busybox to look for names like /dev/loop/0 instead of /dev/loop0. If your /dev directory has normal names instead of devfs names, you don't want this. - This is obsolete and will be going away someday. Consider it - deprecated. - config BUSYBOX_CONFIG_EJECT bool "eject" default n @@ -127,11 +128,16 @@ config BUSYBOX_CONFIG_LAST config BUSYBOX_CONFIG_LESS bool "less" - default n + default y help 'less' is a pager, meaning that it displays text files. It possesses a wide array of features, and is an improvement over 'more'. +config BUSYBOX_CONFIG_FEATURE_LESS_MAXLINES + int "Max number of input lines less will try to eat" + default 9999999 + depends on BUSYBOX_CONFIG_LESS + config BUSYBOX_CONFIG_FEATURE_LESS_BRACKETS bool "Enable bracket searching" default n @@ -178,7 +184,7 @@ config BUSYBOX_CONFIG_HDPARM help Get/Set hard drive parameters. Primarily intended for ATA drives. Adds about 13k (or around 30k if you enable the - BUSYBOX_CONFIG_FEATURE_HDPARM_GET_IDENTITY option).... + FEATURE_HDPARM_GET_IDENTITY option).... config BUSYBOX_CONFIG_FEATURE_HDPARM_GET_IDENTITY bool "Support obtaining detailed information directly from drives" @@ -283,6 +289,36 @@ config BUSYBOX_CONFIG_MT to advance or rewind a tape past a specified number of archive files on the tape. +config BUSYBOX_CONFIG_NMETER + bool "nmeter" + default n + help + nmeter prints various system parameters continuously. + +config BUSYBOX_CONFIG_RAIDAUTORUN + bool "raidautorun" + default n + help + raidautorun tells the kernel md driver to + search and start RAID arrays. + +config BUSYBOX_CONFIG_READAHEAD + bool "readahead" + default n + depends on LFS + help + Preload the files listed on the command line into RAM cache so that + subsequent reads on these files will not block on disk I/O. + + This applet just calls the readahead(2) system call on each file. + It is mainly useful in system startup scripts to preload files + or executables before they are used. When used at the right time + (in particular when a CPU boundprocess is running) it can + significantly speed up system startup. + + As readahead(2) blocks until each file has been read, it is best to + run this applet as a background job. + config BUSYBOX_CONFIG_RUNLEVEL bool "runlevel" default n @@ -315,13 +351,17 @@ config BUSYBOX_CONFIG_TASKSET bool "taskset" default n help - Retrieve or set a processes's CPU affinity + Retrieve or set a processes's CPU affinity. + This requires sched_{g,s}etaffinity support in your libc. -config BUSYBOX_CONFIG_TASKSET - bool "taskset" +config BUSYBOX_CONFIG_FEATURE_TASKSET_FANCY + bool "fancy output" default n + depends on BUSYBOX_CONFIG_TASKSET help - Retrieve or set a processes's CPU affinity (on linux) + Add code for fancy output. This merely silences a compiler-warning + and adds about 135 Bytes. May be needed for machines with alot + of CPUs. config BUSYBOX_CONFIG_TIME bool "time"