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
+23
View File
@@ -0,0 +1,23 @@
config BR2_PACKAGE_SIPROXD
bool "siproxd"
depends on BR2_USE_MMU # fork()
depends on BR2_TOOLCHAIN_HAS_THREADS
select BR2_PACKAGE_LIBOSIP2
select BR2_PACKAGE_LIBTOOL
select BR2_PACKAGE_SQLITE
help
Siproxd is a proxy/masquerading daemon for SIP (Session
Initiation Protocol), which is used in IP telephony. It
handles registrations of SIP clients on a private IP network
and performs rewriting of the SIP message bodies to make SIP
connections work via a masquerading firewall (NAT). It allows
SIP software clients (like kphone, linphone) or SIP hardware
clients (Voice over IP phones which are SIP-compatible, such
as those from Cisco, Grandstream or Snom) to work behind an IP
masquerading firewall or NAT router.
http://siproxd.sourceforge.net/
comment "siproxd needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
+10
View File
@@ -0,0 +1,10 @@
# Locally calculated after checking pgp signature from:
# https://downloads.sourceforge.net/project/siproxd/siproxd/0.8.3/siproxd-0.8.3.tar.gz.asc
sha256 9a6d7a6bb6fff162775b1e1fb7018de9c69642cbf8626185dc6ffceeeba07736 siproxd-0.8.3.tar.gz
# https://sourceforge.net/projects/siproxd/files/siproxd/0.8.3/
sha1 d13d4a05b8a16dbe20d04b99b535610e49050d9d siproxd-0.8.3.tar.gz
md5 9a9d2c89e5f0c59fdde9444a66d8372c siproxd-0.8.3.tar.gz
# Hash for license files:
sha256 231f7edcc7352d7734a96eef0b8030f77982678c516876fcb81e25b32d68564c COPYING
+17
View File
@@ -0,0 +1,17 @@
################################################################################
#
# siproxd
#
################################################################################
SIPROXD_VERSION = 0.8.3
SIPROXD_SITE = https://downloads.sourceforge.net/project/siproxd/siproxd/$(SIPROXD_VERSION)
SIPROXD_LICENSE = GPL-2.0+
SIPROXD_LICENSE_FILES = COPYING
SIPROXD_DEPENDENCIES = libosip2 libtool sqlite
SIPROXD_CONF_OPTS = --without-included-ltdl
$(eval $(autotools-package))