summaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorJochen Frieling <j.frieling@pengutronix.de>2007-10-19 14:33:17 +0000
committerJochen Frieling <j.frieling@pengutronix.de>2007-10-19 14:33:17 +0000
commit6ba3bbf3210e2d82e93e6c50fc1bcd5bf2666048 (patch)
tree8dc5d0e360da990a46880fc23997de4fbe9434de /rules
parent2a1731d253c7c9dfd1beb743ce49a24544db6d4b (diff)
downloadptxdist-6ba3bbf3210e2d82e93e6c50fc1bcd5bf2666048.tar.gz
ptxdist-6ba3bbf3210e2d82e93e6c50fc1bcd5bf2666048.tar.xz
* help texts t..w rounded off, some fixes
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@7542 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules')
-rw-r--r--rules/glibc.in2
-rw-r--r--rules/tcpwrapper.in15
-rw-r--r--rules/tcpwrapper.make12
-rw-r--r--rules/termcap.in10
-rw-r--r--rules/tests.in4
-rw-r--r--rules/thttpd.in2
-rw-r--r--rules/timezone.in4
-rw-r--r--rules/tinylogin.in10
-rw-r--r--rules/treecc.in5
-rw-r--r--rules/tslib.in15
-rw-r--r--rules/uclibc.in19
-rw-r--r--rules/valgrind.in8
-rw-r--r--rules/wireless.in8
13 files changed, 74 insertions, 40 deletions
diff --git a/rules/glibc.in b/rules/glibc.in
index 60a3ee52d..baecab356 100644
--- a/rules/glibc.in
+++ b/rules/glibc.in
@@ -86,7 +86,7 @@ config GLIBC_CRYPT
depends on GLIBC
prompt "Install libcrypt on the target"
help
- FIXME: This item needs to be documented
+ The encryption/decryption library
config GLIBC_UTIL
bool
diff --git a/rules/tcpwrapper.in b/rules/tcpwrapper.in
index 00d97779b..38ca2879e 100644
--- a/rules/tcpwrapper.in
+++ b/rules/tcpwrapper.in
@@ -2,12 +2,23 @@ menuconfig TCPWRAPPER
bool
prompt "tcpwrapper "
help
- FIXME: This item needs to be documented
+ With this package you can monitor and filter incoming requests for the
+ SYSTAT, FINGER, FTP, TELNET, RLOGIN, RSH, EXEC, TFTP, TALK, and other
+ network services.
+
+ The package provides tiny daemon wrapper programs that can be installed
+ without any changes to existing software or to existing configuration
+ files. The wrappers report the name of the client host and of the
+ requested service; the wrappers do not exchange information with the
+ client or server applications, and impose no overhead on the actual
+ conversation between the client and server applications.
config TCPWRAPPER_INSTALL_TCPD
bool
prompt "Install /usr/sbin/tcpd"
depends on TCPWRAPPER
help
- FIXME: This item needs to be documented
+ The tcpd program can be set up to monitor incoming requests for telnet,
+ finger, ftp, exec, rsh, rlogin, tftp, talk, comsat and other services
+ that have a one-to-one mapping onto executable files.
diff --git a/rules/tcpwrapper.make b/rules/tcpwrapper.make
index 00359811c..7e36e210e 100644
--- a/rules/tcpwrapper.make
+++ b/rules/tcpwrapper.make
@@ -3,7 +3,7 @@
#
# Copyright (C) 2003 by Pengutronix e.K., Hildesheim, Germany
#
-# See CREDITS for details about who has contributed to this project.
+# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
@@ -15,7 +15,7 @@
PACKAGES-$(PTXCONF_TCPWRAPPER) += tcpwrapper
#
-# Paths and names
+# Paths and names
#
TCPWRAPPER_VERSION = 7.6
TCPWRAPPER = tcp_wrappers_$(TCPWRAPPER_VERSION)
@@ -73,7 +73,7 @@ TCPWRAPPER_PATH = PATH=$(CROSS_PATH)
$(STATEDIR)/tcpwrapper.compile: $(tcpwrapper_compile_deps_default)
@$(call targetinfo, $@)
$(TCPWRAPPER_PATH) $(TCPWRAPPER_ENV) \
- make -C $(TCPWRAPPER_DIR) linux
+ make -C $(TCPWRAPPER_DIR) linux
@$(call touch, $@)
# ----------------------------------------------------------------------------
@@ -116,9 +116,9 @@ endif
# Clean
# ----------------------------------------------------------------------------
-tcpwrapper_clean:
- rm -rf $(STATEDIR)/tcpwrapper.*
- rm -rf $(IMAGEDIR)/tcpwrapper_*
+tcpwrapper_clean:
+ rm -rf $(STATEDIR)/tcpwrapper.*
+ rm -rf $(IMAGEDIR)/tcpwrapper_*
rm -rf $(TCPWRAPPER_DIR)
# vim: syntax=make
diff --git a/rules/termcap.in b/rules/termcap.in
index 6e6ec1111..fdaa49fd1 100644
--- a/rules/termcap.in
+++ b/rules/termcap.in
@@ -1,5 +1,6 @@
-menuconfig TERMCAP
- bool "termcap "
+menuconfig TERMCAP
+ bool
+ prompt "termcap "
help
This is the GNU termcap library -- a library of C functions that
enable programs to send control strings to terminals in a way
@@ -8,8 +9,9 @@ menuconfig TERMCAP
other termcap libraries.
This is a static library only.
-config TERMCAP_TERMCAP
- bool "install termcap data file"
+config TERMCAP_TERMCAP
+ bool
+ prompt "install termcap data file"
depends on TERMCAP
default y
help
diff --git a/rules/tests.in b/rules/tests.in
index 784dc1a7c..389fefe52 100644
--- a/rules/tests.in
+++ b/rules/tests.in
@@ -3,8 +3,8 @@ config TESTSUITE_DIR
prompt "Directory for Test Suites"
default "/usr/lib/testsuites"
help
- This directory is the toplevel directory to install
- test suites.
+ This directory is the toplevel directory to install
+ test suites.
source "rules/dbench.in"
diff --git a/rules/thttpd.in b/rules/thttpd.in
index d0eaf8052..2bef099ad 100644
--- a/rules/thttpd.in
+++ b/rules/thttpd.in
@@ -14,7 +14,7 @@ menuconfig THTTPD
comment "runtime options ---"
depends on THTTPD
#
-# FIXME: Can thttpd also started by inetd like busybox' one?
+# FIXME: Can thttpd also started by inetd like busybox's one?
# If yes, add a choice here for this startup option
#
config ROOTFS_ETC_INITD_THTTPD
diff --git a/rules/timezone.in b/rules/timezone.in
index 85425202f..ad5b16eba 100644
--- a/rules/timezone.in
+++ b/rules/timezone.in
@@ -1,12 +1,12 @@
comment "Time zone support doesn't work with OELAS.Toolchain1.1.0"
comment "and prio versions, hence marked as broken for now"
-menuconfig TIMEZONE
+menuconfig TIMEZONE
bool
prompt "Timezone Files "
depends on GLIBC
depends on BROKEN
- help
+ help
installs timezone files
comment "Timezone support"
diff --git a/rules/tinylogin.in b/rules/tinylogin.in
index 53b0f9366..0151804f9 100644
--- a/rules/tinylogin.in
+++ b/rules/tinylogin.in
@@ -3,5 +3,13 @@ config TINYLOGIN
depends on BROKEN
prompt "tinylogin [BROKEN]"
help
- FIXME: This item needs to bee documented
+ TinyLogin is a suite of tiny Unix utilities for
+ handling logging into, being authenticated by,
+ changing one's password for, and otherwise
+ maintaining users and groups on an embedded
+ system. It also provides shadow password support
+ to enhance system security. TinyLogin is, as the
+ name implies, very small, and makes an excellent
+ complement to BusyBox on an embedded system
+ (though it can of course be used without).
diff --git a/rules/treecc.in b/rules/treecc.in
index 58ae420c3..ffff7df36 100644
--- a/rules/treecc.in
+++ b/rules/treecc.in
@@ -4,5 +4,8 @@ config TREECC
depends on BROKEN
prompt "treecc [BROKEN]"
help
- FIXME: This item needs to be documented
+ The treecc program is designed to assist in the
+ development of compilers and other language-based
+ tools. It manages the generation of code to handle
+ abstract syntax trees and operations upon the trees.
diff --git a/rules/tslib.in b/rules/tslib.in
index d942b5d8f..d5cef342b 100644
--- a/rules/tslib.in
+++ b/rules/tslib.in
@@ -2,18 +2,27 @@ menuconfig TSLIB
bool
prompt "tslib (touch library) "
help
- FIXME: This item needs to be documented
+ Tslib is an abstraction layer for touchscreen panel events,
+ as well as a filter stack for the manipulation of those
+ events. It was created by Russell King of arm.linux.org.uk.
+ Examples of implemented filters include jitter smoothing
+ and the calibration transform. Tslib is generally used on
+ embedded devices to provide a common user space interface
+ to touchscreen functionality.
config TSLIB_TS_CALIBRATE
bool
prompt "Install ts_calibrate on target"
depends on TSLIB
help
- FIXME: This item needs to be documented
+ ts_calibrate is a graphical tool to calibrate the
+ touch sensor. The app asks the user to tap a
+ sequence of 5 cross-hairs with a stylus. It
+ recalibrates the touchscreen, then exits.
config TSLIB_TS_TEST
bool
prompt "Install ts_test on target"
depends on TSLIB
help
- FIXME: This item needs to be documented
+ Basic test program for touchscreen library.
diff --git a/rules/uclibc.in b/rules/uclibc.in
index 85e038acd..2e6e0ffa1 100644
--- a/rules/uclibc.in
+++ b/rules/uclibc.in
@@ -14,55 +14,56 @@ comment "Install options"
config UCLIBC_LIBC
bool
depends on UCLIBC
- prompt "Install uClibc on the target"
+ prompt "Install libc on the target"
help
- FIXME: This item needs to be documented
+ The C library
config UCLIBC_CRYPT
bool
depends on UCLIBC_LIBC
prompt "Install libcrypt on the target"
help
- FIXME: This item needs to be documented
+ The encryption/decryption library
config UCLIBC_DL
bool
depends on UCLIBC_LIBC
prompt "Install libdl on the target"
help
- FIXME: This item needs to be documented
+ The dynamic linking library
config UCLIBC_M
bool
depends on UCLIBC_LIBC
prompt "Install libm on the target"
help
- FIXME: This item needs to be documented
+ The C math libary
config UCLIBC_NSL
bool
depends on UCLIBC_LIBC
prompt "Install libnsl on the target"
help
- FIXME: This item needs to be documented
+ The network services library
config UCLIBC_PTHREAD
bool
depends on UCLIBC_LIBC
prompt "Install libpthread on the target"
help
- FIXME: This item needs to be documented
+ The posix threads library
config UCLIBC_RESOLV
bool
depends on UCLIBC_LIBC
prompt "Install libresolv on the target"
help
- FIXME: This item needs to be documented
+ The resolver library
config UCLIBC_UTIL
bool
depends on UCLIBC_LIBC
prompt "Install libutil on the target"
help
- FIXME: This item needs to be documented
+ Contains code for "standard" functions used in many different Unix
+ utilities.
diff --git a/rules/valgrind.in b/rules/valgrind.in
index cb43a5531..c59785c38 100644
--- a/rules/valgrind.in
+++ b/rules/valgrind.in
@@ -3,10 +3,10 @@ config VALGRIND
depends on ARCH_X86
prompt "valgrind"
help
- Valgrind is a GPL'd system for debugging and profiling x86-Linux
- programs. With Valgrind's tool suite you can automatically detect
- many memory management and threading bugs, avoiding hours of
- frustrating bug-hunting, making your programs more stable. You can
+ Valgrind is a GPL'd system for debugging and profiling x86-Linux
+ programs. With Valgrind's tool suite you can automatically detect
+ many memory management and threading bugs, avoiding hours of
+ frustrating bug-hunting, making your programs more stable. You can
also perform detailed profiling to help speed up your programs.
For more info, check:
http://valgrind.org/
diff --git a/rules/wireless.in b/rules/wireless.in
index 6ea790947..cd9a8b15d 100644
--- a/rules/wireless.in
+++ b/rules/wireless.in
@@ -4,9 +4,9 @@ config WIRELESS
bool
prompt "Wireless Tools"
help
- The wireless tools are used to manipulate the
- Linux Wireless Extension. The Wireless Extension
- is an interface allowing you to set Wireless LAN
+ The wireless tools are used to manipulate the
+ Linux Wireless Extension. The Wireless Extension
+ is an interface allowing you to set Wireless LAN
specific parameters and get the specific stats.
config WIRELESS_SHARED
@@ -15,6 +15,6 @@ config WIRELESS_SHARED
help
Building shared version of wireless tools and
installing a shared library libiw.so onto target.
-
+
source "rules/madwifi.in"
endmenu