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_UDPXY
bool "udpxy"
depends on BR2_USE_MMU
help
udpxy is a UDP-to-HTTP multicast traffic relay daemon: it
forwards UDP traffic from a given multicast subscription to
the requesting HTTP client.
http://www.udpxy.com/
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 6ce33b1d14a1aeab4bd2566aca112e41943df4d002a7678d9a715108e6b714bd udpxy.1.0.23-9-prod.tar.gz
sha256 60ead3913246c7cd930fe653c0053aba1af2cd9f82b266befdbbd6e0b8ecb750 README
+22
View File
@@ -0,0 +1,22 @@
################################################################################
#
# udpxy
#
################################################################################
UDPXY_VERSION = 1.0.23-9-prod
UDPXY_SOURCE = udpxy.$(UDPXY_VERSION).tar.gz
UDPXY_SITE = http://www.udpxy.com/download/1_23
UDPXY_LICENSE = GPL-3.0+
UDPXY_LICENSE_FILES = README
define UDPXY_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define UDPXY_INSTALL_TARGET_CMDS
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) PREFIX=/usr \
-C $(@D) install
endef
$(eval $(generic-package))