From 49984c2e22659e5953b7a8ae209d4e60cb82a12d Mon Sep 17 00:00:00 2001 From: Jianhui Zhao Date: Thu, 25 Apr 2019 11:01:28 +0800 Subject: [PATCH] rtty: update to 6.6.1 Signed-off-by: Jianhui Zhao --- utils/rtty/Makefile | 6 +++--- utils/rtty/files/rtty.config | 1 + utils/rtty/files/rtty.init | 4 +++- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/utils/rtty/Makefile b/utils/rtty/Makefile index 480ce32051..0696f6d8cb 100644 --- a/utils/rtty/Makefile +++ b/utils/rtty/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=rtty -PKG_VERSION:=6.5.0 -PKG_RELEASE:=2 +PKG_VERSION:=6.6.1 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE_VERSION:=v$(PKG_VERSION) PKG_SOURCE_URL=https://codeload.github.com/zhaojh329/rtty/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=736f4f6bb214c5d97ae530d8029b9a113dbd82b5e6683cf46bf9f23c55fb10d8 +PKG_HASH:=4a46bd80f738ccb9aeea7c0cb8aa5ac364fd964d9ccc1bc3faf7b68eae17007c CMAKE_INSTALL:=1 PKG_BUILD_DIR=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_SOURCE_SUBDIR) diff --git a/utils/rtty/files/rtty.config b/utils/rtty/files/rtty.config index dfa2aa33d7..65138e6310 100644 --- a/utils/rtty/files/rtty.config +++ b/utils/rtty/files/rtty.config @@ -11,3 +11,4 @@ # option port '5912' # Server Port # option ssl 1 # Whether to use ssl # option keepalive 5 # keep alive in seconds for this client +# option token 'your-token' # generated by rttys diff --git a/utils/rtty/files/rtty.init b/utils/rtty/files/rtty.init index f18497af8a..55a131053a 100644 --- a/utils/rtty/files/rtty.init +++ b/utils/rtty/files/rtty.init @@ -13,7 +13,8 @@ validate_rtty_section() { 'host:host' \ 'port:port' \ 'ssl:bool:0' \ - 'keepalive:uinteger:5' + 'keepalive:uinteger:5' \ + 'token:maxlength(32)' } start_rtty() { @@ -49,6 +50,7 @@ start_rtty() { [ -n "$id" ] && procd_append_param command -I "$id" [ -n "$description" ] && procd_append_param command -d "$description" [ "$ssl" = "1" ] && procd_append_param command -s + [ -n "$token" ] && procd_append_param command -t "$token" procd_set_param respawn procd_close_instance }