From 5dcfde18becbc97b9030ccd70c95715746bfdc45 Mon Sep 17 00:00:00 2001 From: Antonio Paunovic Date: Tue, 6 Jun 2017 14:52:05 +0000 Subject: [PATCH] sysrepo: salience Script priority adjusted. Custom memory management turned off to save some memory on low-end device. Signed-off-by: Antonio Paunovic --- net/sysrepo/Makefile | 3 ++- net/sysrepo/files/sysrepo.init | 8 +------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/net/sysrepo/Makefile b/net/sysrepo/Makefile index ac4030df3..575fd7a59 100644 --- a/net/sysrepo/Makefile +++ b/net/sysrepo/Makefile @@ -81,7 +81,8 @@ CMAKE_OPTIONS += \ -DCOMMIT_VERIFY_TIMEOUT=20 \ -DOPER_DATA_PROVIDE_TIMEOUT=4 \ -DNOTIF_AGE_TIMEOUT=120 \ - -DNOTIF_TIME_WINDOW=20 + -DNOTIF_TIME_WINDOW=20 \ + -DUSE_SR_MEM_MGMT=0 define Package/libsysrepo/install $(INSTALL_DIR) $(1)/usr/lib diff --git a/net/sysrepo/files/sysrepo.init b/net/sysrepo/files/sysrepo.init index 9c9262c37..9a4320133 100644 --- a/net/sysrepo/files/sysrepo.init +++ b/net/sysrepo/files/sysrepo.init @@ -1,6 +1,6 @@ #!/bin/sh /etc/rc.common -START=70 +START=60 STOP=10 USE_PROCD=1 @@ -23,12 +23,6 @@ start_service() { stop_service() { - if [ -f /etc/init.d/netopeer2-server ]; then - # netopeer2-server will automatically start sysrepod, - # so we need to stop it - /etc/init.d/netopeer2-server stop - sleep 1 - fi service_stop ${PROG_PLUGIN} service_stop ${PROG_DEAMON} }