416fd9cd13
Following the removal of eglibc support, this commit replaces all occurences of "(e)glibc" by just "glibc". Most of the occurences are in package Config.in comments. In addition, when the form "an (e)glibc ..." was used, it is replaced by "a glibc ...". [Peter: add new efi* packages, s/uclibc/uClibc as suggested by Romain, systemd / liquid-dsp tweaks as suggested by Yann] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: Romain Naour <romain.naour@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
837 B
Plaintext
22 lines
837 B
Plaintext
comment "dt needs a glibc or uClibc toolchain w/ threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL
|
|
|
|
config BR2_PACKAGE_DT
|
|
bool "dt"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
# Build fails because of several BSDisms
|
|
depends on !BR2_TOOLCHAIN_USES_MUSL
|
|
help
|
|
dt is a generic data test program used to verify proper
|
|
operation of peripherals, file systems, device drivers,
|
|
or any data stream supported by the operating system.
|
|
In its' simplest mode of operation, dt writes and then
|
|
verifys its' default data pattern, then displays
|
|
performance statisics and other test parameters
|
|
before exiting. Since verification of data is performed,
|
|
dt can be thought of as a generic diagnostic tool.
|
|
|
|
http://www.scsifaq.org/RMiller_Tools/dt.html
|