summaryrefslogtreecommitdiff
path: root/toolchain/uClibc/Config.in
diff options
context:
space:
mode:
authorHans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>2008-10-07 07:20:32 +0000
committerHans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>2008-10-07 07:20:32 +0000
commit8e71cdd87f70eced2fe735c2b4179e6207d5fd0b (patch)
treec07fc0a4fa61cdc43f7539d6329f460ed34daa95 /toolchain/uClibc/Config.in
parent599d3243f1f0df4c9d444c26e79168960e54a1f8 (diff)
uclibc: add kconfig option and make stuff for installing the uClibc test suite
This patch adds the possibility to install the uClibc test suite to the target file system. This is useful if you need to debug or test your uClibc. The option is defaulted to no, and is not needed for a normal running Linux system. The test suite is installed to /root/uClibc Signed-off-by: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
Diffstat (limited to 'toolchain/uClibc/Config.in')
-rw-r--r--toolchain/uClibc/Config.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/toolchain/uClibc/Config.in b/toolchain/uClibc/Config.in
index a3d48e8c0..4af60ea4f 100644
--- a/toolchain/uClibc/Config.in
+++ b/toolchain/uClibc/Config.in
@@ -83,3 +83,21 @@ config BR2_UCLIBC_PROGRAM_INVOCATION
program_invocation_short_name strings. Some GNU packages
(like tar and coreutils) utilize these for extra useful
output, but in general are not required.
+
+config BR2_UCLIBC_INSTALL_TEST_SUITE
+ bool "Compile and install uClibc tests"
+ default n
+ select BR2_PACKAGE_MAKE
+ help
+ Enabling this option will compile and install the uClibc test suite.
+ This is useful if you want to check if the uClibc library is working
+ for your architecture and/or help developing uClibc.
+
+ The test suite will be installed into /root/uClibc directory. To run
+ the test suite enter the /root/uClibc/test directory and type
+ "make UCLIBC_ONLY=1 CC=/bin/true check".
+
+ See the /root/uClibc/test/README for additional information.
+
+ This is not needed at all for normal builds, so you can safely say no
+ if you do not plan to dig into your C library.