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_FWUP
bool "fwup"
depends on BR2_USE_MMU
depends on BR2_USE_WCHAR
select BR2_PACKAGE_LIBARCHIVE
# required by libarchive to include zip compression
select BR2_PACKAGE_ZLIB
select BR2_PACKAGE_LIBCONFUSE
help
Fwup is a scriptable embedded Linux firmware update creator
and runner.
https://github.com/fhunleth/fwup
comment "fwup needs a toolchain w/ wchar"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR
+7
View File
@@ -0,0 +1,7 @@
config BR2_PACKAGE_HOST_FWUP
bool "host fwup"
help
Fwup is a scriptable embedded Linux firmware update creator
and runner.
https://github.com/fhunleth/fwup
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 9890f0328796f4315e6c1188df5c103855c530fbc14fbc8c12f4b24066c975f1 fwup-1.8.0.tar.gz
sha256 cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30 LICENSE
+17
View File
@@ -0,0 +1,17 @@
################################################################################
#
# fwup
#
################################################################################
FWUP_VERSION = 1.8.0
FWUP_SITE = $(call github,fhunleth,fwup,v$(FWUP_VERSION))
FWUP_LICENSE = Apache-2.0
FWUP_LICENSE_FILES = LICENSE
FWUP_DEPENDENCIES = host-pkgconf libconfuse libarchive
HOST_FWUP_DEPENDENCIES = host-pkgconf host-libconfuse host-libarchive
FWUP_AUTORECONF = YES
FWUP_CONF_ENV = ac_cv_path_HELP2MAN=""
$(eval $(autotools-package))
$(eval $(host-autotools-package))