initial buildroot for linux 5.15
This commit is contained in:
+29
@@ -0,0 +1,29 @@
|
||||
From c3f7414c450faaf6a8281cc4a4403529aeb7d859 Mon Sep 17 00:00:00 2001
|
||||
From: Matt McCutchen <matt@mattmccutchen.net>
|
||||
Date: Wed, 26 Aug 2020 12:16:08 -0400
|
||||
Subject: [PATCH] rsync-ssl: Verify the hostname in the certificate when using
|
||||
openssl.
|
||||
|
||||
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
||||
[Retrieved from:
|
||||
https://git.samba.org/?p=rsync.git;a=commitdiff;h=c3f7414c450faaf6a8281cc4a4403529aeb7d859]
|
||||
---
|
||||
rsync-ssl | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/rsync-ssl b/rsync-ssl
|
||||
index 8101975a..46701af1 100755
|
||||
--- a/rsync-ssl
|
||||
+++ b/rsync-ssl
|
||||
@@ -129,7 +129,7 @@ function rsync_ssl_helper {
|
||||
fi
|
||||
|
||||
if [[ $RSYNC_SSL_TYPE == openssl ]]; then
|
||||
- exec $RSYNC_SSL_OPENSSL s_client $caopt $certopt -quiet -verify_quiet -servername $hostname -connect $hostname:$port
|
||||
+ exec $RSYNC_SSL_OPENSSL s_client $caopt $certopt -quiet -verify_quiet -servername $hostname -verify_hostname $hostname -connect $hostname:$port
|
||||
elif [[ $RSYNC_SSL_TYPE == gnutls ]]; then
|
||||
exec $RSYNC_SSL_GNUTLS --logfile=/dev/null $gnutls_cert_opt $gnutls_opts $hostname:$port
|
||||
else
|
||||
--
|
||||
2.25.1
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_RSYNC
|
||||
bool "rsync"
|
||||
# fork()
|
||||
depends on BR2_USE_MMU
|
||||
select BR2_PACKAGE_ZLIB
|
||||
select BR2_PACKAGE_POPT
|
||||
help
|
||||
File transfer program to keep remote files in sync.
|
||||
|
||||
http://rsync.samba.org/
|
||||
@@ -0,0 +1,5 @@
|
||||
# Locally calculated after checking pgp signature
|
||||
# https://download.samba.org/pub/rsync/src/rsync-3.2.3.tar.gz.asc
|
||||
sha256 becc3c504ceea499f4167a260040ccf4d9f2ef9499ad5683c179a697146ce50e rsync-3.2.3.tar.gz
|
||||
# Locally calculated
|
||||
sha256 0d33aa97d302cb9df27f99dfa28d58001c2479a02317956f1a7a890f3937a976 COPYING
|
||||
@@ -0,0 +1,33 @@
|
||||
################################################################################
|
||||
#
|
||||
# rsync
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RSYNC_VERSION = 3.2.3
|
||||
RSYNC_SITE = http://rsync.samba.org/ftp/rsync/src
|
||||
RSYNC_LICENSE = GPL-3.0+ with exceptions
|
||||
RSYNC_LICENSE_FILES = COPYING
|
||||
RSYNC_CPE_ID_VENDOR = samba
|
||||
RSYNC_SELINUX_MODULES = rsync
|
||||
RSYNC_DEPENDENCIES = zlib popt
|
||||
RSYNC_CONF_OPTS = \
|
||||
--with-included-zlib=no \
|
||||
--with-included-popt=no \
|
||||
--disable-simd \
|
||||
--disable-openssl \
|
||||
--disable-xxhash \
|
||||
--disable-zstd \
|
||||
--disable-lz4 \
|
||||
--disable-asm
|
||||
|
||||
# 0001-rsync-ssl-Verify-the-hostname-in-the-certificate-when-using-openssl.patch
|
||||
RSYNC_IGNORE_CVES += CVE-2020-14387
|
||||
|
||||
ifeq ($(BR2_PACKAGE_ACL),y)
|
||||
RSYNC_DEPENDENCIES += acl
|
||||
else
|
||||
RSYNC_CONF_OPTS += --disable-acl-support
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user