diff options
| -rw-r--r-- | package/bash/Config.in | 7 | ||||
| -rw-r--r-- | package/coreutils/Config.in | 12 | ||||
| -rw-r--r-- | package/distcc/Config.in | 9 | ||||
| -rw-r--r-- | package/dnsmasq/Config.in | 8 | ||||
| -rw-r--r-- | package/dropbear_sshd/Config.in | 5 | ||||
| -rw-r--r-- | package/file/Config.in | 8 | ||||
| -rw-r--r-- | package/grep/Config.in | 7 | ||||
| -rw-r--r-- | package/gzip/Config.in | 8 | ||||
| -rw-r--r-- | package/less/Config.in | 7 | ||||
| -rw-r--r-- | package/ntp/Config.in | 8 | ||||
| -rw-r--r-- | package/pciutils/Config.in | 8 | ||||
| -rw-r--r-- | package/procps/Config.in | 8 | ||||
| -rw-r--r-- | package/python/Config.in | 7 | ||||
| -rw-r--r-- | package/rsync/Config.in | 7 | ||||
| -rw-r--r-- | package/sed/Config.in | 7 | ||||
| -rw-r--r-- | package/strace/Config.in | 9 | ||||
| -rw-r--r-- | package/util-linux/Config.in | 9 | ||||
| -rw-r--r-- | package/wget/Config.in | 7 | ||||
| -rw-r--r-- | package/zlib/Config.in | 8 | 
19 files changed, 75 insertions, 74 deletions
| diff --git a/package/bash/Config.in b/package/bash/Config.in index b2aa0a30b..8b39c21ac 100644 --- a/package/bash/Config.in +++ b/package/bash/Config.in @@ -1,8 +1,7 @@ -# -  config BR2_PACKAGE_BASH -	bool"bash" +	bool "bash"  	default n  	help -	  Add help text here. +	  The standard GNU Bourne again shell. +	  http://cnswww.cns.cwru.edu/~chet/bash/bashtop.html diff --git a/package/coreutils/Config.in b/package/coreutils/Config.in index a26060022..ca130e971 100644 --- a/package/coreutils/Config.in +++ b/package/coreutils/Config.in @@ -1,8 +1,12 @@ -# -  config BR2_PACKAGE_COREUTILS -	bool"coreutils" +	bool "coreutils"  	default n  	help -	  Add help text here. +	  All of the basic file/text/shell utilities. + +	  Things like: +	  - chmod, cp, dd, dir, ls, etc... +	  - sort, tr, head, tail, wc, etc... +	  - whoami, who, etc... +	  http://www.gnu.org/software/coreutils/ diff --git a/package/distcc/Config.in b/package/distcc/Config.in index 7e1cc9f04..fef396425 100644 --- a/package/distcc/Config.in +++ b/package/distcc/Config.in @@ -1,8 +1,9 @@ -# -  config BR2_PACKAGE_DISTCC -	bool"distcc" +	bool "distcc"  	default n  	help -	  Add help text here. +	  Distributed compiler client and server.  Allows you to  +	  distribute compilation of C code across several machines  +	  on a network. +	  http://distcc.samba.org/ diff --git a/package/dnsmasq/Config.in b/package/dnsmasq/Config.in index db1e6c68d..05e40f34e 100644 --- a/package/dnsmasq/Config.in +++ b/package/dnsmasq/Config.in @@ -1,8 +1,8 @@ -# -  config BR2_PACKAGE_DNSMASQ -	bool"dnsmasq" +	bool "dnsmasq"  	default n  	help -	  Add help text here. +	  A lightweight DNS and DHCP server.  It is intended to provide  +	  coupled DNS and DHCP service to a LAN. +	  http://www.thekelleys.org.uk/dnsmasq/ diff --git a/package/dropbear_sshd/Config.in b/package/dropbear_sshd/Config.in index 42f827fb1..d2e0d0bbe 100644 --- a/package/dropbear_sshd/Config.in +++ b/package/dropbear_sshd/Config.in @@ -1,8 +1,7 @@ -# -  config BR2_PACKAGE_DROPBEAR_SSHD  	bool"dropbear_sshd"  	default n  	help -	  Add help text here. +	  A small SSH 2 server designed for small memory environments. +	  http://matt.ucc.asn.au/dropbear/ diff --git a/package/file/Config.in b/package/file/Config.in index 926a54fbc..ac74f19fd 100644 --- a/package/file/Config.in +++ b/package/file/Config.in @@ -1,8 +1,8 @@ -# -  config BR2_PACKAGE_FILE -	bool"file" +	bool "file"  	default n  	help -	  Add help text here. +	  Program to identify a file's format by scanning binary data  +	  for known patterns. +	  ftp://ftp.astron.com/pub/file/ diff --git a/package/grep/Config.in b/package/grep/Config.in index e6b3f2f5c..523563408 100644 --- a/package/grep/Config.in +++ b/package/grep/Config.in @@ -1,8 +1,7 @@ -# -  config BR2_PACKAGE_GREP -	bool"grep" +	bool "grep"  	default n  	help -	  Add help text here. +	  The GNU regular expression matcher. +	  http://www.gnu.org/software/grep/grep.html diff --git a/package/gzip/Config.in b/package/gzip/Config.in index d9872c5f9..e80789454 100644 --- a/package/gzip/Config.in +++ b/package/gzip/Config.in @@ -1,8 +1,8 @@ -# -  config BR2_PACKAGE_GZIP -	bool"gzip" +	bool "gzip"  	default n  	help -	  Add help text here. +	  Standard GNU compressor.  Provides things like gzip,  +	  gunzip, gzcat, etc... +	  http://www.gnu.org/software/gzip/gzip.html diff --git a/package/less/Config.in b/package/less/Config.in index dffda3445..7e53474b3 100644 --- a/package/less/Config.in +++ b/package/less/Config.in @@ -1,8 +1,7 @@ -# -  config BR2_PACKAGE_LESS -	bool"less" +	bool "less"  	default n  	help -	  Add help text here. +	  Excellent text file viewer. +	  http://www.greenwoodsoftware.com/ diff --git a/package/ntp/Config.in b/package/ntp/Config.in index ba6405e55..0f35a17a6 100644 --- a/package/ntp/Config.in +++ b/package/ntp/Config.in @@ -1,8 +1,8 @@ -# -  config BR2_PACKAGE_NTP -	bool"ntp" +	bool "ntp"  	default n  	help -	  Add help text here. +	  Network Time Protocol suite/programs. +	  Provides things like ntpd, ntpdate, ntpq, etc... +	  http://www.ntp.org/ diff --git a/package/pciutils/Config.in b/package/pciutils/Config.in index d7451402b..9b3c83d9a 100644 --- a/package/pciutils/Config.in +++ b/package/pciutils/Config.in @@ -1,8 +1,8 @@ -# -  config BR2_PACKAGE_PCIUTILS -	bool"pciutils" +	bool "pciutils"  	default n  	help -	  Add help text here. +	  Various utilities dealing with the PCI bus. +	  Provides things like setpci and lspci. +	  http://atrey.karlin.mff.cuni.cz/~mj/pciutils.html diff --git a/package/procps/Config.in b/package/procps/Config.in index 1f14e0f26..43f8ff29a 100644 --- a/package/procps/Config.in +++ b/package/procps/Config.in @@ -1,8 +1,8 @@ -# -  config BR2_PACKAGE_PROCPS -	bool"procps" +	bool "procps"  	default n  	help -	  Add help text here. +	  Standard informational utilities and process-handling tools. +	  Provides things like kill, ps, uptime, free, top, etc... +	  http://procps.sourceforge.net/ diff --git a/package/python/Config.in b/package/python/Config.in index f2abf975e..b9b41df66 100644 --- a/package/python/Config.in +++ b/package/python/Config.in @@ -1,8 +1,7 @@ -# -  config BR2_PACKAGE_PYTHON -	bool"python" +	bool "python"  	default n  	help -	  Add help text here. +	  The python language interpreter. +	  http://www.python.org/ diff --git a/package/rsync/Config.in b/package/rsync/Config.in index c251925f6..c9ab3b8a2 100644 --- a/package/rsync/Config.in +++ b/package/rsync/Config.in @@ -1,8 +1,7 @@ -# -  config BR2_PACKAGE_RSYNC -	bool"rsync" +	bool "rsync"  	default n  	help -	  Add help text here. +	  File transfer program to keep remote files in sync. +	  http://rsync.samba.org/ diff --git a/package/sed/Config.in b/package/sed/Config.in index 2a38d62d6..5cfc12d41 100644 --- a/package/sed/Config.in +++ b/package/sed/Config.in @@ -1,8 +1,9 @@ -# -  config BR2_PACKAGE_SED  	bool "sed"  	default n  	help -	  Most people will answer Y. +	  Super-useful stream editor. +	  http://sed.sourceforge.net/ + +	  Most people will answer Y. diff --git a/package/strace/Config.in b/package/strace/Config.in index a7187988a..46a6f741e 100644 --- a/package/strace/Config.in +++ b/package/strace/Config.in @@ -1,8 +1,9 @@ -# -  config BR2_PACKAGE_STRACE -	bool"strace" +	bool "strace"  	default n  	help -	  Add help text here. +	  A useful diagnostic, instructional, and debugging tool. +	  Allows you to track what system calls a program makes  +	  while it is running. +	  http://sourceforge.net/projects/strace/ diff --git a/package/util-linux/Config.in b/package/util-linux/Config.in index de63bcd57..0c115015d 100644 --- a/package/util-linux/Config.in +++ b/package/util-linux/Config.in @@ -1,8 +1,9 @@ -# -  config BR2_PACKAGE_UTIL-LINUX -	bool"util-linux" +	bool "util-linux"  	default n  	help -	  Add help text here. +	  Various useful/essential Linux utilities. + +	  Things like mkfs, mkswap, swapon, fdisk, mount, dmesg, etc... +	  http://www.kernel.org/pub/linux/utils/util-linux/ diff --git a/package/wget/Config.in b/package/wget/Config.in index 7d54b5695..5963c0f76 100644 --- a/package/wget/Config.in +++ b/package/wget/Config.in @@ -1,8 +1,7 @@ -# -  config BR2_PACKAGE_WGET -	bool"wget" +	bool "wget"  	default n  	help -	  Add help text here. +	  Network utility to retrieve files from http/ftp/etc... +	  http://wget.sunsite.dk/ diff --git a/package/zlib/Config.in b/package/zlib/Config.in index 54a02550a..e39e8abb0 100644 --- a/package/zlib/Config.in +++ b/package/zlib/Config.in @@ -1,8 +1,8 @@ -# -  config BR2_PACKAGE_ZLIB -	bool"zlib" +	bool "zlib"  	default n  	help -	  Add help text here. +	  Standard (de)compression library.  Used by things like  +	  gzip and libpng. +	  http://www.gzip.org/zlib/ | 
