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
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_SCRYPT
bool "scrypt"
select BR2_PACKAGE_OPENSSL
help
A password-based key derivation function specifically
designed to make it costly to perform large-scale custom
hardware attacks by requiring large amounts of memory.
http://www.tarsnap.com/scrypt.html
+4
View File
@@ -0,0 +1,4 @@
# From http://www.tarsnap.com/scrypt/scrypt-sigs-1.3.1.asc
sha256 df2f23197c9589963267f85f9c5307ecf2b35a98b83a551bf1b1fb7a4d06d4c2 scrypt-1.3.1.tgz
# Locally computed
sha256 1fb4da0e9000287414066a238f378528d5652f89b72b4a1d6b89fdd20031b22d COPYRIGHT
+15
View File
@@ -0,0 +1,15 @@
################################################################################
#
# scrypt
#
################################################################################
SCRYPT_VERSION = 1.3.1
SCRYPT_SOURCE = scrypt-$(SCRYPT_VERSION).tgz
SCRYPT_SITE = http://www.tarsnap.com/scrypt
SCRYPT_LICENSE = BSD-2-Clause
SCRYPT_LICENSE_FILES = COPYRIGHT
SCRYPT_DEPENDENCIES = openssl
SCRYPT_INSTALL_STAGING = YES
$(eval $(autotools-package))