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
+16
View File
@@ -0,0 +1,16 @@
config BR2_PACKAGE_LIBISCSI
bool "libiscsi"
depends on BR2_TOOLCHAIN_HAS_THREADS
help
Libiscsi is a client-side library to implement the iSCSI
protocol that can be used to access resource of an iSCSI
Target.
The library is fully async with regards to iscsi commands and
scsi tasks, but a sync layer is also provided for ease of use
for simpler applications.
https://github.com/sahlberg/libiscsi
comment "libiscsi needs a toolchain w/ threads"
depends on !BR2_TOOLCHAIN_HAS_THREADS
+5
View File
@@ -0,0 +1,5 @@
# Locally computed:
sha256 c7848ac722c8361d5064654bc6e926c2be61ef11dd3875020a63931836d806df libiscsi-1.19.0.tar.gz
sha256 88e3eccc48722b2a0eaff456dda94b8e8e123848d01f631969bec8e3c6c6eb85 COPYING
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENCE-GPL-2.txt
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 LICENCE-LGPL-2.1.txt
+17
View File
@@ -0,0 +1,17 @@
################################################################################
#
# libiscsi
#
################################################################################
LIBISCSI_VERSION = 1.19.0
LIBISCSI_SITE = $(call github,sahlberg,libiscsi,$(LIBISCSI_VERSION))
LIBISCSI_LICENSE = GPL-2.0+, LGPL-2.1+
LIBISCSI_LICENSE_FILES = COPYING LICENCE-GPL-2.txt LICENCE-LGPL-2.1.txt
LIBISCSI_INSTALL_STAGING = YES
LIBISCSI_AUTORECONF = YES
LIBISCSI_CONF_OPTS = --disable-examples --disable-werror --disable-manpages \
--disable-test-tool --disable-tests
$(eval $(autotools-package))