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
+16
View File
@@ -0,0 +1,16 @@
config BR2_PACKAGE_DAQ3
bool "daq3"
depends on !BR2_PACKAGE_DAQ
depends on !BR2_STATIC_LIBS # dlfcn.h
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
depends on BR2_TOOLCHAIN_HAS_THREADS
help
DAQ is a Data Acquisition library for packet I/O from the
Snort project.
https://www.snort.org
comment "daq3 needs a toolchain w/ dynamic library, gcc >= 4.9, threads"
depends on !BR2_PACKAGE_DAQ
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 \
|| !BR2_TOOLCHAIN_HAS_THREADS
+6
View File
@@ -0,0 +1,6 @@
# Locally computed:
sha256 a376c7625d1442ddb7e3c75954c910cc9d64440e2f8f345981aa5fa6999ea206 daq3-3.0.4.tar.gz
# Hash for license files:
sha256 64601289158eddad72cb4de72652f9e64dc886942c910b38ddee93ba13b0db26 COPYING
sha256 64601289158eddad72cb4de72652f9e64dc886942c910b38ddee93ba13b0db26 LICENSE
+30
View File
@@ -0,0 +1,30 @@
################################################################################
#
# daq3
#
################################################################################
DAQ3_VERSION = 3.0.4
DAQ3_SITE = $(call github,snort3,libdaq,v$(DAQ3_VERSION))
DAQ3_LICENSE = GPL-2.0
DAQ3_LICENSE_FILES = COPYING LICENSE
DAQ3_INSTALL_STAGING = YES
DAQ3_DEPENDENCIES = host-pkgconf
# From git
DAQ3_AUTORECONF = YES
ifeq ($(BR2_PACKAGE_LIBNETFILTER_QUEUE),y)
DAQ3_DEPENDENCIES += libnetfilter_queue
DAQ3_CONF_OPTS += --enable-nfq-module
else
DAQ3_CONF_OPTS += --disable-nfq-module
endif
ifeq ($(BR2_PACKAGE_LIBPCAP),y)
DAQ3_DEPENDENCIES += libpcap
DAQ3_CONF_OPTS += --enable-pcap-module
else
DAQ3_CONF_OPTS += --disable-pcap-module
endif
$(eval $(autotools-package))