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
+17
View File
@@ -0,0 +1,17 @@
config BR2_PACKAGE_EXFATPROGS
bool "exfatprogs"
depends on BR2_USE_WCHAR
help
exFAT filesystem userspace utilities.
This is the set of tools that works together with the exfat
driver in the official Linux kernel (merged in Linux 5.7).
If you're using the FUSE-based exfat support (from
package/exfat), you must use the corresponding user-space
programs in package/exfat-utils.
https://github.com/exfatprogs/exfatprogs
comment "exfatprogs needs a toolchain w/ wchar"
depends on !BR2_USE_WCHAR
+13
View File
@@ -0,0 +1,13 @@
config BR2_PACKAGE_HOST_EXFATPROGS
bool "host exfatprogs"
help
exFAT filesystem userspace utilities
This is the set of tools that works together with the exfat
driver in the official Linux kernel (merged in Linux 5.7).
If you're using the FUSE-based exfat support (from
package/exfat), you must use the corresponding user-space
programs in package/exfat-utils.
https://github.com/exfatprogs/exfatprogs
+5
View File
@@ -0,0 +1,5 @@
# From https://github.com/exfatprogs/exfatprogs/releases/download/1.1.0/exfatprogs-1.1.0.tar.xz.sha256
sha256 69e2cf6430fc1d083c6ae0aea5eb80bf1b8e9775ed833bcd8331aef0fcacaf85 exfatprogs-1.1.0.tar.xz
# Hash for license file
sha256 576540abf5e95029ad4ad90e32071385a5e95b2c30708c706116f3eb87b9a3de COPYING
+16
View File
@@ -0,0 +1,16 @@
################################################################################
#
# exfatprogs
#
################################################################################
EXFATPROGS_VERSION = 1.1.0
EXFATPROGS_SOURCE = exfatprogs-$(EXFATPROGS_VERSION).tar.xz
EXFATPROGS_SITE = https://github.com/exfatprogs/exfatprogs/releases/download/$(EXFATPROGS_VERSION)
EXFATPROGS_LICENSE = GPL-2.0+
EXFATPROGS_LICENSE_FILES = COPYING
EXFATPROGS_DEPENDENCIES = host-pkgconf
HOST_EXFATPROGS_DEPENDENCIES = host-pkgconf
$(eval $(autotools-package))
$(eval $(host-autotools-package))