package/nbd: add option for the trdump utility
[buildroot-gz.git] / package / kismet / Config.in
blobab91c0e6fb050159e9a7a8fd0e9f55f990e480b0
1 comment "kismet needs a toolchain w/ threads, C++, dynamic library"
2         depends on BR2_USE_MMU
3         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
4                 BR2_STATIC_LIBS
6 config BR2_PACKAGE_KISMET
7         bool "kismet"
8         depends on BR2_INSTALL_LIBSTDCPP
9         depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
10         depends on BR2_USE_MMU # fork()
11         depends on !BR2_STATIC_LIBS # dlfcn.h
12         select BR2_PACKAGE_NCURSES
13         select BR2_PACKAGE_LIBPCAP
14         select BR2_PACKAGE_LIBNL
15         help
16           Kismet - 802.11 layer2 wireless network detector, sniffer,
17           and intrusion detection system.
19           Kismet will work with any wireless card which supports raw
20           monitoring (rfmon) mode, and can sniff 802.11b, 802.11a, and
21           802.11g traffic.
23           Kismet identifies networks by passively collecting packets
24           and detecting standard named networks, detecting (and given
25           time, decloaking) hidden networks, and infering the presence
26           of nonbeaconing networks via data traffic.
28           http://www.kismetwireless.net
30 if BR2_PACKAGE_KISMET
32 config BR2_PACKAGE_KISMET_CLIENT
33         bool "Install client"
35 config BR2_PACKAGE_KISMET_DRONE
36         bool "Install drone"
38 config BR2_PACKAGE_KISMET_SERVER
39         bool "Install server"
40         default y
42 endif