initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
config BR2_PACKAGE_DROPWATCH
bool "dropwatch"
depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
select BR2_PACKAGE_READLINE
select BR2_PACKAGE_LIBNL
select BR2_PACKAGE_LIBPCAP
help
Dropwatch is an interactive utility for monitoring and
recording packets that are dropped by the kernel
https://github.com/nhorman/dropwatch
comment "dropwatch needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 b748b66a816c1f94531446c0451da5461a4a31b0949244bb867d741c6ac0148b dropwatch-1.5.3.tar.gz
sha256 e6d6a009505e345fe949e1310334fcb0747f28dae2856759de102ab66b722cb4 COPYING
+18
View File
@@ -0,0 +1,18 @@
################################################################################
#
# dropwatch
#
################################################################################
DROPWATCH_VERSION = 1.5.3
DROPWATCH_SITE = $(call github,nhorman,dropwatch,v$(DROPWATCH_VERSION))
DROPWATCH_DEPENDENCIES = libnl readline libpcap host-pkgconf $(TARGET_NLS_DEPENDENCIES)
DROPWATCH_LICENSE = GPL-2.0+
DROPWATCH_LICENSE_FILES = COPYING
# From git
DROPWATCH_AUTORECONF = YES
DROPWATCH_CONF_OPTS = --without-bfd
DROPWATCH_MAKE_OPTS = LIBS=$(TARGET_NLS_LIBS)
$(eval $(autotools-package))