initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
config BR2_PACKAGE_LIBSODIUM
|
||||
bool "libsodium"
|
||||
help
|
||||
A modern and easy-to-use crypto library.
|
||||
|
||||
http://libsodium.org/
|
||||
|
||||
if BR2_PACKAGE_LIBSODIUM
|
||||
|
||||
config BR2_PACKAGE_LIBSODIUM_FULL
|
||||
bool "all functions"
|
||||
default y
|
||||
help
|
||||
Build all seldom used and obsolete functions. Without
|
||||
this option, only the minimal set of normally used
|
||||
functions is built.
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,4 @@
|
||||
# Locally calculated after checking Minisign signature
|
||||
# https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz.minisig
|
||||
sha256 6f504490b342a4f8a4c4a02fc9b866cbef8622d5df4e5452b46be121e46636c1 libsodium-1.0.18.tar.gz
|
||||
sha256 dea1855c9809f3faf22aa4a1fba20ec8af5a5587f23115012e5b98279cedc4af LICENSE
|
||||
@@ -0,0 +1,24 @@
|
||||
################################################################################
|
||||
#
|
||||
# libsodium
|
||||
#
|
||||
################################################################################
|
||||
|
||||
LIBSODIUM_VERSION = 1.0.18
|
||||
LIBSODIUM_SITE = https://download.libsodium.org/libsodium/releases
|
||||
LIBSODIUM_LICENSE = ISC
|
||||
LIBSODIUM_LICENSE_FILES = LICENSE
|
||||
LIBSODIUM_INSTALL_STAGING = YES
|
||||
|
||||
ifeq ($(BR2_TOOLCHAIN_SUPPORTS_PIE),)
|
||||
LIBSODIUM_CONF_OPTS += --disable-pie
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBSODIUM_FULL),y)
|
||||
LIBSODIUM_CONF_OPTS += --disable-minimal
|
||||
else
|
||||
LIBSODIUM_CONF_OPTS += --enable-minimal
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
$(eval $(host-autotools-package))
|
||||
Reference in New Issue
Block a user