-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* syncli-net: update socat - update socat to v1.8.0.1 (#6258) * syncli-net: fix nmap for ARMv5 (#6256) - use cross/libpcap/Makefile for all libpcap versions - update libpcap (latest) to v1.10.5 - limit libpcap to v1.9.1 for ARMv5 - include mac-vendor list for arp-scan - remove bin/ndiff (python2 script) * add diyspk/rsync/Makefile * bind tools: fix for non x64 archs - disable the runtime check for cache alignment * cross/bind: remove installation of libtool-bin - the libtool binary is a prerequisite in the dev. environment (since update to debain 12) - installation by the Makefile is obsolete now (introduced by #5985)
- Loading branch information
Showing
24 changed files
with
97 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
rsc:bin/arp-fingerprint | ||
bin:bin/arp-scan | ||
rsc:bin/get-iab | ||
rsc:bin/get-oui | ||
rsc:etc/arp-scan/mac-vendor.txt | ||
rsc:share/arp-scan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
cross/bind/patches/001-disable-l1-cache-runtime-check.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Disable L1 cache alignment runtime check | ||
# | ||
# on most Synology systems the sysconf function returns 0 | ||
# instead of ISC_OS_CACHELINE_SIZE (64) | ||
# only on x64 systems the value is 64 (cpuinfo: "cache_alignment : 64") | ||
# | ||
# The first attempt was to disable the definition of HAVE_SYSCONF | ||
# by CONFIGURE_ARGS += ac_cv_func_sysconf=no, but this did not work | ||
# (HAVE_SYSCONF must be defined elsewhere) | ||
# | ||
# So far remove the runtime check for sysconf(_SC_LEVEL1_DCACHE_LINESIZE) only, | ||
# and keep the sysconf call to evaluate the number of cpus in os.c | ||
# | ||
--- lib/isc/os.c.orig 2022-01-12 12:04:23.274225500 +0100 | ||
+++ lib/isc/os.c 2024-10-14 23:18:34.813233430 +0200 | ||
@@ -80,8 +80,8 @@ | ||
isc__os_initialize(void) { | ||
ncpus_initialize(); | ||
#if defined(HAVE_SYSCONF) && defined(_SC_LEVEL1_DCACHE_LINESIZE) | ||
- long s = sysconf(_SC_LEVEL1_DCACHE_LINESIZE); | ||
- RUNTIME_CHECK((size_t)s == (size_t)ISC_OS_CACHELINE_SIZE); | ||
+// long s = sysconf(_SC_LEVEL1_DCACHE_LINESIZE); | ||
+// RUNTIME_CHECK((size_t)s == (size_t)ISC_OS_CACHELINE_SIZE); | ||
#endif | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
PKG_NAME = libpcap | ||
PKG_VERS = 1.10.5 | ||
PKG_EXT = tar.xz | ||
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) | ||
PKG_DIST_SITE = https://www.tcpdump.org/release | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
|
||
DEPENDS = | ||
|
||
# latest version for OLD_PPC_ARCHS and ARMv5 is 1.9.1 | ||
UNSUPPORTED_ARCHS = $(OLD_PPC_ARCHS) $(ARMv5_ARCHS) | ||
# latest version for ARMv7L is 1.10.4 | ||
UNSUPPORTED_ARCHS += $(ARMv7L_ARCHS) | ||
|
||
HOMEPAGE = https://www.tcpdump.org/ | ||
COMMENT = Portable C/C++ library for network traffic capture. | ||
LICENSE = BSD | ||
|
||
GNU_CONFIGURE = 1 | ||
CONFIGURE_ARGS = --with-pcap=linux | ||
ADDITIONAL_CFLAGS = -O | ||
|
||
include ../../mk/spksrc.cross-cc.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
lnk:lib/libpcap.so | ||
lnk:lib/libpcap.so.1 | ||
lib:lib/libpcap.so.1.10.4 | ||
lib:lib/libpcap.so.1.10.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
libpcap-1.10.5.tar.xz SHA1 ac029ecbd003a4b9c181867a9c500ad2d79935e8 | ||
libpcap-1.10.5.tar.xz SHA256 84fa89ac6d303028c1c5b754abff77224f45eca0a94eb1a34ff0aa9ceece3925 | ||
libpcap-1.10.5.tar.xz MD5 3d67f8b17db94a00a05636616fb0489b |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,12 @@ | ||
PKG_NAME = libpcap | ||
PKG_VERS = 1.10.4 | ||
PKG_EXT = tar.gz | ||
PKG_DIST_NAME = $(PKG_NAME)-$(PKG_VERS).$(PKG_EXT) | ||
PKG_DIST_SITE = https://www.tcpdump.org/release | ||
PKG_DIR = $(PKG_NAME)-$(PKG_VERS) | ||
PKG_NAME = libpcap-main | ||
|
||
DEPENDS = | ||
OPTIONAL_DEPENDS = cross/libpcap-latest | ||
OPTIONAL_DEPENDS += cross/libpcap-1.9 | ||
|
||
# latest version for OLD_PPC_ARCHS is 1.9.1 | ||
UNSUPPORTED_ARCHS = $(OLD_PPC_ARCHS) | ||
include ../../mk/spksrc.main-depends.mk | ||
|
||
HOMEPAGE = https://www.tcpdump.org/ | ||
COMMENT = Portable C/C++ library for network traffic capture. | ||
LICENSE = BSD | ||
|
||
GNU_CONFIGURE = 1 | ||
CONFIGURE_ARGS = --with-pcap=linux | ||
ADDITIONAL_CFLAGS = -O | ||
|
||
include ../../mk/spksrc.cross-cc.mk | ||
ifeq ($(findstring $(ARCH),$(OLD_PPC_ARCHS) $(ARMv5_ARCHS) $(ARMv7L_ARCHS)),$(ARCH)) | ||
DEPENDS = cross/libpcap-1.9 | ||
else | ||
DEPENDS = cross/libpcap-latest | ||
endif |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
bin:bin/ncat | ||
rsc:bin/ndiff | ||
bin:bin/nmap | ||
bin:bin/nping | ||
rsc:share/ncat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
bin:bin/ncat | ||
rsc:bin/ndiff | ||
bin:bin/nmap | ||
bin:bin/nping | ||
rsc:share/ncat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
socat-1.8.0.0.tar.bz2 SHA1 45915619996db1159ea79a6a23ec3ae27db6eeb9 | ||
socat-1.8.0.0.tar.bz2 SHA256 e1de683dd22ee0e3a6c6bbff269abe18ab0c9d7eb650204f125155b9005faca7 | ||
socat-1.8.0.0.tar.bz2 MD5 51f9ecdf5d942d0a3c150ea400eb89ef | ||
socat-1.8.0.1.tar.bz2 SHA1 6cf8b255108fc6bd7ab67fed61e0b52b21150fc4 | ||
socat-1.8.0.1.tar.bz2 SHA256 6a283565db7cf86292c6f70504c58abb03e29888adeed5a6c5f3457e803c1b81 | ||
socat-1.8.0.1.tar.bz2 MD5 e53a6e8e8594ac87476fe4ae361bbcd1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
SPK_NAME = rsync | ||
SPK_VERS = 3.3.0 | ||
SPK_REV = 1 | ||
|
||
DEPENDS = cross/rsync_update | ||
|
||
MAINTAINER = SynoCommunity | ||
DESCRIPTION = Rsync is a fast and extraordinarily versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon. It offers a large number of options that control every aspect of its behavior and permit very flexible specification of the set of files to be copied. It is famous for its delta-transfer algorithm, which reduces the amount of data sent over the network by sending only the differences between the source files and the existing files in the destination. Rsync is widely used for backups and mirroring and as an improved copy command for everyday use. | ||
STARTABLE = no | ||
|
||
HOMEPAGE = https://rsync.samba.org/ | ||
LICENSE = GPLv3 | ||
|
||
SPK_COMMANDS = bin/rsync bin/rsync-ssl | ||
|
||
include ../../mk/spksrc.spk.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
SPK_NAME = socat | ||
SPK_VERS = 1.8.0.0 | ||
SPK_VERS = 1.8.0.1 | ||
SPK_REV = 1 | ||
|
||
DEPENDS = cross/socat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters