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
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_JSMN
bool "jsmn"
help
jsmn (pronounced like 'jasmine') is a minimalistic JSON
parser in C. It can be easily integrated into
resource-limited or embedded projects.
https://github.com/zserge/jsmn/
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 5f0913a10657fe7ec8d5794ccf00a01000e3e1f2f1e1f143c34a0f7b47edcb38 jsmn-1.1.0.tar.gz
sha256 4675b94a50d2afe811c52785463c854f1156056632cce17cc7133939eac8ed55 LICENSE
+19
View File
@@ -0,0 +1,19 @@
################################################################################
#
# jsmn
#
################################################################################
JSMN_VERSION = 1.1.0
JSMN_SITE = $(call github,zserge,jsmn,v$(JSMN_VERSION))
JSMN_LICENSE = MIT
JSMN_LICENSE_FILES = LICENSE
# single-header, header-only library
JSMN_INSTALL_STAGING = YES
JSMN_INSTALL_TARGET = NO
define JSMN_INSTALL_STAGING_CMDS
$(INSTALL) -D -m 0644 $(@D)/jsmn.h $(STAGING_DIR)/usr/include/jsmn.h
endef
$(eval $(generic-package))