lantiq: fix dsl_control status handling.

Commit 7519a36774 ("base-files,procd: add generic service status")
introduced the generic 'status' command which broke the previous
dsl_control status output. To fix this, let's rename the "old" command
to "dslstat".

Fixes: 7519a36774 ("base-files,procd: add generic service status")
Signed-off-by: Martin Schiller <ms@dev.tdt.de>
master
Martin Schiller 5 years ago committed by David Bauer
parent f351beedfd
commit 71e04091a9

@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=dsl_cpe_control_danube PKG_NAME:=dsl_cpe_control_danube
PKG_VERSION:=3.24.4.4 PKG_VERSION:=3.24.4.4
PKG_RELEASE:=6 PKG_RELEASE:=7
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_BUILD_DIR:=$(BUILD_DIR)/dsl_cpe_control-$(PKG_VERSION) PKG_BUILD_DIR:=$(BUILD_DIR)/dsl_cpe_control-$(PKG_VERSION)
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources/ PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources/

@ -4,9 +4,9 @@
START=97 START=97
USE_PROCD=1 USE_PROCD=1
EXTRA_COMMANDS="status lucistat" EXTRA_COMMANDS="dslstat lucistat"
EXTRA_HELP=" status Get DSL status information EXTRA_HELP=" dslstat Get DSL status information
lucistat Get status information if lua friendly format" lucistat Get status information in lua friendly format"
[ -f /lib/functions/lantiq_dsl.sh ] && . /lib/functions/lantiq_dsl.sh [ -f /lib/functions/lantiq_dsl.sh ] && . /lib/functions/lantiq_dsl.sh

@ -9,7 +9,7 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=ltq-vdsl-app PKG_NAME:=ltq-vdsl-app
PKG_VERSION:=4.17.18.6 PKG_VERSION:=4.17.18.6
PKG_RELEASE:=2 PKG_RELEASE:=3
PKG_BASE_NAME:=dsl_cpe_control PKG_BASE_NAME:=dsl_cpe_control
PKG_SOURCE:=$(PKG_BASE_NAME)_vrx-$(PKG_VERSION).tar.gz PKG_SOURCE:=$(PKG_BASE_NAME)_vrx-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources PKG_SOURCE_URL:=http://mirror2.openwrt.org/sources

@ -4,9 +4,9 @@
START=97 START=97
USE_PROCD=1 USE_PROCD=1
EXTRA_COMMANDS="status lucistat" EXTRA_COMMANDS="dslstat lucistat"
EXTRA_HELP=" status Get DSL status information EXTRA_HELP=" dslstat Get DSL status information
lucistat Get status information if lua friendly format" lucistat Get status information in lua friendly format"
[ -f /lib/functions/lantiq_dsl.sh ] && . /lib/functions/lantiq_dsl.sh [ -f /lib/functions/lantiq_dsl.sh ] && . /lib/functions/lantiq_dsl.sh

@ -728,7 +728,7 @@ profile() {
fi fi
} }
status() { dslstat() {
vendor vendor
chipset chipset
xtse xtse
@ -744,6 +744,6 @@ status() {
lucistat() { lucistat() {
echo "local dsl={}" echo "local dsl={}"
status dslstat
echo "return dsl" echo "return dsl"
} }

Loading…
Cancel
Save