d008913bb9
aircrack-ng has some scripts (airmon-ng, airmon-zc) that use external tools for their functionality. We don't select the corresponding packages because some of the other aircrack-ng tools don't need these at all. Still, the user should be informed of this. So update the help text to refer to all packages used by the scripts: - ethtool - iw - rfkill - util-linux for lspci and lsusb (script uses options not available in busybox) - wireless_tools for iwconfig and iwpriv See also bug #8936 Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Cc: lipkegu@gmail.com Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
618 B
Plaintext
21 lines
618 B
Plaintext
config BR2_PACKAGE_AIRCRACK_NG
|
|
bool "aircrack-ng"
|
|
depends on BR2_USE_MMU # uses fork()
|
|
# libnl has issues when linking statically
|
|
# they need fixing in libnl itself
|
|
select BR2_PACKAGE_LIBNL if !BR2_STATIC_LIBS
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_ZLIB
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
help
|
|
A set of tools for auditing wireless networks
|
|
|
|
For complete functionality, also select ethtool, iw, rfkill,
|
|
util-linux utilities, and wireless_tools.
|
|
|
|
http://www.aircrack-ng.org/
|
|
|
|
comment "aircrack-ng needs a toolchain w/ threads"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS
|