From 48837118e1f99dfbe93167b3f11dc5dc96f872cd Mon Sep 17 00:00:00 2001 From: Yevhen Mykhno Date: Wed, 8 Jun 2022 15:09:47 +0300 Subject: [MTX-4503] mPower R.6.0.X: Remove Verizon FOTA feature from the code GP-1610 --- main.cpp | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/main.cpp b/main.cpp index d29d2ad..59023c6 100644 --- a/main.cpp +++ b/main.cpp @@ -66,7 +66,6 @@ std::string g_sMIPMnAaaSs; std::string g_sMIPMnHaSs; std::string g_sRxDiversity; std::string g_sActiveFirmware; -std::string g_sConfigFile; Json::Value g_jData; std::string g_sSimPin; std::string g_sCellularMode; @@ -107,7 +106,6 @@ const uint32_t OPT_MDN = 0x00400000; const uint32_t OPT_MSID = 0x00800000; const uint32_t OPT_SETRXDIVERSITY = 0x01000000; const uint32_t OPT_SETACTIVEFIRMWARE = 0x02000000; -const uint32_t OPT_CONFIG_FILE = 0x04000000; const uint32_t OPT_SET_CELLULAR_MODE = 0x08000000; const uint32_t OPT_UNLOCK_SIM_CARD = 0x20000000; const uint32_t OPT_RESET_RADIO = 0x40000000; @@ -136,7 +134,6 @@ static struct option long_options[] = { { "version", no_argument, 0, 'v' }, { "printlvl", required_argument, 0, 'p' }, { "device", required_argument, 0, 'd' }, - { "config-file", required_argument, 0, 'c' }, { "set-mdn", required_argument, 0, 'n' }, { "set-msl", required_argument, 0, 'm' }, { "set-msid", required_argument, 0, 's' }, @@ -352,10 +349,7 @@ int main(int argc, char** argv) { result = g_apRadio->updatePrl(jArgs, cb); printf("%s\n", code2str(result)); } else if(g_iOptions & OPT_INIT_FUMO) { - Json::Value jArgs(Json::objectValue); - if(g_iOptions & OPT_CONFIG_FILE) { - jArgs["config-file"] = g_sConfigFile; - } + Json::Value jArgs(Json::nullValue); result = g_apRadio->updateFumo(jArgs, cb); printf("%s\n", code2str(result)); } else if(g_iOptions & OPT_INIT_RTN) { @@ -536,13 +530,6 @@ void parseOptions(int argc, char** argv) g_iOptions |= OPT_SETMSL; break; - case 'c': - if(optarg != 0) { - g_sConfigFile = optarg; - } - g_iOptions |= OPT_CONFIG_FILE; - break; - case 'l': if(optarg != 0) { g_sMSL = optarg; @@ -700,7 +687,7 @@ void printHelp(const std::string& sApp) { printf("\t [ -t -d ] : send AT command. Timeout and device are optional\n"); printf("\t--device (d) : modem device to use, default: /dev/modem_at1\n"); printf("\t--init-dc : initiate device configuration update\n"); - printf("\t--init-fumo [ --config-file ] : initiate module/modem firmware update\n"); + printf("\t--init-fumo : initiate module/modem firmware update\n"); printf("\t--init-prl : initiate PRL update\n"); printf("\t--init-activation [ --msid --mdn ]\n"); printf("\t : initiate account activation. Some carriers require MDN and MSID\n"); -- cgit v1.2.3