2021-07-17 17:11:59 +02:00
|
|
|
comment "kismet needs a toolchain w/ threads, C++, gcc >= 5"
|
2013-11-07 09:24:37 +01:00
|
|
|
depends on BR2_USE_MMU
|
2021-07-17 17:11:59 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
|
|
!BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_5
|
2020-10-04 17:50:03 +02:00
|
|
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
|
2009-09-01 19:01:40 +02:00
|
|
|
|
2007-10-30 10:16:51 +01:00
|
|
|
config BR2_PACKAGE_KISMET
|
|
|
|
bool "kismet"
|
2009-09-01 19:01:40 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
2020-10-04 17:50:03 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2013-10-09 22:25:44 +02:00
|
|
|
depends on BR2_USE_MMU # fork()
|
2020-10-04 17:50:03 +02:00
|
|
|
depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86" # protobuf-c
|
2021-07-17 17:11:59 +02:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
|
2007-10-30 10:16:51 +01:00
|
|
|
select BR2_PACKAGE_LIBPCAP
|
2020-10-04 17:50:03 +02:00
|
|
|
select BR2_PACKAGE_PROTOBUF_C
|
|
|
|
select BR2_PACKAGE_SQLITE
|
|
|
|
select BR2_PACKAGE_ZLIB
|
2007-10-30 10:16:51 +01:00
|
|
|
help
|
2020-10-04 17:50:03 +02:00
|
|
|
Kismet is a wireless network and device detector, sniffer,
|
|
|
|
wardriving tool, and WIDS (wireless intrusion detection)
|
|
|
|
framework.
|
2007-10-30 10:16:51 +01:00
|
|
|
|
2020-10-04 17:50:03 +02:00
|
|
|
Kismet works with Wi-Fi interfaces, Bluetooth interfaces, some
|
|
|
|
SDR (software defined radio) hardware like the RTLSDR, and
|
|
|
|
other specialized capture hardware.
|
2007-10-30 10:16:51 +01:00
|
|
|
|
2008-08-27 22:18:51 +02:00
|
|
|
http://www.kismetwireless.net
|
2009-09-01 19:01:40 +02:00
|
|
|
|
2013-12-20 22:31:30 +01:00
|
|
|
if BR2_PACKAGE_KISMET
|
|
|
|
|
2020-10-04 17:50:04 +02:00
|
|
|
config BR2_PACKAGE_KISMET_PYTHON_TOOLS
|
|
|
|
bool "Install python tools"
|
|
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS # protobuf
|
|
|
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS # python-numpy
|
|
|
|
depends on BR2_PACKAGE_PYTHON3
|
|
|
|
depends on !BR2_STATIC_LIBS # protobuf
|
|
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # python-numpy
|
|
|
|
select BR2_PACKAGE_PROTOBUF
|
|
|
|
select BR2_PACKAGE_PYTHON_NUMPY # runtime for RTLAMR and RTLADSB
|
|
|
|
select BR2_PACKAGE_PYTHON_PROTOBUF # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_SERIAL # runtime for Freaklabs Zigbee
|
|
|
|
select BR2_PACKAGE_PYTHON_SETUPTOOLS
|
|
|
|
help
|
|
|
|
Enable Python and Python-related tools (RTL_433, RTLAMR,
|
|
|
|
RTLADSB and Freaklabs Zigbee)
|
|
|
|
|
|
|
|
comment "python tools needs python3"
|
|
|
|
depends on !BR2_PACKAGE_PYTHON3
|
|
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|
|
|
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
|
|
|
|
2021-07-17 17:11:59 +02:00
|
|
|
comment "python tools needs a glibc or musl toolchain w/ dynamic library"
|
|
|
|
depends on BR2_STATIC_LIBS
|
2020-10-04 17:50:04 +02:00
|
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|
|
|
|
depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
|
|
|
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL)
|
|
|
|
|
2009-09-01 19:01:40 +02:00
|
|
|
config BR2_PACKAGE_KISMET_SERVER
|
|
|
|
bool "Install server"
|
|
|
|
default y
|
2020-10-04 17:50:03 +02:00
|
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS # protobuf
|
|
|
|
depends on !BR2_STATIC_LIBS # dlfcn.h
|
2021-01-03 15:21:01 +01:00
|
|
|
depends on BR2_USE_WCHAR
|
2020-10-04 17:50:03 +02:00
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
|
|
|
|
select BR2_PACKAGE_PROTOBUF
|
|
|
|
|
2021-07-17 17:11:59 +02:00
|
|
|
comment "server needs a toolchain w/ dynamic library, wchar"
|
2020-10-04 17:50:03 +02:00
|
|
|
depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
|
|
|
|
depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
2021-07-17 17:11:59 +02:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
|
2020-10-04 17:50:03 +02:00
|
|
|
|
|
|
|
comment "server needs a toolchain not affected by GCC bug 64735"
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
|
2009-09-01 19:01:40 +02:00
|
|
|
|
2013-12-20 22:31:30 +01:00
|
|
|
endif
|