initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
config BR2_PACKAGE_WAVEMON
|
||||
bool "wavemon"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on !BR2_STATIC_LIBS # libnl tools
|
||||
select BR2_PACKAGE_NCURSES
|
||||
select BR2_PACKAGE_LIBNL
|
||||
select BR2_PACKAGE_LIBNL_TOOLS
|
||||
help
|
||||
wavemon is a wireless device monitoring application that
|
||||
allows you to watch signal and noise levels, packet
|
||||
statistics, device configuration and network parameters of
|
||||
your wireless network hardware.
|
||||
|
||||
Note that you need a Linux Kernel configuration with
|
||||
wireless extensions or with wireless extensions
|
||||
compatibility enabled.
|
||||
|
||||
https://github.com/uoaerg/wavemon
|
||||
|
||||
comment "wavemon needs a toolchain w/ threads, dynamic library"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 e7e4167292136ca7ff12ddeb880904c10f33e97620ea6aa5f7838e859fdb40ed wavemon-0.9.4.tar.gz
|
||||
sha256 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE
|
||||
@@ -0,0 +1,23 @@
|
||||
################################################################################
|
||||
#
|
||||
# wavemon
|
||||
#
|
||||
################################################################################
|
||||
|
||||
WAVEMON_VERSION = 0.9.4
|
||||
WAVEMON_SITE = $(call github,uoaerg,wavemon,v$(WAVEMON_VERSION))
|
||||
WAVEMON_LICENSE = GPL-3.0+
|
||||
WAVEMON_LICENSE_FILES = LICENSE
|
||||
WAVEMON_DEPENDENCIES = host-pkgconf libnl ncurses
|
||||
|
||||
# Handwritten Makefile.in, automake isn't used
|
||||
WAVEMON_MAKE_OPTS = CC="$(TARGET_CC)"
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBCAP),y)
|
||||
WAVEMON_CONF_OPTS += --with-libcap
|
||||
WAVEMON_DEPENDENCIES += libcap
|
||||
else
|
||||
WAVEMON_CONF_OPTS += --without-libcap
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user