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
+20
View File
@@ -0,0 +1,20 @@
config BR2_PACKAGE_LIBMINIUPNPC
bool "libminiupnpc"
depends on !BR2_BINFMT_FLAT
depends on !BR2_STATIC_LIBS
help
The UPnP protocol is supported by most home adsl/cable routers
and Microsoft Windows 2K/XP. The aim of the MiniUPnP project
is to bring a free software solution to support the "Internet
Gateway Device" part of the protocol.
Miniupnpc aims at the simplest library possible, with the
smallest footprint and no dependencies to other libraries such
as XML parsers or HTTP implementations. All the code is pure
ANSI C.
http://miniupnp.free.fr
comment "libminiupnpc needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS
depends on !BR2_BINFMT_FLAT
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 69f72fe355f911b807915f78dcfc0af772c0f22bc7ab1157e70f334e37db7d39 miniupnpc-2.1.20201016.tar.gz
sha256 0b476c395af6dd21eeb54c40a21d22e1c11a751fbd2dd17a41ce26e370be88d5 LICENSE
+20
View File
@@ -0,0 +1,20 @@
################################################################################
#
# libminiupnpc
#
################################################################################
LIBMINIUPNPC_VERSION_MAJOR = 2.1
LIBMINIUPNPC_VERSION_MINOR = 20201016
LIBMINIUPNPC_VERSION = $(LIBMINIUPNPC_VERSION_MAJOR).$(LIBMINIUPNPC_VERSION_MINOR)
LIBMINIUPNPC_SOURCE = miniupnpc-$(LIBMINIUPNPC_VERSION).tar.gz
LIBMINIUPNPC_SITE = http://miniupnp.free.fr/files
LIBMINIUPNPC_INSTALL_STAGING = YES
LIBMINIUPNPC_LICENSE = BSD-3-Clause
LIBMINIUPNPC_LICENSE_FILES = LICENSE
LIBMINIUPNPC_CPE_ID_VENDOR = miniupnp_project
LIBMINIUPNPC_CPE_ID_PRODUCT = miniupnpc
LIBMINIUPNPC_CPE_ID_VERSION = $(LIBMINIUPNPC_VERSION_MAJOR)
LIBMINIUPNPC_CPE_ID_UPDATE = $(LIBMINIUPNPC_VERSION_MINOR)
$(eval $(cmake-package))