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
+7
View File
@@ -0,0 +1,7 @@
config BR2_PACKAGE_INIH
bool "inih"
help
inih (INI Not Invented Here) is a simple .INI file parser
written in C.
https://github.com/benhoyt/inih/
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 01b0366fdfdf6363efc070c2f856f1afa33e7a6546548bada5456ad94a516241 inih-53.tar.gz
sha256 9ae3b39e83e9158e44b67733baa3bb2d84e80efdcfb14a5820210a42c7abdf7f LICENSE.txt
+20
View File
@@ -0,0 +1,20 @@
################################################################################
#
# inih
#
################################################################################
INIH_VERSION = 53
INIH_SITE = $(call github,benhoyt,inih,r$(INIH_VERSION))
INIH_INSTALL_STAGING = YES
INIH_LICENSE = BSD-3-Clause
INIH_LICENSE_FILES = LICENSE.txt
INIH_CONF_OPTS = -Ddistro_install=true
ifeq ($(BR2_INSTALL_LIBSTDCPP),y)
INIH_CONF_OPTS += -Dwith_INIReader=true
else
INIH_CONF_OPTS += -Dwith_INIReader=false
endif
$(eval $(meson-package))