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
+11
View File
@@ -0,0 +1,11 @@
config BR2_PACKAGE_TINYXML2
bool "tinyxml2"
depends on BR2_INSTALL_LIBSTDCPP
help
TinyXML-2 is a simple, small, efficient, C++ XML parser that
can be easily integrating into other programs.
http://www.grinninglizard.com/tinyxml2/index.html
comment "tinyxml2 needs a toolchain w/ C++"
depends on !BR2_INSTALL_LIBSTDCPP
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 6ce574fbb46751842d23089485ae73d3db12c1b6639cda7721bf3a7ee862012c tinyxml2-8.0.0.tar.gz
sha256 9332252e9b9e46db8285d4a3f0bf25f139bf1dca6781b956d57f2302efca6432 LICENSE.txt
+18
View File
@@ -0,0 +1,18 @@
################################################################################
#
# tinyxml2
#
################################################################################
TINYXML2_VERSION = 8.0.0
TINYXML2_SITE = $(call github,leethomason,tinyxml2,$(TINYXML2_VERSION))
TINYXML2_LICENSE = Zlib
TINYXML2_LICENSE_FILES = LICENSE.txt
TINYXML2_INSTALL_STAGING = YES
TINYXML2_CPE_ID_VENDOR = tinyxml2_project
ifeq ($(BR2_STATIC_LIBS),y)
TINYXML2_CONF_OPTS += -DBUILD_STATIC_LIBS=ON
endif
$(eval $(cmake-package))