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
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_LIBHTP
bool "libhtp"
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
select BR2_PACKAGE_ZLIB
help
LibHTP is a security-aware parser for the HTTP protocol and
the related bits and pieces.
https://github.com/OISF/libhtp
+3
View File
@@ -0,0 +1,3 @@
# Locally computed:
sha256 d5956b49314fc6a058864130fbcf040a12584ee1e38f3b6ea52aedfa99d4c14a libhtp-0.5.39.tar.gz
sha256 87c93904e5434c81622ea690c2b90097b9f162aaa92a96542649a157dbf98d15 LICENSE
+22
View File
@@ -0,0 +1,22 @@
################################################################################
#
# libhtp
#
################################################################################
LIBHTP_VERSION = 0.5.39
LIBHTP_SITE = $(call github,OISF,libhtp,$(LIBHTP_VERSION))
LIBHTP_LICENSE = BSD-3-Clause
LIBHTP_LICENSE_FILES = LICENSE
LIBHTP_CPE_ID_VENDOR = oisf
LIBHTP_DEPENDENCIES = \
$(if $(BR2_PACKAGE_LIBICONV),libiconv) \
zlib
LIBHTP_INSTALL_STAGING = YES
# From git
LIBHTP_AUTORECONF = YES
# Let our gcc/wrapper handle SSP
LIBHTP_CONF_ENV = NO_STACK_PROTECTOR=true
$(eval $(autotools-package))