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
+10
View File
@@ -0,0 +1,10 @@
config BR2_PACKAGE_LIBBYTESIZE
bool "libbytesize"
select BR2_PACKAGE_GMP
select BR2_PACKAGE_MPFR
select BR2_PACKAGE_PCRE2
help
A tiny library that facilitates the common operations with
sizes in bytes
https://github.com/storaged-project/libbytesize/
+3
View File
@@ -0,0 +1,3 @@
# Locally calculated
sha256 6305addae2b7be313dbfc36b96094ec0544d5144859ab4a5685ca6d314d6fdda libbytesize-2.5.tar.gz
sha256 97bdc721d875501b6243a456333fdfdb1ab64d31c4da2554de845caf4674b946 LICENSE
+24
View File
@@ -0,0 +1,24 @@
################################################################################
#
# libbytesize
#
################################################################################
LIBBYTESIZE_VERSION = 2.5
LIBBYTESIZE_SITE = https://github.com/storaged-project/libbytesize/releases/download/$(LIBBYTESIZE_VERSION)
LIBBYTESIZE_LICENSE = LGPL-2.1+
LIBBYTESIZE_LICENSE_FILES = LICENSE
LIBBYTESIZE_INSTALL_STAGING = YES
LIBBYTESIZE_DEPENDENCIES = \
host-pkgconf \
host-gettext \
gmp \
mpfr \
pcre2
LIBBYTESIZE_CONF_OPTS += \
--without-python3 \
--without-tools
$(eval $(autotools-package))