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
+12
View File
@@ -0,0 +1,12 @@
config BR2_PACKAGE_DTBOCFG
bool "dtbocfg"
depends on BR2_LINUX_KERNEL
help
dtbocfg, which stands for Device Tree Blob Overlay
Configuration File System, was developed to serve
as a userspace API of Device Tree Overlay.
https://github.com/ikwzm/dtbocfg
comment "dtbocfg needs a Linux kernel to be built"
depends on !BR2_LINUX_KERNEL
+3
View File
@@ -0,0 +1,3 @@
# Locally computed:
sha256 faa53aefd7f7636c65e2b56bec223d2bc7676354e3ad9b5c1691aca349b9bbb8 dtbocfg-0.0.9.tar.gz
sha256 e57cb9f2ed607cd95bf1b64371325c505c1ac8fe640a8c9933e7fe7637a38567 LICENSE
+18
View File
@@ -0,0 +1,18 @@
################################################################################
#
# dtbocfg
#
################################################################################
DTBOCFG_VERSION = 0.0.9
DTBOCFG_SITE = $(call github,ikwzm,dtbocfg,v$(DTBOCFG_VERSION))
DTBOCFG_LICENSE = BSD-2-Clause
DTBOCFG_LICENSE_FILES = LICENSE
define DTBOCFG_LINUX_CONFIG_FIXUPS
$(call KCONFIG_ENABLE_OPT,CONFIG_OF_OVERLAY)
$(call KCONFIG_ENABLE_OPT,CONFIG_CONFIGFS_FS)
endef
$(eval $(kernel-module))
$(eval $(generic-package))