From bb3f2b0c2a02d7d5d83aae799a2ae669d374d42c Mon Sep 17 00:00:00 2001 From: tongyebin Date: Thu, 10 Oct 2019 16:52:42 +0800 Subject: [PATCH] =?UTF-8?q?Mod=20=20aaa-12=20=E4=BF=AE=E6=94=B9LTE?= =?UTF-8?q?=E6=A8=A1=E5=9D=97=20RCA=EF=BC=9A=20SOL=EF=BC=9A=20=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E4=BA=BA=EF=BC=9Atongyebin=20=E6=A3=80=E8=A7=86?= =?UTF-8?q?=E4=BA=BA=EF=BC=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../user/configm/config-server/LTE_config/LTE_config.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Platform/user/configm/config-server/LTE_config/LTE_config.c b/Platform/user/configm/config-server/LTE_config/LTE_config.c index b2070987f..0018bb94c 100644 --- a/Platform/user/configm/config-server/LTE_config/LTE_config.c +++ b/Platform/user/configm/config-server/LTE_config/LTE_config.c @@ -39,7 +39,7 @@ ret_code LTE_config_init(void) ret_code ret = RET_OK; char result[RESULT_LENGTH] = {0}; FILE *f = NULL; - f = popen(INIT_CMD,"r"); + f = popen("/etc/ppp/ppp-4g init","r"); if (NULL == f) { @@ -176,7 +176,7 @@ ret_code start_lte() int i = 0; FILE *f = NULL; - f = popen(START_CMD,"r"); + f = popen("/etc/ppp/ppp-4g start","r"); if (NULL == f) { @@ -233,7 +233,7 @@ ret_code stop_lte() char result[RESULT_LENGTH] = {0}; FILE *f = NULL; - f = popen(STOP_CMD,"r"); + f = popen("/etc/ppp/ppp-4g stop","r"); if (NULL == f) { @@ -270,7 +270,7 @@ ret_code restart_lte() int i = 0; FILE *f = NULL; - f = popen(RESTART_CMD,"r"); + f = popen("/etc/ppp/ppp-4g restart","r"); if (NULL == f) { @@ -372,7 +372,7 @@ ret_code status_lte(pointer output, int *output_len) ret_code ret = RET_OK; FILE *f = NULL; - f = popen(STATUS_CMD,"r"); + f = popen("/etc/ppp/ppp-4g status","r"); if(NULL == f) { rpc_log_info("execuate cmd fail\n");