Removed unnecessary files. 29/25829/1 10.91.0 koi/10.91.0 koi_10.91.0
authorRiku Nomoto <riku_nomoto@mail.toyota.co.jp>
Fri, 18 Dec 2020 03:47:38 +0000 (12:47 +0900)
committerRiku Nomoto <riku_nomoto@mail.toyota.co.jp>
Fri, 18 Dec 2020 03:47:38 +0000 (12:47 +0900)
The deleted files have not been built.

Signed-off-by: Riku Nomoto <riku_nomoto@mail.toyota.co.jp>
Change-Id: I96f372837508cd1068e0563ad9efccc4b0d114ab

16 files changed:
agl-basefiles/include/sm_launch_conf.h [deleted file]
service/system/config/library/system_manager_config/last2order/Makefile [deleted file]
service/system/config/library/system_manager_config/last2order/sm_last2order.cfo [deleted file]
service/system/config/library/system_manager_config/last2order/tool/mklast2ordertbl.pl [deleted file]
service/system/config/library/system_manager_config/order/Makefile [deleted file]
service/system/config/library/system_manager_config/order/launch_order_body.xml [deleted file]
service/system/config/library/system_manager_config/order/launch_order_main.xml [deleted file]
service/system/config/library/system_manager_config/order/launch_order_xml2cfg.pl [deleted file]
service/system/config/library/system_manager_config/order/system_launcher_main.order.cfg [deleted file]
service/system/config/library/system_manager_config/order/system_launcher_main.xml [deleted file]
service/system/config/library/system_manager_config/xml/Makefile [deleted file]
service/system/config/library/system_manager_config/xml/launch_cfg2xml.sh [deleted file]
service/system/config/library/system_manager_config/xml/launch_xml2cfg.sh [deleted file]
service/system/config/library/system_manager_config/xml/sm_launch_agl.cfg [deleted file]
service/system/config/library/system_manager_config/xml/sm_launch_agl.xml [deleted file]
service/system/resource_manager/client/src/#resmgr_api_lib.c# [deleted file]

diff --git a/agl-basefiles/include/sm_launch_conf.h b/agl-basefiles/include/sm_launch_conf.h
deleted file mode 100644 (file)
index d444eb0..0000000
+++ /dev/null
@@ -1,1385 +0,0 @@
-/*
- * @copyright Copyright (c) 2016-2019 TOYOTA MOTOR CORPORATION.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#ifndef __AGL_THREAD_H__
-#define __AGL_THREAD_H__
-
-//MACRO
-#define PR_TSS_S    "0"
-#define PR_TSS      0
-
-/*
-  Main thread name. It need to be same as service name in sm_launch.xml or tskm_launch.xml
-  Max name length is 15
-  #define MN_XXXXX   "MainName"  
-
-  Thread name
-  Max name length is 15
-  #define TN_XXXXX        "ThreadName" 
-
-  Thread priority 0:TSS   1-99:FIFO
-  #define PR_XXXXX_S     "(0-99)"    //for xml
-  #define PR_XXXXX       0-99        //for program
-*/
-
-#define MN_SS_SYSMANAGER      "SS_SysManager"
-#define PR_SS_SYSMANAGER_S    "0"
-#define PR_SS_SYSMANAGER      (0)
-
-  #define TN_SMHEARTBEAT        "SM.Heartbeat"
-  #define PR_SMHEARTBEAT_S      "0"
-  #define PR_SMHEARTBEAT        (0)
-
-  #define TN_SMPROCLAUNCH       "SM.ProcLaunch"
-  #define PR_SMPROCLAUNCH_S     "0"
-  #define PR_SMPROCLAUNCH       (0)
-
-  #define TN_SMLOWMEMMON        "SM.LowMemMon"
-  #define PR_SMLOWMEMMON_S      "0"
-  #define PR_SMLOWMEMMON        (0)
-
-  #define TN_LOGGERRTIME        "LoggerRtime"
-  #define PR_LOGGERRTIME_S      PR_TSS_S
-  #define PR_LOGGERRTIME        PR_TSS
-
-
-//======= exec from system manager =============
-#define MN_NS_SHAREDMEM       "NS_SharedMem"
-#define PR_NS_SHAREDMEM_S     "0"
-#define PR_NS_SHAREDMEM       (0)
-
-
-#define MN_NS_NPPSERVICE      "NS_NPPService"
-#define PR_NS_NPPSERVICE_S    "0"
-#define PR_NS_NPPSERVICE      (0)
-
-  #define TN_NS_NPPREADWKR    "NS_NPPReadWkr"
-  #define PR_NS_NPPREADWKR_S  "0"
-  #define PR_NS_NPPREADWKR    (0)
-
-  #define TN_NS_NPPWRITEWKR   "NS_NPPWriteWkr"
-  #define PR_NS_NPPWRITEWKR_S "0"
-  #define PR_NS_NPPWRITEWKR   (0)
-
-  #define TN_NS_NPPIPWKR      "NS_NPPIPWkr"
-  #define PR_NS_NPPIPWKR_S    "0"
-  #define PR_NS_NPPIPWKR      (0)
-
-#define MN_NS_BACKUPMGR       "NS_BackupMgr"
-#define PR_NS_BACKUPMGR_S     "0"
-#define PR_NS_BACKUPMGR       (0)
-
-  #define TN_NS_BKUPNAND      "NS_BkupNAND"
-  #define PR_NS_BKUPNAND_S    "0"
-  #define PR_NS_BKUPNAND      (0)
-
-  #define TN_NS_BKUPDELAY     "NS_BkupDelay"
-  #define PR_NS_BKUPDELAY_S   "0"
-  #define PR_NS_BKUPDELAY     (0)
-
-#define MN_SS_DEVDETECTSRV    "SS_DevDetectSrv"
-#define PR_SS_DEVDETECTSRV_S  "0"
-#define PR_SS_DEVDETECTSRV    (0)
-
-  #define TN_SS_DETECT_USB    "SS_Detect_USB"
-  #define PR_SS_DETECT_USB_S  "0"
-  #define PR_SS_DETECT_USB    (0)
-
-  #define TN_SS_DETECT_SD     "SS_Detect_SD"
-  #define PR_SS_DETECT_SD_S   "0"
-  #define PR_SS_DETECT_SD     (0)
-
-  #define TN_SS_MONITOR_OVC     "SS_Monitor_OVC"
-  #define PR_SS_MONITOR_OVC_S   "0"
-  #define PR_SS_MONITOR_OVC     (0)
-
-#define MN_SS_LOGGERSRV       "SS_LoggerSrv"
-#define PR_SS_LOGGERSRV_S     PR_TSS_S
-#define PR_SS_LOGGERSRV       PR_TSS
-
-  #define TN_PDGLOGQUER       "pdg.LogQueR"
-  #define PR_PDGLOGQUER_S     PR_TSS_S
-  #define PR_PDGLOGQUER       PR_TSS
-
-  #define TN_PDGTRANSQUER     "pdg.TransQueR"
-  #define PR_PDGTRANSQUER_S   PR_TSS_S
-  #define PR_PDGTRANSQUER     PR_TSS
-
-  #define TN_PDGEVNTLOGQUE    "pdg.EvntLogQue"
-  #define PR_PDGEVNTLOGQUE_S  PR_TSS_S
-  #define PR_PDGEVNTLOGQUE    PR_TSS
-
-  #define TN_SSLOGGERSTRAGE   "SSLoggerStrage"
-  #define PR_SSLOGGERSTRAGE_S PR_TSS_S
-  #define PR_SSLOGGERSTRAGE   PR_TSS
-
-  #define TN_PFDRECTHREAD     "PFDRECThread"
-  #define PR_PFDRECTHREAD_S   PR_TSS_S
-  #define PR_PFDRECTHREAD     PR_TSS
-
-#define MN_PS_LOGGERSHADOW    "PS_LoggerShadow"
-  #define PR_PSLOGGERSHADOW_S   PR_TSS_S
-  #define PR_PSLOGGERSHADOW     PR_TSS
-
-#define MN_UDEVD              "udevd"
-#define PR_UDEVD_S            "1"
-#define PR_UDEVD              (1)
-
-#define MN_COMMUNICATION      "Communication"
-#define PR_COMMUNICATION_S    "0"
-#define PR_COMMUNICATION      (0)
-
-  #define TN_DEV_SYSCOM_TMR   "DEV_SYSCOM_TMR"
-  #define PR_DEV_SYSCOM_TMR_S "0"
-  #define PR_DEV_SYSCOM_TMR   (0)
-
-  #define TN_DEV_SYSCOM_RCV   "DEV_SYSCOM_RCV"
-  #define PR_DEV_SYSCOM_RCV_S "0"
-  #define PR_DEV_SYSCOM_RCV   (0)
-
-  #define TN_DEV_SYSCOM_MAIN    "DEV_SYSCOM_MAIN"
-  #define PR_DEV_SYSCOM_MAIN_S  "0"
-  #define PR_DEV_SYSCOM_MAIN    (0)
-
-  #define TN_TGWCOM           "TGWCOM"
-  #define PR_TGWCOM_S         "0"
-  #define PR_TGWCOM           (0)
-
-  #define TN__CWORD83_              "_CWORD83_"
-  #define PR__CWORD83__S            "0"
-  #define PR__CWORD83_              (0)
-
-  #define TN_CAN_COM_PROT     "CAN_COM_PROT"
-  #define PR_CAN_COM_PROT_S   "0"
-  #define PR_CAN_COM_PROT     (0)
-
-#define MN_PS_PSMSHADOW       "PS_PSMShadow"
-#define PR_PS_PSMSHADOW_S     "0"
-#define PR_PS_PSMSHADOW       (0)
-
-#define MN_COMMSH4A           "CommSH4A"
-#define PR_COMMSH4A_S         "0"
-#define PR_COMMSH4A           (0)
-
-  #define TN_DEV_SH4A_SND     "DEV_SH4ACOM_SND"
-  #define PR_DEV_SH4A_SND_S   "0"
-  #define PR_DEV_SH4A_SND     (0)
-
-  #define TN_DEV_SH4A_RCV     "DEV_SH4ACOM_RCV"
-  #define PR_DEV_SH4A_RCV_S   "0"
-  #define PR_DEV_SH4A_RCV     (0)
-
-  #define TN_DEV_SH4A_MON     "DEV_SH4ACOM_MON"
-  #define PR_DEV_SH4A_MON_S   "0"
-  #define PR_DEV_SH4A_MON     (0)
-
-#define MN_PS_COMMUSB         "PS_CommUSB"
-#define PR_PS_COMMUSB_S       "0"
-#define PR_PS_COMMUSB         (0)
-
-  #define TN_COMMUSB_RCV      "COMMUSB_RCV"
-  #define PR_COMMUSB_RCV_S    "0"
-  #define PR_COMMUSB_RCV      (0)
-
-  #define TN_COMMUSB_DIAG    "COMMUSB_DIAG"
-  #define PR_COMMUSB_DIAG_S  "0"
-  #define PR_COMMUSB_DIAG    (0)
-
-#define MN_PS_CANGW_M        "CANGW_M"
-#define PR_PS_CANGW_M_S       PR_TSS_S
-#define PR_PS_CANGW_M         PR_TSS
-
-  #define TN_CANGW_M_RCV       "CANGW_M_RCV"
-  #define PR_CANGW_M_RCV_S     PR_TSS_S
-  #define PR_CANGW_M_RCV       PR_TSS
-
-  #define TN_CANGW_M_DIAG      "CANGW_M_DIAG"
-  #define PR_CANGW_M_DIAG_S    PR_TSS_S
-  #define PR_CANGW_M_DIAG      PR_TSS
-
-#define MN_PS_CANGW_S         "CANGW_S"
-#define PR_PS_CANGW_S_S       PR_TSS_S
-#define PR_PS_CANGW_S         PR_TSS
-
-  #define TN_CANGW_S_SND       "CANGW_S_SND"
-  #define PR_CANGW_S_SND_S     PR_TSS_S
-  #define PR_CANGW_S_SND       PR_TSS
-
-  #define TN_CANGW_S_DIAG      "CANGW_S_DIAG"
-  #define PR_CANGW_S_DIAG_S    PR_TSS_S
-  #define PR_CANGW_S_DIAG      PR_TSS
-
-#define MN_LANSERVER          "LanServer"
-#define PR_LANSERVER_S        "0"
-#define PR_LANSERVER          (0)
-
-#define MN_PS_CDR             "ps_cdr"
-#define PR_PS_CDR_S           PR_TSS_S
-#define PR_PS_CDR             PR_TSS
-
-  #define TN_PS_CDR_NBD         "ps_cdr_nbd"
-  #define PR_PS_CDR_NBD_S       PR_TSS_S
-  #define PR_PS_CDR_NBD         PR_TSS
-
-  #define TN_PS_CDR_DOIT        "ps_cdr_doit"
-  #define PR_PS_CDR_DOIT_S      PR_TSS_S
-  #define PR_PS_CDR_DOIT        PR_TSS
-
-  #define TN_PS_CDR_READ        "ps_cdr_read"
-  #define PR_PS_CDR_READ_S      PR_TSS_S
-  #define PR_PS_CDR_READ        PR_TSS
-
-#define MN_POSITIONING        "Positioning"
-#define PR_POSITIONING_S      PR_TSS_S
-#define PR_POSITIONING        PR_TSS
-
-  #define TN_POSITIONING_GPS_MAIN     "POS_Main"
-  #define PR_POSITIONING_GPS_MAIN_S   PR_TSS_S
-  #define PR_POSITIONING_GPS_MAIN     PR_TSS
-
-  #define TN_POSITIONING_GPS_RECV     "POS_Gps_Recv"
-  #define PR_POSITIONING_GPS_RECV_S   PR_TSS_S
-  #define PR_POSITIONING_GPS_RECV     PR_TSS
-
-  #define TN_POSITIONING_GPS     "POS_Gps"
-  #define PR_POSITIONING_GPS_S   PR_TSS_S
-  #define PR_POSITIONING_GPS     PR_TSS
-
-  #define TN_POSITIONING_SENS     "POS_Sens"
-  #define PR_POSITIONING_SENS_S   PR_TSS_S
-  #define PR_POSITIONING_SENS     PR_TSS
-
-  #define TN_POSITIONING_GPS_ROLOVR     "POS_Gps_Rolovr"
-  #define PR_POSITIONING_GPS_ROLOVR_S   PR_TSS_S
-  #define PR_POSITIONING_GPS_ROLOVR     PR_TSS
-
-#define MN_CLOCK              "clock"
-#define PR_CLOCK_S            "0"
-#define PR_CLOCK              (0)
-
-  #define TN_CLOCK_MNG        "ClockMng"
-  #define PR_CLOCK_MNG_S      "0"
-  #define PR_CLOCK_MNG        (0)
-
-#define MN_VEHICLE            "vehicle"
-#define PR_VEHICLE_S          "0"
-#define PR_VEHICLE            (0)
-
-  #define TN_VEHICLE_SENS     "VehicleSens"
-  #define PR_VEHICLE_SENS_S   "0"
-  #define PR_VEHICLE_SENS     (0)
-
-  #define TN_LINE_SENS_DRV    "LineSensDrv"
-  #define PR_LINE_SENS_DRV_S  "0"
-  #define PR_LINE_SENS_DRV    (0)
-
-#define MN_SS_POWERSERVICE    "SS_PowerService"
-#define PR_SS_POWERSERVICE_S  "0"
-#define PR_SS_POWERSERVICE    (0)
-
-#define MN_SS_TASKMANAGER     "SS_TaskManager"
-#define PR_SS_TASKMANAGER_S   "0"
-#define PR_SS_TASKMANAGER     (0)
-
-  #define TN_SS_TSKMTIMER     "SS_TskmTimer"
-  #define PR_SS_TSKMTIMER_S   "0"
-  #define PR_SS_TSKMTIMER     (0)
-
-#define MN_SOUND              "Sound"
-#define PR_SOUND_S            "0"
-#define PR_SOUND              (0)
-
-  #define TN_VG_SNDSRCMGR     "VG_SNDSRCMGR"
-  #define PR_VG_SNDSRCMGR_S   "0"
-  #define PR_VG_SNDSRCMGR     (0)
-  
-  #define TN_SND_INPUTCTRL    "SND_INPUTCTRL"
-  #define PR_SND_INPUTCTRL_S  "0"
-  #define PR_SND_INPUTCTRL    (0)
-  
-  #define TN_SND_DEVCTRL      "SND_DEVCTRL"
-  #define PR_SND_DEVCTRL_S    "0"
-  #define PR_SND_DEVCTRL      (0)
-  
-  #define TN_SND_VCETRFCTRL   "SND_VCETRFCTRL"
-  #define PR_SND_VCETRFCTRL_S "0"
-  #define PR_SND_VCETRFCTRL   (0)
-
-  #define TN_SND_VCETRFWRT1   "SND_VCETRFWRT1"
-  #define PR_SND_VCETRFWRT1_S "0"
-  #define PR_SND_VCETRFWRT1   (0)
-
-  #define TN_SND_VCETRFWRT2   "SND_VCETRFWRT2"
-  #define PR_SND_VCETRFWRT2_S "0"
-  #define PR_SND_VCETRFWRT2   (0)
-  
-  #define TN_VG_SNDCTRL_BSCF    "VG_SNDCTRL_BSCF"
-  #define PR_VG_SNDCTRL_BSCF_S  "0"
-  #define PR_VG_SNDCTRL_BSCF    (0)
-  
-  #define TN_VG_SNDCTRL_BSCR    "VG_SNDCTRL_BSCR"
-  #define PR_VG_SNDCTRL_BSCR_S  "0"
-  #define PR_VG_SNDCTRL_BSCR    (0)
-  
-  #define TN_VG_SNDCTRL_ITRT    "VG_SNDCTRL_ITRT"
-  #define PR_VG_SNDCTRL_ITRT_S  "0"
-  #define PR_VG_SNDCTRL_ITRT    (0)
-  
-  #define TN_CVRS_OPRT_OUT_1    "CVRS_OPRT_OUT_1"
-  #define PR_CVRS_OPRT_OUT_1_S  "0"
-  #define PR_CVRS_OPRT_OUT_1    (0)
-  
-  #define TN_CVRS_OPRT_OUT_2    "CVRS_OPRT_OUT_2"
-  #define PR_CVRS_OPRT_OUT_2_S  "0"
-  #define PR_CVRS_OPRT_OUT_2    (0)
-  
-  #define TN_CVRS_OPRT_OUT_3    "CVRS_OPRT_OUT_3"
-  #define PR_CVRS_OPRT_OUT_3_S  "0"
-  #define PR_CVRS_OPRT_OUT_3    (0)
-
-  #define TN_CVRS_OPRT_OUT_4    "CVRS_OPRT_OUT_4"
-  #define PR_CVRS_OPRT_OUT_4_S  "0"
-  #define PR_CVRS_OPRT_OUT_4    (0)
-  
-  #define TN_CVRS_OPRT_IN_1    "CVRS_OPRT_IN_1"
-  #define PR_CVRS_OPRT_IN_1_S  "0"
-  #define PR_CVRS_OPRT_IN_1    (0)
-
-  #define TN_CVRS_OPRT_IN_2    "CVRS_OPRT_IN_2"
-  #define PR_CVRS_OPRT_IN_2_S  "0"
-  #define PR_CVRS_OPRT_IN_2    (0)
-
-  #define TN_CVRS_OPRT_IN_3    "CVRS_OPRT_IN_3"
-  #define PR_CVRS_OPRT_IN_3_S  "0"
-  #define PR_CVRS_OPRT_IN_3    (0)
-
-  #define TN_CVRS_OPRT_IN_4    "CVRS_OPRT_IN_4"
-  #define PR_CVRS_OPRT_IN_4_S  "0"
-  #define PR_CVRS_OPRT_IN_4    (0)
-
-  #define TN_CVRS_OPRT_IN_5    "CVRS_OPRT_IN_5"
-  #define PR_CVRS_OPRT_IN_5_S  "0"
-  #define PR_CVRS_OPRT_IN_5    (0)
-
-  #define TN_CVRS_OPRT_IN_6    "CVRS_OPRT_IN_6"
-  #define PR_CVRS_OPRT_IN_6_S  "0"
-  #define PR_CVRS_OPRT_IN_6    (0)
-
-  #define TN_CVRS_OPRT_IN_7    "CVRS_OPRT_IN_7"
-  #define PR_CVRS_OPRT_IN_7_S  "0"
-  #define PR_CVRS_OPRT_IN_7    (0)
-
-  #define TN_CVRS_OPRT_IN_8    "CVRS_OPRT_IN_8"
-  #define PR_CVRS_OPRT_IN_8_S  "0"
-  #define PR_CVRS_OPRT_IN_8    (0)
-
-  #define TN_CVRS_OPRT_BS_I     "CVRS_OPRT_BS_I"
-  #define PR_CVRS_OPRT_BS_I_S   "0"
-  #define PR_CVRS_OPRT_BS_I     (0)
-  
-  #define TN_VR_NVR_RECO        "VR_NVR_RECO"
-  #define PR_VR_NVR_RECO_S      "0"
-  #define PR_VR_NVR_RECO        (0)
-  
-  #define TN_SND_ECNR       "SND_ECNR"
-  #define PR_SND_ECNR_S     "0"
-  #define PR_SND_ECNR       (0)
-
-  #define TN_SNDAGENT_000       "SNDAGENT_000"
-  #define PR_SNDAGENT_000_S     "0"
-  #define PR_SNDAGENT_000       (0)
-
-  #define TN_SNDAGENT_001       "SNDAGENT_001"
-  #define PR_SNDAGENT_001_S     "0"
-  #define PR_SNDAGENT_001       (0)
-
-  #define TN_SNDAGENT_002       "SNDAGENT_002"
-  #define PR_SNDAGENT_002_S     "0"
-  #define PR_SNDAGENT_002       (0)
-
-  #define TN_SNDAGENT_003       "SNDAGENT_003"
-  #define PR_SNDAGENT_003_S     "0"
-  #define PR_SNDAGENT_003       (0)
-
-  #define TN_SNDAGENT_004       "SNDAGENT_004"
-  #define PR_SNDAGENT_004_S     "0"
-  #define PR_SNDAGENT_004       (0)
-
-  #define TN_SNDAGENT_005       "SNDAGENT_005"
-  #define PR_SNDAGENT_005_S     "0"
-  #define PR_SNDAGENT_005       (0)
-
-  #define TN_SNDAGENT_006       "SNDAGENT_006"
-  #define PR_SNDAGENT_006_S     "0"
-  #define PR_SNDAGENT_006       (0)
-
-  #define TN_SNDAGENT_007       "SNDAGENT_007"
-  #define PR_SNDAGENT_007_S     "0"
-  #define PR_SNDAGENT_007       (0)
-
-  #define TN_SNDAGENT_008       "SNDAGENT_008"
-  #define PR_SNDAGENT_008_S     "0"
-  #define PR_SNDAGENT_008       (0)
-
-  #define TN_SNDAGENT_009       "SNDAGENT_009"
-  #define PR_SNDAGENT_009_S     "0"
-  #define PR_SNDAGENT_009       (0)
-
-  #define TN_SNDAGENT_010       "SNDAGENT_010"
-  #define PR_SNDAGENT_010_S     "0"
-  #define PR_SNDAGENT_010       (0)
-
-  #define TN_SNDAGENT_011       "SNDAGENT_011"
-  #define PR_SNDAGENT_011_S     "0"
-  #define PR_SNDAGENT_011       (0)
-
-  #define TN_SNDAGENT_012       "SNDAGENT_012"
-  #define PR_SNDAGENT_012_S     "0"
-  #define PR_SNDAGENT_012       (0)
-
-  #define TN_SNDAGENT_013       "SNDAGENT_013"
-  #define PR_SNDAGENT_013_S     "0"
-  #define PR_SNDAGENT_013       (0)
-
-  #define TN_SNDAGENT_014       "SNDAGENT_014"
-  #define PR_SNDAGENT_014_S     "0"
-  #define PR_SNDAGENT_014       (0)
-
-  #define TN_SNDAGENT_015       "SNDAGENT_015"
-  #define PR_SNDAGENT_015_S     "0"
-  #define PR_SNDAGENT_015       (0)
-
-  #define TN_SNDAGENT_016       "SNDAGENT_016"
-  #define PR_SNDAGENT_016_S     "0"
-  #define PR_SNDAGENT_016       (0)
-
-  #define TN_SNDAGENT_017       "SNDAGENT_017"
-  #define PR_SNDAGENT_017_S     "0"
-  #define PR_SNDAGENT_017       (0)
-
-  #define TN_SNDAGENT_018       "SNDAGENT_018"
-  #define PR_SNDAGENT_018_S     "0"
-  #define PR_SNDAGENT_018       (0)
-
-  #define TN_SNDAGENT_019       "SNDAGENT_019"
-  #define PR_SNDAGENT_019_S     "0"
-  #define PR_SNDAGENT_019       (0)
-
-  #define TN_SNDAGENT_020       "SNDAGENT_020"
-  #define PR_SNDAGENT_020_S     "0"
-  #define PR_SNDAGENT_020       (0)
-
-  #define TN_SNDAGENT_021       "SNDAGENT_021"
-  #define PR_SNDAGENT_021_S     "0"
-  #define PR_SNDAGENT_021       (0)
-
-  #define TN_SNDAGENT_022       "SNDAGENT_022"
-  #define PR_SNDAGENT_022_S     "0"
-  #define PR_SNDAGENT_022       (0)
-
-  #define TN_SNDAGENT_023       "SNDAGENT_023"
-  #define PR_SNDAGENT_023_S     "0"
-  #define PR_SNDAGENT_023       (0)
-
-  #define TN_SNDAGENT_024       "SNDAGENT_024"
-  #define PR_SNDAGENT_024_S     "0"
-  #define PR_SNDAGENT_024       (0)
-
-  #define TN_SNDAGENT_025       "SNDAGENT_025"
-  #define PR_SNDAGENT_025_S     "0"
-  #define PR_SNDAGENT_025       (0)
-
-#define MN_SS_RESOURCEMGR     "SS_ResourceMgr"
-#define PR_SS_RESOURCEMGR_S   "0"
-#define PR_SS_RESOURCEMGR     (0)
-
-  #define TN_RESOURCEHWDT     "ResourceHWDT"
-  #define PR_RESOURCEHWDT_S   "0"
-  #define PR_RESOURCEHWDT     (0)
-
-#define MN_AS_AUDIOMANAGER    "AS_AudioManager"
-#define PR_AS_AUDIOMANAGER_S  PR_TSS_S
-#define PR_AS_AUDIOMANAGER    PR_TSS
-
-  #define TN_AS_SOUNDBEEP      "AS_SoundBeep"
-  #define PR_AS_SOUNDBEEP_S     PR_TSS_S
-  #define PR_AS_SOUNDBEEP      PR_TSS
-
-#define MN_GRAPHICS           "Graphics"
-#define PR_GRAPHICS_S         "0"
-#define PR_GRAPHICS           (0)
-
-  #define TN_GR_MAIN_CTRL     "Graphics_main"
-  #define PR_GR_MAIN_CTRL_S   PR_TSS_S
-  #define PR_GR_MAIN_CTRL     PR_TSS
-
-  #define TN_GR_SEQ_CTRL      "Graphics_seq"
-  #define PR_GR_SEQ_CTRL_S    PR_TSS_S
-  #define PR_GR_SEQ_CTRL      PR_TSS
-
-  #define TN_GR_DEV_RCV_CTRL     "Graphics_rcv"
-  #define PR_GR_DEV_RCV_CTRL_S   PR_TSS_S
-  #define PR_GR_DEV_RCV_CTRL     PR_TSS
-
-  #define TN_GR_VCAP1_CTRL    "Graphics_cap1"
-  #define PR_GR_VCAP1_CTRL_S   "0"
-  #define PR_GR_VCAP1_CTRL     (0)
-
-  #define TN_GR_VCAP2_CTRL    "Graphics_cap2"
-  #define PR_GR_VCAP2_CTRL_S   "0"
-  #define PR_GR_VCAP2_CTRL     (0)
-
-#define MN_VUPSERVICE         "vupservice"
-#define PR_VUPSERVICE_S       PR_TSS_S
-#define PR_VUPSERVICE         PR_TSS
-
-#define MN_SS_UPDATESERVICE   "UpdateService"
-#define PR_SS_UPDATESERVICE_S PR_TSS_S
-#define PR_SS_UPDATESERVICE   PR_TSS
-
-  #define TN_UPSERVICE_VERI     "t_update_veri"
-  #define PR_UPSERVICE_VERI_S   PR_TSS_S
-  #define PR_UPSERVICE_VERI     PR_TSS
-
-#define MN_NW_MICSERVICE      "NW_MicService"
-#define PR_NW_MICSERVICE_S    PR_TSS_S
-#define PR_NW_MICSERVICE      PR_TSS
-
-#define MN_NS_LOCKMGR         "LockMgr"
-#define PR_NS_LOCKMGR_S       PR_TSS_S
-#define PR_NS_LOCKMGR         PR_TSS
-
-#define MN_PS_SWITCHHANDLER      "SwitchHandler"
-#define PR_PS_SWITCHHANDLER_S    "0"
-#define PR_PS_SWITCHHANDLER      (0)
-
-#define MN_SS_WINSYS          "SS_WinSys"
-#define PR_SS_WINSYS_S        "0"
-#define PR_SS_WINSYS          0
-
-#define MN_MODEMANAGER        "modemanager"
-#define PR_MODEMANAGER_S      PR_TSS_S
-#define PR_MODEMANAGER        PR_TSS
-
-#define MN_BTSTACKMAIN        "btstackmain"
-#define PR_BTSTACKMAIN_S      PR_TSS_S
-#define PR_BTSTACKMAIN        PR_TSS
-
-#define MN_MEDIASERVICE       "MediaService"
-#define PR_MEDIASERVICE_S     PR_TSS_S
-#define PR_MEDIASERVICE       PR_TSS
-
-// REPRO START
-#define MN_REPROSERVICE       "ReproService"
-#define PR_REPROSERVICE_S      PR_TSS_S
-#define PR_REPROSERVICE        PR_TSS
-
-  #define TN_REPROSEQUENCER     "RPRS_Sequencer"
-  #define PR_REPROSEQUENCER_S   PR_TSS_S
-  #define PR_REPROSEQUENCER     PR_TSS
-
-  #define TN_REPROCTRL          "RPRS_Control"
-  #define PR_REPROCTRL_S        PR_TSS_S
-  #define PR_REPROCTRL          PR_TSS
-
-  #define TN_REPROCENTERCOMM    "RPRS_CenterComm"
-  #define PR_REPROCENTERCOMM_S  PR_TSS_S
-  #define PR_REPROCENTERCOMM    PR_TSS
-
-  #define TN_REPROUNITCOMM      "RPRS_UnitComm"
-  #define PR_REPROUNITCOMM_S    PR_TSS_S
-  #define PR_REPROUNITCOMM      PR_TSS
-
-  #define TN_REPROWEBDAVMGR     "RPRS_WebDAVMgr"
-  #define PR_REPROWEBDAVMGR_S   PR_TSS_S
-  #define PR_REPROWEBDAVMGR     PR_TSS
-
-#define MN_REPROAENDTEST       "Repro_Testpro_Sender"
-#define PR_REPROAENDTEST_S      PR_TSS_S
-#define PR_REPROAENDTEST        PR_TSS
-
-  #define TN_REPROAENDTESTTN       "Repro_TestproT"
-  #define PR_REPROAENDTESTTN_S      PR_TSS_S
-  #define PR_REPROAENDTESTTN        PR_TSS
-
-#define MN_REPROBACKVUP        "BackVupCtrl"
-#define PR_REPROBACKVUP_S       PR_TSS_S
-#define PR_REPROBACKVUP         PR_TSS
-
-#define MN_REPRODEVELOP        "DevReproService"
-#define PR_REPRODEVELOP_S       PR_TSS_S
-#define PR_REPRODEVELOP         PR_TSS
-// REPRO END
-
-  #define TN_MED_MMCOM_PLAY      "mmcom_play"
-  #define PR_MED_MMCOM_PLAY_S    PR_TSS_S
-  #define PR_MED_MMCOM_PLAY      PR_TSS
-
-  #define TN_MED_MMCOM_MEDIA     "mmcom_media"
-  #define PR_MED_MMCOM_MEDIA_S   PR_TSS_S
-  #define PR_MED_MMCOM_MEDIA     PR_TSS
-
-  #define TN_MED_MMCOM_DB        "mmcom_db"
-  #define PR_MED_MMCOM_DB_S      PR_TSS_S
-  #define PR_MED_MMCOM_DB        PR_TSS
-
-  #define TN_MED_MMCOM_LIST      "mmcom_list"
-  #define PR_MED_MMCOM_LIST_S    PR_TSS_S
-  #define PR_MED_MMCOM_LIST      PR_TSS
-  
-  #define TN_MED_MMCOM_DBUSB      "mmcom_dbusb"
-  #define PR_MED_MMCOM_DBUSB_S    PR_TSS_S
-  #define PR_MED_MMCOM_DBUSB      PR_TSS
-
-  #define TN_MED_MMCOM_DBSD      "mmcom_dbsd"
-  #define PR_MED_MMCOM_DBSD_S    PR_TSS_S
-  #define PR_MED_MMCOM_DBSD      PR_TSS
-
-  #define TN_MED_MMCOM_DBCD      "mmcom_dbcd"
-  #define PR_MED_MMCOM_DBCD_S    PR_TSS_S
-  #define PR_MED_MMCOM_DBCD      PR_TSS
-
-  #define TN_MED_MMCOM_PLAYRCV   "mmcom_playrcv"
-  #define PR_MED_MMCOM_PLAYRCV_S PR_TSS_S
-  #define PR_MED_MMCOM_PLAYRCV   PR_TSS
-
-  #define TN_MED_RIPCOM_MNG      "MngRipComm"
-  #define PR_MED_RIPCOM_MNG_S    PR_TSS_S
-  #define PR_MED_RIPCOM_MNG      PR_TSS
-
-  #define TN_MED_RIPCOM_EXE01    "ExeRipComm01"
-  #define PR_MED_RIPCOM_EXE01_S  PR_TSS_S
-  #define PR_MED_RIPCOM_EXE01    PR_TSS
-
-  #define TN_MED_RIPCOM_EXE02    "ExeRipComm02"
-  #define PR_MED_RIPCOM_EXE02_S  PR_TSS_S
-  #define PR_MED_RIPCOM_EXE02    PR_TSS
-
-  #define TN_MED_DISCCOM_MAIN    "disccom_main"
-  #define PR_MED_DISCCOM_MAIN_S  PR_TSS_S
-  #define PR_MED_DISCCOM_MAIN    PR_TSS
-
-  #define TN_MED_DISCCOM_DB      "disccom_db"
-  #define PR_MED_DISCCOM_DB_S    PR_TSS_S
-  #define PR_MED_DISCCOM_DB      PR_TSS
-
-#define MN_PLAYBACKSERVICE    "PlaybackService"
-#define PR_PLAYBACKSERVICE_S  PR_TSS_S
-#define PR_PLAYBACKSERVICE    PR_TSS
-
-  #define TN_PLAYSRV_AUDIO       "playsrv_audio"
-  #define PR_PLAYSRV_AUDIO_S     PR_TSS_S
-  #define PR_PLAYSRV_AUDIO       PR_TSS
-
-  #define TN_PLAYSRV_RIP         "playsrv_rip"
-  #define PR_PLAYSRV_RIP_S       PR_TSS_S
-  #define PR_PLAYSRV_RIP         PR_TSS
-
-  #define TN_PLAYSRV_PLAY        "playsrv_play"
-  #define PR_PLAYSRV_PLAY_S      PR_TSS_S
-  #define PR_PLAYSRV_PLAY        PR_TSS
-
-  #define TN_PLAYSRV_DISC        "playsrv_disc"
-  #define PR_PLAYSRV_DISC_S      PR_TSS_S
-  #define PR_PLAYSRV_DISC        PR_TSS
-
-  #define TN_PLAYSRV_ARTWORK     "playsrv_artwork"
-  #define PR_PLAYSRV_ARTWORK_S   PR_TSS_S
-  #define PR_PLAYSRV_ARTWORK     PR_TSS
-
-#define MN_DISCSERVICE        "DiscService"
-#define PR_DISCSERVICE_S      PR_TSS_S
-#define PR_DISCSERVICE        PR_TSS
-
-#define MN_RADIOSERVICE       "RadioService"
-#define PR_RADIOSERVICE_S     PR_TSS_S
-#define PR_RADIOSERVICE       PR_TSS
-
-#define MN_RADIOHDARBITER     "RadioHDArbiter"
-#define PR_RADIOHDARBITER_S   "0"
-#define PR_RADIOHDARBITER     (0)
-
-#define MN_HRDS_MANAGER     "hrds_manager"
-#define PR_HRDS_MANAGER_S   PR_TSS_S
-#define PR_HRDS_MANAGER     PR_TSS
-
-  #define TN_HRDS_HDMNG      "hrds_hdmng"
-  #define PR_HRDS_HDMNG_S    PR_TSS_S
-  #define PR_HRDS_HDMNG      PR_TSS
-
-  #define TN_HRDS_HDDEC      "hrds_hddec"
-  #define PR_HRDS_HDDEC_S    PR_TSS_S
-  #define PR_HRDS_HDDEC      PR_TSS
-
-  #define TN_HRDS_WEBMNG      "hrds_webmng"
-  #define PR_HRDS_WEBMNG_S    PR_TSS_S
-  #define PR_HRDS_WEBMNG      PR_TSS
-
-  #define TN_HRDS_WEBCOM      "hrds_webcom"
-  #define PR_HRDS_WEBCOM_S    PR_TSS_S
-  #define PR_HRDS_WEBCOM      PR_TSS
-
-#define MN_BT_CONNECTIONSERVICE      "BT_CnctSrv"
-#define PR_BT_CONNECTIONSERVICE_S    PR_TSS_S
-#define PR_BT_CONNECTIONSERVICE      PR_TSS
-
-#define MN_BT_PHONESERVICE           "BT_PhoneSrv"
-#define PR_BT_PHONESERVICE_S         PR_TSS_S
-#define PR_BT_PHONESERVICE           PR_TSS
-
-#define MN_BT_PHONEBOOKSERVICE       "BT_PbkSrv"
-#define PR_BT_PHONEBOOKSERVICE_S     PR_TSS_S
-#define PR_BT_PHONEBOOKSERVICE       PR_TSS
-
-#define MN_BT_MESSAGINGSERVICE       "BT_MsgSrv"
-#define PR_BT_MESSAGINGSERVICE_S     PR_TSS_S
-#define PR_BT_MESSAGINGSERVICE       PR_TSS
-
-#define MN_BT_BLLSERVICE             "TEL_BLLSrv"
-#define PR_BT_BLLSERVICE_S           PR_TSS_S
-#define PR_BT_BLLSERVICE             PR_TSS
-
-#define MN_BT_DCMPHONESERVICE        "DCM_PhoneSrv"
-#define PR_BT_DCMPHONESERVICE_S      PR_TSS_S
-#define PR_BT_DCMPHONESERVICE        PR_TSS
-
-  #define TN_BT_CONSRV_HFPMULTIQ1      "HFPMultiQ1"
-  #define PR_TN_BT_CONSRV_HFPMULTIQ1_S PR_TSS_S
-  #define PR_TN_BT_CONSRV_HFPMULTIQ1   PR_TSS
-
-  #define TN_BT_CONSRV_HFPMULTIQ2      "HFPMultiQ2"
-  #define PR_TN_BT_CONSRV_HFPMULTIQ2_S PR_TSS_S
-  #define PR_TN_BT_CONSRV_HFPMULTIQ2   PR_TSS
-
-  #define TN_BT_PBKSRV_DATABASE             "BTPB_Database"
-  #define PR_TN_BT_PBKSRV_DATABASE_S        PR_TSS_S
-  #define PR_TN_BT_PBKSRV_DATABASE          PR_TSS
-
-  #define TN_BT_PBKSRV_LOCALPBINST          "LocalPBINST"
-  #define PR_TN_BT_PBKSRV_LOCALPBINST_S     PR_TSS_S
-  #define PR_TN_BT_PBKSRV_LOCALPBINST       PR_TSS
-
-  #define TN_BT_PBKSRV_RESOLVENAME          "ResolveName"
-  #define PR_TN_BT_PBKSRV_RESOLVENAME_S     PR_TSS_S
-  #define PR_TN_BT_PBKSRV_RESOLVENAME       PR_TSS
-
-  #define TN_BT_PBKSRV_PBAPMULTIQ1          "PBAPMultiQ1"
-  #define PR_TN_BT_PBKSRV_PBAPMULTIQ1_S     PR_TSS_S
-  #define PR_TN_BT_PBKSRV_PBAPMULTIQ1       PR_TSS
-
-  #define TN_BT_PBKSRV_OPPMULTI             "OPPMulti"
-  #define PR_TN_BT_PBKSRV_OPPMULTI_S        PR_TSS_S
-  #define PR_TN_BT_PBKSRV_OPPMULTI          PR_TSS
-  
-  #define TN_BT_PBKSRV_VCARDPARSER          "VCardParser"
-  #define PR_TN_BT_PBKSRV_VCARDPARSER_S     PR_TSS_S
-  #define PR_TN_BT_PBKSRV_VCARDPARSER       PR_TSS
-
-  #define TN_BT_MSGSRV_MSGCNTRLTHREAD0      "MsgCntrlThread0"
-  #define PR_TN_BT_MSGSRV_MSGCNTRLTHREAD0_S PR_TSS_S
-  #define PR_TN_BT_MSGSRV_MSGCNTRLTHREAD0   PR_TSS
-
-  #define TN_BT_MSGSRV_MSGCNTRLTHREAD1      "MsgCntrlThread1"
-  #define PR_TN_BT_MSGSRV_MSGCNTRLTHREAD1_S PR_TSS_S
-  #define PR_TN_BT_MSGSRV_MSGCNTRLTHREAD1   PR_TSS
-
-  #define TN_BT_MSGSRV_MAPMULTI             "MapMulti"
-  #define PR_TN_BT_MSGSRV_MAPMULTI_S        PR_TSS_S
-  #define PR_TN_BT_MSGSRV_MAPMULTI          PR_TSS
-
-#define MN_DTVSERVICE         "DtvService"
-#define PR_DTVSERVICE_S       PR_TSS_S
-#define PR_DTVSERVICE         PR_TSS
-
-  #define TN_DTVTNC_TX        "dtvtnc_tx"
-  #define PR_DTVTNC_TX_S      PR_TSS_S
-  #define PR_DTVTNC_TX        PR_TSS
-
-  #define TN_DTVTNC_RCV       "dtvtnc_rcv"
-  #define PR_DTVTNC_RCV_S     PR_TSS_S
-  #define PR_DTVTNC_RCV       PR_TSS
-
-  #define TN_DTVTNC_TIMER     "dtvtnc_timer"
-  #define PR_DTVTNC_TIMER_S   PR_TSS_S
-  #define PR_DTVTNC_TIMER     PR_TSS
-
-  #define TN_DTVTNC_CTL       "dtvtnc_ctl"
-  #define PR_DTVTNC_CTL_S     PR_TSS_S
-  #define PR_DTVTNC_CTL       PR_TSS
-
-#define MN_DTVVUPSERVICE      "DtvVupService"
-#define PR_DTVVUPSERVICE_S    PR_TSS_S
-#define PR_DTVVUPSERVICE      PR_TSS
-
-#define MN_SETTINGSERVICE     "SettingService"
-#define PR_SETTINGSERVICE_S   PR_TSS_S
-#define PR_SETTINGSERVICE     PR_TSS
-
-#define MN_INFOSETTINGSRV     "InfoSettingSrv"
-#define PR_INFOSETTINGSRV_S   PR_TSS_S
-#define PR_INFOSETTINGSRV     PR_TSS
-
-  #define TN_INFS_UIC         "infs_uic"
-  #define PR_INFS_UIC_S       PR_TSS_S
-  #define PR_INFS_UIC         PR_TSS
-#define MN_DELPERSONALSRV     "DelPersonalSrv"
-#define PR_DELPERSONALSRV_S   PR_TSS_S
-#define PR_DELPERSONALSRV     PR_TSS
-
-#define MN_MENUSERVICE        "MenuService"
-#define PR_MENUSERVICE_S      PR_TSS_S
-#define PR_MENUSERVICE        PR_TSS
-
-#define MN_NAVIPROXY          "NaviProxy"
-#define PR_NAVIPROXY_S        PR_TSS_S
-#define PR_NAVIPROXY          PR_TSS
-
-#define MN_AWBPROXY           "AwbProxy"
-#define PR_AWBPROXY_S         PR_TSS_S
-#define PR_AWBPROXY           PR_TSS
-
-#define MN_TFFPROXY           "TFFProxy"
-#define PR_TFFPROXY_S         PR_TSS_S
-#define PR_TFFPROXY           PR_TSS
-
-#define MN_TFFPROXYSLAVE      "TFFProxySlave"
-#define PR_TFFPROXYSLAVE_S    PR_TSS_S
-#define PR_TFFPROXYSLAVE      PR_TSS
-
-#define MN_AWNPRIMARY         "AwnPrimary"
-#define PR_AWNPRIMARY_S       PR_TSS_S
-#define PR_AWNPRIMARY         PR_TSS
-
-#define MN_AWBPRIMARY         "AwbPrimary"
-#define PR_AWBPRIMARY_S       PR_TSS_S
-#define PR_AWBPRIMARY         PR_TSS
-
-#define MN_AWMPRIMARY         "AwmPrimary"
-#define PR_AWMPRIMARY_S       PR_TSS_S
-#define PR_AWMPRIMARY         PR_TSS
-
-#define MN_AWTPRIMARY         "AwtPrimary"
-#define PR_AWTPRIMARY_S       PR_TSS_S
-#define PR_AWTPRIMARY         PR_TSS
-
-#define MN_MISINKSERVICE      "MisinkService"
-#define PR_MISINKSERVICE_S    PR_TSS_S
-#define PR_MISINKSERVICE      PR_TSS
-
-#define MN_TEXTCONVERTER      "TextConverter"
-#define PR_TEXTCONVERTER_S    PR_TSS_S
-#define PR_TEXTCONVERTER      PR_TSS
-
-#define MN_HANDWRITING        "HandWriting"
-#define PR_HANDWRITING_S      PR_TSS_S
-#define PR_HANDWRITING        PR_TSS
-
-#define MN_EXTUNITAUTH_D      "EXTUNITAUTH_D"
-#define PR_EXTUNITAUTH_D_S    "0"
-#define PR_EXTUNITAUTH_D      0
-
-  #define TN_VPSVC__CWORD84_        "VPSVC_D"
-  #define PR_VPSVC__CWORD84__S      PR_TSS_S
-  #define PR_VPSVC__CWORD84_        PR_TSS
-
-#define MN_PROXYSERVICE       "ProxyService"
-#define PR_PROXYSERVICE_S     PR_TSS_S
-#define PR_PROXYSERVICE       PR_TSS
-
-#define MN_FUELSERVICE        "VS_FUCSrv"
-#define PR_FUELSERVICE_S      PR_TSS_S
-#define PR_FUELSERVICE        PR_TSS
-
-#define MN_ENERGYSERVICE      "VS_ENMSrv"
-#define PR_ENERGYSERVICE_S    PR_TSS_S
-#define PR_ENERGYSERVICE      PR_TSS
-
-#define MN_CUSTOMIZESERVICE   "VS_VSDSrv"
-#define PR_CUSTOMIZESERVICE_S PR_TSS_S
-#define PR_CUSTOMIZESERVICE   PR_TSS
-
-#define MN_DMSSERVICE         "VS_DMSSrv"
-#define PR_DMSSERVICE_S       PR_TSS_S
-#define PR_DMSSERVICE         PR_TSS
-
-#define MN_AIRCONSERVICE      "VS_ACNSrv"
-#define PR_AIRCONSERVICE_S    PR_TSS_S
-#define PR_AIRCONSERVICE      PR_TSS
-
-#define MN_SEATSERVICE        "VS_NMSSrv"
-#define PR_SEATSERVICE_S      PR_TSS_S
-#define PR_SEATSERVICE        PR_TSS
-
-#define MN_CAMERASERVICE      "VS_CMRSrv"
-#define PR_CAMERASERVICE_S    PR_TSS_S
-#define PR_CAMERASERVICE      PR_TSS
-
-  #define TN_CAMERAQUICKRVC   "QuickRVCThread"
-  #define PR_CAMERAQUICKRVC_S PR_TSS_S
-  #define PR_CAMERAQUICKRVC   PR_TSS
-
-#define MN_METSERVICE         "VS_METSrv"
-#define PR_METSERVICE_S       PR_TSS_S
-#define PR_METSERVICE         PR_TSS
-
-#define MN_TMCSERVICE         "VS_TMCSrv"
-#define PR_TMCSERVICE_S       PR_TSS_S
-#define PR_TMCSERVICE         PR_TSS
-
-#define MN_DASSERVICE         "VS_DASSrv"
-#define PR_DASSERVICE_S       PR_TSS_S
-#define PR_DASSERVICE         PR_TSS
-
-#define MN_EXTUNITAUTH_M      "EXTUNITAUTH_M"
-#define PR_EXTUNITAUTH_M_S    "0"
-#define PR_EXTUNITAUTH_M      0
-
-#define MN_DUMMYREAD         "DummyRead"
-#define PR_DUMMYREAD_S       PR_TSS_S
-#define PR_DUMMYREAD         PR_TSS
-
-#define MN_SSTSERVICE         "storage_access"
-#define PR_SSTSERVICE_S       PR_TSS_S
-#define PR_SSTSERVICE         PR_TSS
-
-#define MN_CCSAUDITD         "ccs-auditd"
-#define PR_CCSAUDITD_S       PR_TSS_S
-#define PR_CCSAUDITD         PR_TSS
-
-//exec from task manager
-#define MN_ACTIVITYMANAGER    "ActivityManager"
-#define PR_ACTIVITYMANAGER_S  PR_TSS_S
-#define PR_ACTIVITYMANAGER    PR_TSS
-
-#define MN_RESIDENT_SVC       "RESIDENT_SVC"
-#define PR_RESIDENT_SVC_S     PR_TSS_S
-#define PR_RESIDENT_SVC       PR_TSS
-
-#define MN_TRANSIENT_SVC      "TRANSIENT_SVC"
-#define PR_TRANSIENT_SVC_S    PR_TSS_S
-#define PR_TRANSIENT_SVC      PR_TSS
-
-#define MN_WLANSERVICE        "wlan_ctrl_0700"
-#define PR_WLANSERVICE_S      PR_TSS_S
-#define PR_WLANSERVICE        PR_TSS
-
-#define MN_WLANEVTTHR         "WlanEvtThr"
-#define PR_WLANEVTTHR_S       PR_TSS_S
-#define PR_WLANEVTTHR         PR_TSS
-
-#define MN_WLANMIDDLESERVICE     "WlanMiddle"
-#define PR_WLANMIDDLESERVICE_S   PR_TSS_S
-#define PR_WLANMIDDLESERVICE     PR_TSS
-
-  #define TN_WLANMIDDLESERVICE0    "WM_MsgCtrlTh0"
-  #define PR_WLANMIDDLESERVICE0_S  PR_TSS_S
-  #define PR_WLANMIDDLESERVICE0    PR_TSS
-
-  #define TN_WLANMIDDLESERVICE1    "WM_MsgCtrlTh1"
-  #define PR_WLANMIDDLESERVICE1_S  PR_TSS_S
-  #define PR_WLANMIDDLESERVICE1    PR_TSS
-
-  #define TN_WLANMIDDLESERVICE2    "WM_MsgCtrlTh2"
-  #define PR_WLANMIDDLESERVICE2_S  PR_TSS_S
-  #define PR_WLANMIDDLESERVICE2    PR_TSS
-
-#define MN_WLANSERVICE2       "wlan_ctrl_0701"
-#define PR_WLANSERVICE2_S     PR_TSS_S
-#define PR_WLANSERVICE2       PR_TSS
-
-#define MN_WLANEVTTHR2        "WlanEvtThr2"
-#define PR_WLANEVTTHR2_S      PR_TSS_S
-#define PR_WLANEVTTHR2        PR_TSS
-
-//exec from task manager, Test for vup
-#define MN_PS__CWORD52_VUP        "_CWORD52_vup"
-#define PR_PS__CWORD52_VUP_S      PR_TSS_S
-#define PR_PS__CWORD52_VUP        PR_TSS
-
-#define MN_PS_SYSVUP          "sysvup"
-#define PR_PS_SYSVUP_S        PR_TSS_S
-#define PR_PS_SYSVUP          PR_TSS
-
-#define MN_SS_ROOTFSVUP       "rootfsvup"
-#define PR_SS_ROOTFSVUP_S     PR_TSS_S
-#define PR_SS_ROOTFSVUP       PR_TSS
-
-#define MN_SS_VUPPROGUI       "vupprogressui"
-#define PR_SS_VUPPROGUI_S     PR_TSS_S
-#define PR_SS_VUPPROGUI       PR_TSS
-
-#define MN_SS_NORVUP          "norvup"
-#define PR_SS_NORVUP_S        PR_TSS_S
-#define PR_SS_NORVUP          PR_TSS
-
-// OUTER_UPDATE START
-#define MN_XMVUPSERVICE      "radio_xm_update"
-#define PR_XMVUPSERVICE_S    PR_TSS_S
-#define PR_XMVUPSERVICE      PR_TSS
-// OUTER_UPDATE END
-
-#define MN_BTPHONESRV         "BT_PhoneSrv"
-#define PR_BTPHONESRV_S       PR_TSS_S
-#define PR_BTPHONESRV         PR_TSS
-
-#define MN_BTPBKSRV           "BT_PbkSrv"
-#define PR_BTPBKSRV_S         PR_TSS_S
-#define PR_BTPBKSRV           PR_TSS
-
-#define MN_BTMSGSRV           "BT_MsgSrv"
-#define PR_BTMSGSRV_S         PR_TSS_S
-#define PR_BTMSGSRV           PR_TSS
-
-// NON-resident, exec from task manager, Repro update
-#define MN_PS_SYSUPDATE       "sysupdate"
-#define PR_PS_SYSUPDATE_S     PR_TSS_S
-#define PR_PS_SYSUPDATE       PR_TSS
-
-#define MN_SS_NANDUPDATE      "nandupdate"
-#define PR_SS_NANDUPDATE_S    PR_TSS_S
-#define PR_SS_NANDUPDATE      PR_TSS
-
-  #define TN_NANDUPDATE_CLD    "t_nandcld"
-  #define PR_NANDUPDATE_CLD_S  PR_TSS_S
-  #define PR_NANDUPDATE_CLD    PR_TSS
-
-#define MN_BTPHONESRV         "BT_PhoneSrv"
-#define PR_BTPHONESRV_S       PR_TSS_S
-#define PR_BTPHONESRV         PR_TSS
-
-#define MN_BTPBKSRV           "BT_PbkSrv"
-#define PR_BTPBKSRV_S         PR_TSS_S
-#define PR_BTPBKSRV           PR_TSS
-
-#define MN_BTMSGSRV           "BT_MsgSrv"
-#define PR_BTMSGSRV_S         PR_TSS_S
-#define PR_BTMSGSRV           PR_TSS
-
-//exec from diag
-#define MN_DIAGSERVICE        "DiagService"
-#define PR_DIAGSERVICE_S      PR_TSS_S
-#define PR_DIAGSERVICE        PR_TSS
-
-#define MN_DIAGWORKERTSK      "diagworker_tsk"
-#define PR_DIAGWORKERTSK_S    PR_TSS_S
-#define PR_DIAGWORKERTSK      PR_TSS
-
-#define MN_DIAGTSK            "diag_tsk"
-#define PR_DIAGTSK_S          PR_TSS_S
-#define PR_DIAGTSK            PR_TSS
-
-#define MN_DIAGMCTSK          "diagmc_tsk"
-#define PR_DIAGMCTSK_S        PR_TSS_S
-#define PR_DIAGMCTSK          PR_TSS
-
-#define MN_DIAGUTCOL          "diagutCol_tsk"
-#define PR_DIAGUTCOL_S        PR_TSS_S
-#define PR_DIAGUTCOL          PR_TSS
-
-#define MN_DIAGUTUPD          "diagutUpd_tsk"
-#define PR_DIAGUTUPD_S        PR_TSS_S
-#define PR_DIAGUTUPD          PR_TSS
-
-//exec from Connectivity for _CWORD57_
-#define MN__CWORD57_UTILSERVICE    "_CWORD57_UtilService"
-#define PR__CWORD57_UTILSERVICE_S  PR_TSS_S
-#define PR__CWORD57_UTILSERVICE    PR_TSS
-
-  #define TN_CON_IPUT_DETECT    "iputsrv_detect"
-  #define PR_CON_IPUT_DETECT_S  PR_TSS_S
-  #define PR_CON_IPUT_DETECT    PR_TSS
-
-  #define TN_CON_IPUT_AUTH      "iputsrv_auth"
-  #define PR_CON_IPUT_AUTH_S    PR_TSS_S
-  #define PR_CON_IPUT_AUTH      PR_TSS
-
-  #define TN_CON_IPUT_SERIAL    "iputsrv_serial"
-  #define PR_CON_IPUT_SERIAL_S  PR_TSS_S
-  #define PR_CON_IPUT_SERIAL    PR_TSS
-
-  #define TN_CON_IPUT_USB_1    "iputsrv_usb1"
-  #define PR_CON_IPUT_USB_1_S  PR_TSS_S
-  #define PR_CON_IPUT_USB_1    PR_TSS
-
-  #define TN_CON_IPUT_USB_2    "iputsrv_usb2"
-  #define PR_CON_IPUT_USB_2_S  PR_TSS_S
-  #define PR_CON_IPUT_USB_2    PR_TSS
-
-  #define TN_CON_IPUT_SPP      "iputsrv_spp"
-  #define PR_CON_IPUT_SPP_S    PR_TSS_S
-  #define PR_CON_IPUT_SPP      PR_TSS
-
-#define MN__CWORD57_DTSERVICE    "_CWORD57_DTService"
-#define PR__CWORD57_DTSERVICE_S  PR_TSS_S
-#define PR__CWORD57_DTSERVICE    PR_TSS
-
-  #define TN_CON_IPDT_SERIAL    "ipdtsrv_serial"
-  #define PR_CON_IPDT_SERIAL_S  PR_TSS_S
-  #define PR_CON_IPDT_SERIAL    PR_TSS
-
-  #define TN_CON_IPDT_USB_1    "ipdtsrv_usb1"
-  #define PR_CON_IPDT_USB_1_S  PR_TSS_S
-  #define PR_CON_IPDT_USB_1    PR_TSS
-
-  #define TN_CON_IPDT_USB_2    "ipdtsrv_usb2"
-  #define PR_CON_IPDT_USB_2_S  PR_TSS_S
-  #define PR_CON_IPDT_USB_2    PR_TSS
-
-  #define TN_CON_IPDT_SPP      "ipdtsrv_spp"
-  #define PR_CON_IPDT_SPP_S    PR_TSS_S
-  #define PR_CON_IPDT_SPP      PR_TSS
-
-#define MN_WEBDAVMGR          "webdavmgr"
-#define PR_WEBDAVMGR_S        PR_TSS_S
-#define PR_WEBDAVMGR          PR_TSS
-
-#define MN_DISPLAYSERVICE     "DisplayService"
-#define PR_DISPLAYSERVICE_S   PR_TSS_S
-#define PR_DISPLAYSERVICE     PR_TSS
-
-#define MN_ENFORMSERVICE      "EnformService"
-#define PR_ENFORMSERVICE_S    PR_TSS_S
-#define PR_ENFORMSERVICE      PR_TSS
-
-#define MN_CONNUTIL           "ConnUtil"
-#define PR_CONNUTIL_S         PR_TSS_S
-#define PR_CONNUTIL           PR_TSS
-
-#define MN_CONNUTILSLAVE      "ConnUtilSlave"
-#define PR_CONNUTILSLAVE_S    PR_TSS_S
-#define PR_CONNUTILSLAVE      PR_TSS
-
-#define MN_CONNMGR            "ConnMgr"
-#define PR_CONNMGR_S          PR_TSS_S
-#define PR_CONNMGR            PR_TSS
-
-#define MN_SERVICEFLAGMGR     "ServiceFlagMgr"
-#define PR_SERVICEFLAGMGR_S   PR_TSS_S
-#define PR_SERVICEFLAGMGR     PR_TSS
-
-//exec from VR
-#define MN_VRMANAGER    "vrmanager"
-#define PR_VRMANAGER_S  PR_TSS_S
-#define PR_VRMANAGER    PR_TSS
-
-  #define TN_VR_WORKER    "VrWorkerThread"
-  #define PR_VR_WORKER_S  PR_TSS_S
-  #define PR_VR_WORKER    PR_TSS
-
-  #define TN_VBT_PROPDISPATCH    "PropDispatchThread"
-  #define PR_VBT_PROPDISPATCH_S  PR_TSS_S
-  #define PR_VBT_PROPDISPATCH    PR_TSS
-
-  #define TN_VBT_PROPRESPONSE    "PropResponseThread"
-  #define PR_VBT_PROPRESPONSE_S  PR_TSS_S
-  #define PR_VBT_PROPRESPONSE    PR_TSS
-
-  #define TN_VBT_PROPAUDIOPLAY    "PropAudioPlayThread"
-  #define PR_VBT_PROPAUDIOPLAY_S  PR_TSS_S
-  #define PR_VBT_PROPAUDIOPLAY    PR_TSS
-
-  #define TN_VBT_PROPAUDIORECORD    "PropAudioRecordThread"
-  #define PR_VBT_PROPAUDIORECORD_S  PR_TSS_S
-  #define PR_VBT_PROPAUDIORECORD    PR_TSS
-
-  #define TN_VBT_MAINTHREADPRIO    "MainThreadPriority"
-  #define PR_VBT_MAINTHREADPRIO_S  PR_TSS_S
-  #define PR_VBT_MAINTHREADPRIO    PR_TSS
-
-  #define TN_VBT_ASRMANAGERGRAMMAR    "AsrManagerGrammarGenerationThread"
-  #define PR_VBT_ASRMANAGERGRAMMAR_S  PR_TSS_S
-  #define PR_VBT_ASRMANAGERGRAMMAR    PR_TSS
-
-  #define TN_VBT_ASRVOCONRECO    "AsrVoconRecoProcessThread"
-  #define PR_VBT_ASRVOCONRECO_S  PR_TSS_S
-  #define PR_VBT_ASRVOCONRECO    PR_TSS
-
-  #define TN_VBT_BROADCASTREAD    "BroadCastReadThread"
-  #define PR_VBT_BROADCASTREAD_S  PR_TSS_S
-  #define PR_VBT_BROADCASTREAD    PR_TSS
-
-  #define TN_VBT_FILEAGGREGATOR    "FileAggregatorDecompressThread"
-  #define PR_VBT_FILEAGGREGATOR_S  PR_TSS_S
-  #define PR_VBT_FILEAGGREGATOR    PR_TSS
-
-  #define TN_VBT_HTTPCURLREQUEST    "HttpCurlRequestThread"
-  #define PR_VBT_HTTPCURLREQUEST_S  PR_TSS_S
-  #define PR_VBT_HTTPCURLREQUEST    PR_TSS
-
-  #define TN_VBT_HTTPDRIVERREQUEST    "HttpDriverRequestThread"
-  #define PR_VBT_HTTPDRIVERREQUEST_S  PR_TSS_S
-  #define PR_VBT_HTTPDRIVERREQUEST    PR_TSS
-
-  #define TN_VBT_HTTPREQUESTSESSION    "HttpRequestSessionStateThread"
-  #define PR_VBT_HTTPREQUESTSESSION_S  PR_TSS_S
-  #define PR_VBT_HTTPREQUESTSESSION    PR_TSS
-
-  #define TN_VBT_PLAYMGRSTOPASYNC    "PlayMgrStopAsyncStreamThread"
-  #define PR_VBT_PLAYMGRSTOPASYNC_S  PR_TSS_S
-  #define PR_VBT_PLAYMGRSTOPASYNC    PR_TSS
-
-  #define TN_VBT_RESOURCEMGRQUEUE    "ResourceMgrQueueHandlerThread"
-  #define PR_VBT_RESOURCEMGRQUEUE_S  PR_TSS_S
-  #define PR_VBT_RESOURCEMGRQUEUE    PR_TSS
-
-  #define TN_VBT_SMURFDRIVERTIMEOUT    "SmurfDriverTimeoutThread"
-  #define PR_VBT_SMURFDRIVERTIMEOUT_S  PR_TSS_S
-  #define PR_VBT_SMURFDRIVERTIMEOUT    PR_TSS
-
-  #define TN_NVR_NVRMAIN    "NvrMainThread"
-  #define PR_NVR_NVRMAIN_S  PR_TSS_S
-  #define PR_NVR_NVRMAIN    PR_TSS
-
-  #define TN_NVR_NVRRECO    "NvrRecoThread"
-  #define PR_NVR_NVRRECO_S  PR_TSS_S
-  #define PR_NVR_NVRRECO    PR_TSS
-
-  #define TN_NVR_NVRDICT    "NvrDictThread"
-  #define PR_NVR_NVRDICT_S  PR_TSS_S
-  #define PR_NVR_NVRDICT    PR_TSS
-
-  #define TN_NVR_NVRENC    "NvrEncThread"
-  #define PR_NVR_NVRENC_S  PR_TSS_S
-  #define PR_NVR_NVRENC    PR_TSS
-
-//exec from VehicleInfo
-#define MN_VEHICLEINFOSERVICE        "VehicleInfoSrv"
-#define PR_VEHICLEINFOSERVICE_S      PR_TSS_S
-#define PR_VEHICLEINFOSERVICE        PR_TSS
-
-//exec from _CWORD58_
-#define MN__CWORD58_SERVICE        "_CWORD58_Service"
-#define PR__CWORD58_SERVICE_S      PR_TSS_S
-#define PR__CWORD58_SERVICE        PR_TSS
-
-#define MN__CWORD8_SRV     "_CWORD8_Srv"
-#define PR__CWORD8_SRV_S   PR_TSS_S
-#define PR__CWORD8_SRV     PR_TSS
-
-#define MN_SPCSERVICE         "SPCService"
-#define PR_SPCSERVICE_S       PR_TSS_S
-#define PR_SPCSERVICE         PR_TSS
-
-#define MN_LOCALSERVERPROXY    "LSP"
-#define PR_LOCALSERVERPROXY_S  PR_TSS_S
-#define PR_LOCALSERVERPROXY    PR_TSS
-
-#define MN_EOMSERVICE          "eOMService"
-#define PR_EOMSERVICE_S        PR_TSS_S
-#define PR_EOMSERVICE          PR_TSS
-
-//exec from _CWORD89_
-#define MN__CWORD89_SERVICE         "_CWORD89_Service"
-#define PR__CWORD89_SERVICE_S       PR_TSS_S
-#define PR__CWORD89_SERVICE         PR_TSS
-
-//exec from NetworkManager
-#define MN_NETWORKMANAGER       "NetworkManager"
-#define PR_NETWORKMANAGER_S     PR_TSS_S
-#define PR_NETWORKMANAGER       PR_TSS
-
-  #define TN_NWM_TH_CMDRCV      "NWM_Th_CmdRcv"
-  #define PR_NWM_TH_CMDRCV_S    PR_TSS_S
-  #define PR_NWM_TH_CMDRCV      PR_TSS
-
-  #define TN_NWM_TH_PROCMGR     "NWM_Th_ProcMgr"
-  #define PR_NWM_TH_PROCMGR_S   PR_TSS_S
-  #define PR_NWM_TH_PROCMGR     PR_TSS
-
-  #define TN_NWM_TH_CMDPROC     "NWM_Th_CmdProc"
-  #define PR_NWM_TH_CMDPROC_S   PR_TSS_S
-  #define PR_NWM_TH_CMDPROC     PR_TSS
-
-  #define TN_NWM_TH_DNSMGR      "NWM_Th_DnsMgr"
-  #define PR_NWM_TH_DNSMGR_S    PR_TSS_S
-  #define PR_NWM_TH_DNSMGR      PR_TSS
-
-  #define TN_NWM_TH_DHCPD      "NWM_Th_Dhcpd"
-  #define PR_NWM_TH_DHCPD_S    PR_TSS_S
-  #define PR_NWM_TH_DHCPD      PR_TSS
-
-// DCM Service
-#define MN_DCMSERVICE         "DCMService"
-#define PR_DCMSERVICE_S       PR_TSS_S
-#define PR_DCMSERVICE         PR_TSS
-
-  #define TN_DCM_TH_CMDRCV      "DCM_Th_CmdRcv"
-  #define PR_DCM_TH_CMDRCV_S    PR_TSS_S
-  #define PR_DCM_TH_CMDRCV      PR_TSS
-
-  #define TN_DCM_TH_MSGRCV      "DCM_Th_MsgRcv"
-  #define PR_DCM_TH_MSGRCV_S    PR_TSS_S
-  #define PR_DCM_TH_MSGRCV      PR_TSS
-
-  #define TN_DCM_TH_TIMER       "DCM_Th_Timer"
-  #define PR_DCM_TH_TIMER_S     PR_TSS_S
-  #define PR_DCM_TH_TIMER       PR_TSS
-
-// HELP Service
-#define MN_HELPSERVICE        "HELPService"
-#define PR_HELPSERVICE_S      PR_TSS_S
-#define PR_HELPSERVICE        PR_TSS
-
-//exec from RemoteService
-#define MN_REMOTESERVICE        "RemoteService"
-#define PR_REMOTESERVICE_S      PR_TSS_S
-#define PR_REMOTESERVICE        PR_TSS
-
-  #define TN_RS_TH_CANCTRL      "RS_Th_CANCtrl"
-  #define PR_RS_TH_CANCTRL_S    PR_TSS_S
-  #define PR_RS_TH_CANCTRL      PR_TSS
-
-  #define TN_RS_TH_DISPCTRL     "RS_Th_DispCtrl"
-  #define PR_RS_TH_DISPCTRL_S   PR_TSS_S
-  #define PR_RS_TH_DISPCTRL     PR_TSS
-
-  #define TN_RS_TH_PARTSCTRL    "RS_Th_PartsCtrl"
-  #define PR_RS_TH_PARTSCTRL_S  PR_TSS_S
-  #define PR_RS_TH_PARTSCTRL    PR_TSS
-
-  #define TN_RS_TH_HTTPPROC     "RS_Th_HttpProc"
-  #define PR_RS_TH_HTTPPROC_S   PR_TSS_S
-  #define PR_RS_TH_HTTPPROC     PR_TSS
-
-//exec from VR
-#define MN_CONTENTSMGR    "contentsmgr"
-#define PR_CONTENTSMGR_S  PR_TSS_S
-#define PR_CONTENTSMGR    PR_TSS
-
-  #define TN_CDB_CONTENDB    "contendbThread"
-  #define PR_CDB_CONTENDB_S  PR_TSS_S
-  #define PR_CDB_CONTENDB    PR_TSS
-
-/* COMARB Service */
-#define MN_NW_COMARB          "ComArbService"
-#define PR_NW_COMARB_S        PR_TSS_S
-#define PR_NW_COMARB          PR_TSS
-
-/* ASND_FRthread */
-#define MN_ASND_FRTH         "ASND_FRthread"
-#define PR_ASND_FRTH_S       PR_SND_VCETRFCTRL_S
-#define PR_ASND_FRTH         PR_SND_VCETRFCTRL
-
-/* MLINK Service */
-#define MN_MLINKSERVICE       "MlinkService"
-#define PR_MLINKSERVICE_S     PR_TSS_S
-#define PR_MLINKSERVICE       PR_TSS
-
-#define MN__CWORD74_SERVICE "_CWORD74_Service"
-#define PR__CWORD74_SERVICE_S PR_TSS_S
-#define PR__CWORD74_SERVICE PR_TSS 
-#endif //__AGL_THREAD_H__
diff --git a/service/system/config/library/system_manager_config/last2order/Makefile b/service/system/config/library/system_manager_config/last2order/Makefile
deleted file mode 100755 (executable)
index 5962200..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-#
-# @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-# ==== Customization ================
-#Directory path located XMLs for conversion
-CONFXML_DIR_PATH ?= $(SDKTARGETSYSROOT)/etc/basesystem/sm_last2order
-
-#path to order file
-ORDER_DEF_PATH ?= $(SDKTARGETSYSROOT)/usr/include/basesystem/agl_wakeup_order.h
-
-#path to be installed CFO file
-CONF_INSTALL_DIR ?= $(SDKTARGETSYSROOT)/etc/basesystem/systemmanager
-
-# ==================================
-
-HOST_CPP = cpp
-MKL_LAST2ORDER = mklast2ordertbl.pl
-
-#path located last2order tools
-TOOLPATH = ./tool
-
-VPATH = $(CONFXML_DIR_PATH) $(TOOLPATH)
-
-XMLFILES = $(shell cd $(CONFXML_DIR_PATH); ls *.xml)
-XMLTMPFILES = $(XMLFILES:%.xml=%.xml.pped)
-CFOFILES = $(XMLFILES:%.xml=%.cfo)
-
-_all:$(CFOFILES)
-
-install:install-pre install-cfo 
-
-install-pre:
-       install -d -m 775  $(DESTDIR)/etc/basesystem/sm_last2order;\
-       install -m 644 -t  $(DESTDIR)/etc/basesystem/systemmanager sm_last2order.cfo 
-
-install-cfo:_all
-       set -e ;\
-       install -d -m 775 $(CONF_INSTALL_DIR) ;\
-       for cfofile in $(CFOFILES); do \
-               install -m 644 -t $(CONF_INSTALL_DIR) $$cfofile; \
-       done
-
-%.cfo:%.xml.pped $(MKL_LAST2ORDER)
-       ln -fs $(TOOLPATH)/$(MKL_LAST2ORDER) 
-       ./$(MKL_LAST2ORDER) $< $@ 
-
-%.xml.pped:%.xml 
-       $(HOST_CPP) -P -include $(ORDER_DEF_PATH) $< > $@
-
-clean:clean_local
-clean-sub:clean_local
-
-clean_local:
-       rm -f *.cfo *.pped *.pl
-
-.PHONY:install-cfo _all
-
-include ../../../../system_service.mk
diff --git a/service/system/config/library/system_manager_config/last2order/sm_last2order.cfo b/service/system/config/library/system_manager_config/last2order/sm_last2order.cfo
deleted file mode 100755 (executable)
index 2463eec..0000000
Binary files a/service/system/config/library/system_manager_config/last2order/sm_last2order.cfo and /dev/null differ
diff --git a/service/system/config/library/system_manager_config/last2order/tool/mklast2ordertbl.pl b/service/system/config/library/system_manager_config/last2order/tool/mklast2ordertbl.pl
deleted file mode 100755 (executable)
index 9b7dcab..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-#!/usr/bin/perl 
-use strict;
-
-use XML::XPath;
-
-my $LOCAL_XML = "./last2order.xml.tmp";
-my $LOCAL_DTD = "./last2order.dtd";
-
-my $DTD = <<'EODTD';
-<!ELEMENT last2order_tbl (last2order*) >
-
-<!ELEMENT  last2order EMPTY>
-<!ATTLIST last2order
-  front_video     CDATA "EMPTY"
-  front_sub_video CDATA "EMPTY"
-  front_audio     CDATA "EMPTY"
-  rear_video      CDATA "EMPTY"
-  rear_audio      CDATA "EMPTY"
-  ordername       CDATA #REQUIRED
->
-EODTD
-
-sub usage(){
-  print STDERR "USAGE:$0 *.xml *.cfo\n";
-}
-
-#==== MAIN ====
-my $ret=system("which xmllint > /dev/null");
-if($ret != 0){
-  die("xmllint is not installed \n");
-}
-
-if(2 != @ARGV){
-  usage();
-  exit 1;
-}
-
-my $inXmlFile= $ARGV[0];
-my $outCfgXmlFile= $ARGV[1];
-
-
-#ARG CHECK
-if(! -e $inXmlFile){
-  die("$inXmlFile not found");
-} 
-
-
-system("cp $inXmlFile $LOCAL_XML");
-
-open FOUT,'>',$LOCAL_DTD or die("can't open $LOCAL_DTD");
-print FOUT $DTD;
-close FOUT;
-
-$ret=system("xmllint --noout --valid $LOCAL_XML ");
-if($ret != 0){
-  die("$inXmlFile is NOT VAILD");
-}
-
-my $xml = XML::XPath->new(filename=>$LOCAL_XML);
-
-my $last2order_tbl = $xml->find('/last2order_tbl/last2order');
-
-my @nodelist = $last2order_tbl->get_nodelist;
-my $numOfElement = @nodelist;
-
-printf("num of element :$numOfElement\n");
-
-my $writeValue;
-open FOUT,'+>',$outCfgXmlFile or die("can't open $outCfgXmlFile");
-binmode(FOUT);
-
-$writeValue = pack("A4","CTOO"); print FOUT $writeValue; 
-$writeValue = pack("L",$numOfElement); print FOUT $writeValue; 
-
-foreach my $last2order( @nodelist ) {
-  $writeValue = $last2order->findvalue('@front_video');
-  printf("FV:$writeValue  ");
-  $writeValue = pack("a128",$writeValue); print FOUT $writeValue; 
-
-  $writeValue = $last2order->findvalue('@front_sub_video');
-  printf("FSV:$writeValue  ");
-  $writeValue = pack("a128",$writeValue); print FOUT $writeValue; 
-
-  $writeValue = $last2order->findvalue('@front_audio');
-  printf("FA:$writeValue  ");
-  $writeValue = pack("a128",$writeValue); print FOUT $writeValue; 
-
-  $writeValue = $last2order->findvalue('@rear_video');
-  printf("RV:$writeValue  ");
-  $writeValue = pack("a128",$writeValue); print FOUT $writeValue; 
-
-  $writeValue = $last2order->findvalue('@rear_audio');
-  printf("RA:$writeValue  ");
-  $writeValue = pack("a128",$writeValue); print FOUT $writeValue; 
-
-  $writeValue = $last2order->findvalue('@ordername');
-  printf("ON:$writeValue  ");
-  $writeValue = pack("a64",$writeValue); print FOUT $writeValue; 
-
-  printf("\n");
-}
-
-close(FOUT);
-
-system("rm $LOCAL_XML $LOCAL_DTD");
-
-
diff --git a/service/system/config/library/system_manager_config/order/Makefile b/service/system/config/library/system_manager_config/order/Makefile
deleted file mode 100755 (executable)
index 87c7777..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-#
-# @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-#HOST TOOLS
-HOST_CPP = cpp
-HOST_ORDER_XML2CFG = ./launch_order_xml2cfg.pl
-
-CONF_DIR = $(SDKTARGETSYSROOT)/etc/basesystem
-CONF_WON_H = $(SDKTARGETSYSROOT)/usr/include/basesystem/agl_wakeup_order.h
-
-LAUNCH_XMLFILES = $(shell cd $(CONF_DIR)/sm_launch; ls *.xml)
-ORDER_XMLFILES = $(LAUNCH_XMLFILES:%.xml=%.order)
-ORDER_CFGFILES = $(ORDER_XMLFILES:%.order=%.order.cfg)
-
-INST_CONFDIR = $(SDKTARGETSYSROOT)/etc/basesystem/systemmanager
-
-CLEAN_FILES = launch_order_body.xml $(ORDER_CFGFILES)
-
-VPATH  = $(CONF_DIR)/sm_launch
-VPATH += ../xml
-
-install:install-pre install-cfg
-
-install-pre:
-       install -m 644 -t  $(DESTDIR)/etc/basesystem/sm_launch system_launcher_main.xml 
-
-install-cfg:$(ORDER_CFGFILES)
-       set -e                                 ;\
-       install -d -m 775  $(INST_CONFDIR)     ;\
-       for cfgfile in $(ORDER_CFGFILES);do   \
-               install -m 644 -t $(INST_CONFDIR) $$cfgfile;\
-       done                                  ;\
-
-#Create CFG file
-%.order.cfg:%.order %.cfg
-       echo $@
-       set -e; \
-       $(HOST_CPP) $(CPPFLAGS) -P -include $(CONF_WON_H) $< > launch_in.order; \
-       $(HOST_ORDER_XML2CFG) launch_in.order $(filter %.cfg,$+) > $@ ; \
-       rm -fr launch_in.order;
-
-%.order:
-       echo $@
-       set -e; \
-       if [ ! -e $@ ] ; then \
-         touch $@     ;      \
-       fi
-
-PHONY:install-cfg
-
-include ../../../../system_service.mk
diff --git a/service/system/config/library/system_manager_config/order/launch_order_body.xml b/service/system/config/library/system_manager_config/order/launch_order_body.xml
deleted file mode 100755 (executable)
index e69de29..0000000
diff --git a/service/system/config/library/system_manager_config/order/launch_order_main.xml b/service/system/config/library/system_manager_config/order/launch_order_main.xml
deleted file mode 100755 (executable)
index ee22646..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" ?>
-
-<!DOCTYPE launch_order [
-  <!ELEMENT launch_order (order*) >
-
-  <!ELEMENT  order (group+) >
-  <!ATTLIST order
-    oname       ID               #REQUIRED
-    fixed_group CDATA            "NULL"
-  >
-
-  <!ELEMENT  group EMPTY >
-  <!ATTLIST group
-    gname       CDATA            #REQUIRED
-    waittime    CDATA            "0"
-  >
-    
-  <!ENTITY launch_order_body SYSTEM   "launch_order_body.xml">
-]>
-
-<launch_order>
-  &launch_order_body;
-</launch_order>
diff --git a/service/system/config/library/system_manager_config/order/launch_order_xml2cfg.pl b/service/system/config/library/system_manager_config/order/launch_order_xml2cfg.pl
deleted file mode 100755 (executable)
index 1060107..0000000
+++ /dev/null
@@ -1,171 +0,0 @@
-#!/usr/bin/perl -w 
-use strict;
-
-use XML::XPath;
-use File::Copy;
-
-my $main_file="launch_order_main.xml";
-my $body_file="launch_order_body.xml";
-
-
-sub usage(){
-  print STDERR "USAGE:$0 *.order *.cfg\n"
-}
-    
-
-
-
-#=== MAIN ===
-my $ret=system("which xmllint > /dev/null");
-if($ret != 0){
-    print STDERR  "It need xmllint. Please install it.\n";
-    exit 1;
-}
-
-if(2 != @ARGV){
-    usage();
-    exit 1;
-}
-
-my $infile=$ARGV[0];
-my $launchfile=$ARGV[1];
-
-
-#ARG CHECK
-if($infile !~ /.+\.order$/){
-  print STDERR "$infile is not *.order\n";
-  exit 1;
-}elsif(! -e $infile){
-  print "$infile not found\n";
-  usage();
-  exit 1;
-}
-
-if($launchfile !~ /.+\.cfg$/){
-  print STDERR "$launchfile is not *.cfg\n";
-  exit 1;
-}elsif(! -e $launchfile){
-  print "$launchfile not found\n";
-  usage();
-  exit 1;
-}
-
-
-system("cp -f $infile $body_file");
-
-#check xml vaild 
-$ret=system("xmllint --noout --valid $main_file");
-if($ret != 0){
-  print STDERR "XML is Invalid. \n";
-  exit 1;
-}
-
-my $date=`LANG=en date`;
-print "#  This file is created from $infile and $launchfile\n";
-print "#  created date : $date\n";
-
-my %gnamemap;
-my %gidmap;
-
-open(FIN,"<$launchfile")  or die("error :$!");
-while (my $line = <FIN>){
-  if($line =~ /^Launch/){
-    $line =~ s/^[^|]+=//g;
-    my @args =  split(/\|/,$line);
-    $gnamemap{$args[0]}=$args[1];
-    $gidmap{$args[1]}=$args[0];
-  }
-}
-close(FIN);
-
-foreach my $key (sort{$a <=> $b} keys(%gidmap)){
-   print "#$key:$gidmap{$key}\n";
-}
-
-
-my $xml = XML::XPath->new(filename=>$main_file);
-
-my $orders = $xml->find('/launch_order/order');
-foreach my $order ($orders->get_nodelist) {
-  my $groups = $order->find('./group');
-  
-  my $oname=$order->findvalue('@oname');
-  my $fixed_group=$order->findvalue('@fixed_group');
-
-  print "[$oname]\n";
-  print "order=";
-  
-  my %l_gidmap = %gidmap;
-  my $sep="";
-  #fix groups
-  if($fixed_group ne "NULL"){
-    if(! exists $gnamemap{$fixed_group}){
-      die("$fixed_group not found");
-    }
-    foreach my $gid (sort{$a <=> $b} keys(%l_gidmap)){
-      print "$sep$gid";
-      $sep="|";
-      my $str=$l_gidmap{$gid};
-      delete $l_gidmap{$gid};
-      if($str eq $fixed_group){
-        last;
-      }
-    }
-  }
-
-  # re-order group via *.order
-  my %waitow;
-  foreach my $group ($groups->get_nodelist) {
-    my $gname=$group->findvalue('@gname');
-    my $waittime=XML::XPath::Number::value($group->findvalue('@waittime'));
-    
-    my $gid=$gnamemap{$gname};
-    
-    if(! exists $gnamemap{$gname}){
-      die("$oname:$gname is not defined");
-    }
-
-    if(! exists $l_gidmap{$gid}){
-      die("$oname:$gname is multiple defined");
-    }
-
-    print "$sep$gid";
-    $sep="|";
-    delete $l_gidmap{$gid};
-    
-    if($waittime > 0){
-      $waitow{$gname} = $waittime;
-    }
-  }
-  
-#  Output waittime configuration
-
-  #out rest groups
-  foreach my $gid (sort{$a <=> $b} keys(%l_gidmap)){
-    print "$sep$gid";
-    $sep="|";
-  }
-  
-  print "\n";
-  if(keys(%waitow) > 0 ){
-    print "owlist=";
-    $sep="";
-    foreach my $owgroup ( keys(%waitow)) {
-        print "${sep}oww_${owgroup}";
-        $sep="|";
-    }
-    print "\n";
-    
-    foreach my $owgroup ( keys(%waitow)) {
-        print "oww_${owgroup}=$waitow{$owgroup}\n";
-    }
-
-    
-  }
-  print "\n";
-}
-
-
-
-
-
diff --git a/service/system/config/library/system_manager_config/order/system_launcher_main.order.cfg b/service/system/config/library/system_manager_config/order/system_launcher_main.order.cfg
deleted file mode 100755 (executable)
index dc49cd7..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-#  This file is created from launch_in.order and system_launcher_main.cfg
-#  created date : Tue Aug  29 13:45:54 JST 2017
-
diff --git a/service/system/config/library/system_manager_config/order/system_launcher_main.xml b/service/system/config/library/system_manager_config/order/system_launcher_main.xml
deleted file mode 100755 (executable)
index 2dd97d9..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?xml version="1.0" ?>
-
-<!DOCTYPE system_launcher [
-  <!ELEMENT system_launcher (group+) >
-
-  <!ELEMENT  group (launch+) >
-  <!ATTLIST group
-    name        CDATA               #REQUIRED
-    wait_time   CDATA               #REQUIRED
-    trigger     (True|False)        #REQUIRED
-  >
-
-  <!ELEMENT  launch EMPTY >
-  <!ATTLIST launch
-    name              CDATA               #REQUIRED
-    path              CDATA               #REQUIRED
-    priority          CDATA               #REQUIRED
-    critical          CDATA               #REQUIRED
-    retry_cnt         CDATA               #REQUIRED
-    arguments         CDATA               #REQUIRED
-    logging_mask      CDATA               "NULL"
-    restart           (me|NULL)           #REQUIRED
-    is_start_required (True|False)        #REQUIRED
-    shutdown_critical       CDATA         #REQUIRED
-    shutdown_wait_time      CDATA         #REQUIRED
-    fast_shutdown_wait_time CDATA         #REQUIRED
-    user_name               CDATA         #REQUIRED
-    env_cond                CDATA         #IMPLIED
-  >
-
-  <!ENTITY system_launcher_body SYSTEM   "system_launcher_body.xml">
-]>
-
-<system_launcher>
-  &system_launcher_body;
-</system_launcher>
diff --git a/service/system/config/library/system_manager_config/xml/Makefile b/service/system/config/library/system_manager_config/xml/Makefile
deleted file mode 100755 (executable)
index aed3c27..0000000
+++ /dev/null
@@ -1,53 +0,0 @@
-#
-# @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-#HOST TOOLS
-HOST_CPP = cpp
-HOST_LAUNCH_XML2CFG = ./launch_xml2cfg.sh
-
-CONF_DIR = $(SDKTARGETSYSROOT)/etc/basesystem
-CONF_THREAD_H = $(SDKTARGETSYSROOT)/usr/include/basesystem/agl_thread.h
-
-LAUNCH_XMLFILES = $(shell cd $(CONF_DIR)/sm_launch; ls *.xml)
-LAUNCH_CFGFILES = $(LAUNCH_XMLFILES:%.xml=%.cfg)
-
-INST_CONFDIR = $(SDKTARGETSYSROOT)/etc/basesystem/systemmanager
-
-CLEAN_FILES = system_launcher_body.xml $(LAUNCH_CFGFILES)
-
-VPATH = $(CONF_DIR)/sm_launch
-
-install:install-pre install-cfg
-
-install-pre:
-       install -d -m 775  $(DESTDIR)/etc/basesystem;\
-       install -d -m 775  $(DESTDIR)/etc/basesystem/sm_launch;\
-       install -d -m 775  $(DESTDIR)/etc/basesystem/systemmanager;\
-       install -m 644 -t  $(DESTDIR)/etc/basesystem/sm_launch sm_launch_agl.xml 
-
-install-cfg:$(LAUNCH_CFGFILES)
-       set -e                                 ;\
-       install -d -m 775  $(INST_CONFDIR)     ;\
-       for cfgfile in $(LAUNCH_CFGFILES);do   \
-               install -m 644 -t $(INST_CONFDIR) $$cfgfile;\
-       done                                  ;\
-
-#Create CFG file
-# %.cfg:%.xml  # defined in agl.mk
-
-PHONY:install-cfg
-
-include ../../../../system_service.mk
diff --git a/service/system/config/library/system_manager_config/xml/launch_cfg2xml.sh b/service/system/config/library/system_manager_config/xml/launch_cfg2xml.sh
deleted file mode 100755 (executable)
index 57b6ee2..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/bash
-
-#
-# Copyright (c) 2019-2020 TOYOTA MOTOR CORPORATION
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-export infile=$1
-export g_group=1
-
-if ! [[ "$infile" =~ .+\.cfg ]] ;then
-  echo "$infile is not *.cfg"
-  exit 1
-elif ! [ -e $infile ];then
-  echo "$infile not found"
-  exit 1
-fi
-
-#GROUP extraction
-cat ${infile} | while read line 
-do
-  if ! [[ "${line}" =~ ^[#\[] ]]; then    #Remove first #[
-    echo $line | sed 's/Launch[0-9]\+=//g' | cut -d '|' -f1-4
-  fi
-done | uniq | while read line
-do
-  echo "<!-- group_id=$g_group -->"
-  echo "<group name=\"`echo $line | cut -d '|' -f1`\" wait_time=\"`echo $line | cut -d '|' -f3`\" trigger=\"`echo $line | cut -d '|' -f4`\" >"
-  
-  cat ${infile} | while read line 
-  do
-    if ! [[ "${line}" =~ ^[#\[] ]]; then    #Remove first #[
-      l_group=`echo $line | sed 's/Launch[0-9]\+=//g' | cut -d '|' -f2`
-
-      #Extract only LAUNCH applicable to g_group
-      if [ ${l_group} = ${g_group} ]; then
-        echo $line | sed 's/Launch[0-9]\+=//g' | cut -d '|' -f5-
-      fi
-    fi
-  done  | while read line
-  do
-    echo "  <launch "
-    echo "    name=\"`echo $line | cut -d '|' -f1`\" path=\"`echo $line | cut -d '|' -f2`\" priority=\"`echo $line | cut -d '|' -f3`\""
-    echo "    critical=\"`echo $line | cut -d '|' -f4`\" retry_cnt=\"`echo $line | cut -d '|' -f5`\" arguments=\"`echo $line | cut -d '|' -f6`\""
-    echo "    logging_mask=\"`echo $line | cut -d '|' -f7`\" restart=\"`echo $line | cut -d '|' -f8`\" is_start_required=\"`echo $line | cut -d '|' -f9`\""
-    echo "    shutdown_critical=\"`echo $line | cut -d '|' -f10`\" shutdown_wait_time=\"`echo $line | cut -d '|' -f11`\" fast_shutdown_wait_time=\"`echo $line | cut -d '|' -f12`\""
-    echo "    user_name=\"`echo $line | cut -d '|' -f13`\""
-    echo "  />"
-  done
-
-  echo "</group>"
-  
-  g_group=$(($g_group + 1))
-done
-
-
-
-
diff --git a/service/system/config/library/system_manager_config/xml/launch_xml2cfg.sh b/service/system/config/library/system_manager_config/xml/launch_xml2cfg.sh
deleted file mode 100755 (executable)
index 20fa097..0000000
+++ /dev/null
@@ -1,116 +0,0 @@
-#!/bin/bash
-
-#
-# Copyright (c) 2019-2020 TOYOTA MOTOR CORPORATION
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-#
-
-#xpath is slow, so use sed as much as possible
-
-infile=$1
-
-main_file=system_launcher_main.xml
-body_file=system_launcher_body.xml
-
-
-#check xmllint is exist 
-if ! which xmllint > /dev/null ; then
-  echo "It need xmllint. Please install it."
-  exit 1;
-fi 
-
-#check xpath is exist 
-if ! which xpath > /dev/null ; then
-  echo "It need xpath Please install it."
-  exit 1;
-fi 
-
-#arg check
-if ! [[ "$infile" =~ .+\.xml ]] ;then
-  echo "$infile is not *.xml"
-  exit 1
-elif ! [ -e $infile ];then
-  echo "$infile not found"
-  exit 1
-fi
-
-cp -f $infile $body_file
-
-#check xml vaild 
-if ! xmllint --noout --valid $main_file ;then
-  echo "XML is Invalid. "
-  exit 1;
-fi
-
-#Read into memory after shaping with xpath
-xmem=`xpath -q -e /system_launcher $main_file`
-
-echo "#  This file is created from $infile."
-echo "#  created date : `LANG=en date`"
-echo "[ModulesLaunchConfig]"
-
-#GROUP LOOP
-group_num=`echo $xmem | xpath -e /system_launcher/group 2>&1 | grep Found | cut -d ' ' -f2`
-
-l_idx=1
-cur_group=1
-until [ $cur_group -gt $group_num ];  
-do
-  #LAUNCH LOOP
-  group_text=`echo $xmem | xpath -q -e /system_launcher/group[$cur_group]`  #group full XML text
-  group_attr=`echo $group_text | sed 's/\(<group[^>]\+>\)\(.*\)/\1/g'`
-
-  g_name=`echo $group_attr | sed 's/\(.* name="\)\([^"]*\)\(.*\)/\2/g'`
-  g_wait_time=`echo $group_attr | sed 's/\(.* wait_time="\)\([^"]*\)\(.*\)/\2/g'`
-  g_trigger=`echo $group_attr | sed 's/\(.* trigger="\)\([^"]*\)\(.*\)/\2/g'`
-
-#  echo $g_name $g_wait_time $g_trigger
-  l_launch_num=`echo $xmem | xpath -e /system_launcher/group[$cur_group]/launch  2>&1 | grep Found | cut -d ' ' -f2`
-  
-  cur_launch=1; 
-  until [ $cur_launch -gt $l_launch_num ];  do
-    launch_text=`echo $xmem | xpath -q -e /system_launcher/group[$cur_group]/launch[$cur_launch]`  
-    
-    l_attr="Launch${l_idx}=$g_name|$cur_group|$g_wait_time|$g_trigger"
-    l_attr+="|"`echo $launch_text | sed 's/\(.* name="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* path="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* priority="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* critical="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* retry_cnt="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* arguments="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* logging_mask="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* restart="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* is_start_required="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* shutdown_critical="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* shutdown_wait_time="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* fast_shutdown_wait_time="\)\([^"]*\)\(.*\)/\2/g'`
-    l_attr+="|"`echo $launch_text | sed 's/\(.* user_name="\)\([^"]*\)\(.*\)/\2/g'`
-    if echo "$launch_text" | grep -sq 'env_cond=' ; then
-      l_attr+="|"`echo $launch_text | sed 's/\(.* env_cond="\)\([^"]*\)\(.*\)/\2/g'`
-    else
-      l_attr+="|"
-    fi
-    
-    echo $l_attr
-
-    cur_launch=$(($cur_launch+1))
-    l_idx=$(($l_idx+1))
-  done
-
-  cur_group=$(($cur_group+1))
-done
-
-
-
-
diff --git a/service/system/config/library/system_manager_config/xml/sm_launch_agl.cfg b/service/system/config/library/system_manager_config/xml/sm_launch_agl.cfg
deleted file mode 100755 (executable)
index e1c544a..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-#  This file is created from sm_launch_agl.xml.tmp.
-#  created date : Tue Aug 29 13:31:32 JST 2017
-[ModulesLaunchConfig]
-Launch1=CoreModules|1|0|False|NS_NPPService|/usr/bin/NS_NPPService|25|True|0|-a SS_SysManager -r output=0x2|NULL|NULL|False|True|20|1000||
-Launch2=CoreModules|1|0|False|NS_BackupMgr|/usr/bin/NS_BackupMgr|25|True|0|-l console|NULL|NULL|True|True|15|1000||
-Launch3=SS_Logger|2|0|False|SS_DevDetectSrv|/tmp/SS_DeviceDetectionService|20|True|0|-l console|NULL|NULL|True|False|1|1000||
-Launch4=SS_Logger|2|0|False|SS_LoggerSrv|/usr/bin/SS_LoggerService|0|True|0|-l console -p thrd=pdg.LogQueReader:30,thrd=pdg.TransmitQueReader:30,thrd=pdg.DumpQueReader:11,thrd=pdg.PerformanceQueReader:11,thrd=pdg.LogQueWriter:30,thrd=pdg.TransmitQueWriter:30,thrd=pdg.EvntLogQue:8,thrd=pdg.UdpQueWriter:10|NULL|NULL|True|True|10|1000||
diff --git a/service/system/config/library/system_manager_config/xml/sm_launch_agl.xml b/service/system/config/library/system_manager_config/xml/sm_launch_agl.xml
deleted file mode 100755 (executable)
index 6560832..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<!-- group_id=1 -->
-<group name="CoreModules" wait_time="0" trigger="False" >
-  <launch 
-    name="NS_NPPService" path="/usr/bin/NS_NPPService" priority="25"
-    critical="True" retry_cnt="0" arguments="-a SS_SysManager -r output=0x2"
-    logging_mask="NULL" restart="NULL" is_start_required="False"
-    shutdown_critical="True" shutdown_wait_time="20" fast_shutdown_wait_time="1000"
-    user_name=""
-  />
-  <launch 
-    name="NS_BackupMgr" path="/usr/bin/NS_BackupMgr" priority="25"
-    critical="True" retry_cnt="0" arguments="-l console"
-    logging_mask="NULL" restart="NULL" is_start_required="True"
-    shutdown_critical="True" shutdown_wait_time="15" fast_shutdown_wait_time="1000"
-    user_name=""
-  />
-</group>
-<!-- group_id=2 -->
-<group name="SS_Logger" wait_time="0" trigger="False" >
-  <launch 
-    name="SS_DevDetectSrv" path="/tmp/SS_DeviceDetectionService" priority="20"
-    critical="True" retry_cnt="0" arguments="-l console"
-    logging_mask="NULL" restart="NULL" is_start_required="True"
-    shutdown_critical="False" shutdown_wait_time="1" fast_shutdown_wait_time="1000"
-    user_name=""
-  />
-  <launch 
-    name="SS_LoggerSrv" path="/usr/bin/SS_LoggerService" priority="0"
-    critical="True" retry_cnt="0" arguments="-l console -p thrd=pdg.LogQueReader:30,thrd=pdg.TransmitQueReader:30,thrd=pdg.DumpQueReader:11,thrd=pdg.PerformanceQueReader:11,thrd=pdg.LogQueWriter:30,thrd=pdg.TransmitQueWriter:30,thrd=pdg.EvntLogQue:8,thrd=pdg.UdpQueWriter:10"
-    logging_mask="NULL" restart="NULL" is_start_required="True"
-    shutdown_critical="True" shutdown_wait_time="10" fast_shutdown_wait_time="1000"
-    user_name=""
-  />
-</group>
-
diff --git a/service/system/resource_manager/client/src/#resmgr_api_lib.c# b/service/system/resource_manager/client/src/#resmgr_api_lib.c#
deleted file mode 100755 (executable)
index 02e84e4..0000000
+++ /dev/null
@@ -1,142 +0,0 @@
-/*
- * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *      http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <other_service/rpc.h>
-#include "resm_internal.h"
-#include "resmgr_api.h"
-#include "resmgr_api_resourcemanagerlog.h"
-
-/**********************************************
- * External variable definitions
- **********************************************/
-RPC_ID __thread rpcId;
-
-/*******************************************************************************
- * RPC public API
- *******************************************************************************/
-/* Connection */
-RESM_ERR_t
-RESM_Open(const RESM_RSV_t* p_prim, uint32_t* p_ssnId)
-{
-
-  RESM_ERR_t resmRet;
-  EV_ERR evRet;
-
-  // Argument check
-  if( p_ssnId == NULL ) {
-    return RESM_E_PAR;
-  }
-
-  // RPC resources
-  if( RPC_OK != RPC_START_CLIENT(&rpcId) ) {
-    FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __FUNCTION__, "[RESM_ERR]ResMgr Open: RPC_START Error"); // LCOV_EXCL_BR_LINE 15:marco defined in "native_service/ns_logger_if.h"
-    return RESM_E_NG;
-  }
-
-
-  // Session connection
-  resmRet = RESM_SV_Open(p_prim, p_ssnId);
-  if( resmRet != RESM_E_OK ) {
-    FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __FUNCTION__, "[RESM_ERR]ResMgr Open: Open Session Error. ret[%d]", resmRet); // LCOV_EXCL_BR_LINE 15:marco defined in "native_service/ns_logger_if.h"
-    return RESM_E_NG;
-  }
-
-  // Create Event Flag
-  evRet = EV_create_flag(Resm_Flag_ID_Base + *p_ssnId);
-  if( evRet != EV_OK ) {
-    FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __FUNCTION__, "[RESM_ERR]ResMgr Open: create_flag Error. ret[%d]", evRet);
-    return RESM_E_NG;
-  }
-
-  return RESM_E_OK;
-}
-
-/* Disconnection */
-RESM_ERR_t
-RESM_Close(uint32_t ssnId)
-{
-
-  RESM_ERR_t resmRet;
-
-  // Disconnect session
-  resmRet = RESM_SV_Close(ssnId);
-  if( resmRet != RESM_E_OK ) {
-    return resmRet;
-  }
-
-  // Destroy RPC Resources
-  RPC_end(rpcId);
-
-  return RESM_E_OK;
-}
-
-/* Get event FD */
-RESM_ERR_t
-RESM_GetEventFd(uint32_t ssnId, int32_t* p_fd)
-{
-
-  RESM_ERR_t resmRet;
-
-  // Argument check
-  if( p_fd == NULL ) {
-    return RESM_E_PAR;
-  }
-  // Session ID check
-  resmRet = RESM_SV_ChkSsnId(ssnId);
-  if( resmRet != RESM_E_OK ) {
-    return RESM_E_PAR;
-  }
-
-  if( EV_OK  != EV_get_flag_fd(Resm_Flag_ID_Base + ssnId, p_fd) ) {
-    FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __FUNCTION__, "[RESM_ERR]ResMgr GetEventFd Error");
-    return RESM_E_NG;
-  }
-
-  return RESM_E_OK;
-}
-
-/* Get event */
-RESM_ERR_t
-RESM_GetEvent(uint32_t ssnId, RESM_EV_t* p_evFlag)
-{
-
-  RESM_ERR_t resmRet;
-  EV_Flag flag;
-
-  // Argument check
-  if( p_evFlag == NULL ) {
-    return RESM_E_PAR;
-  }
-  // Session ID Check
-  resmRet = RESM_SV_ChkSsnId(ssnId);
-  if( resmRet != RESM_E_OK ) {
-    return RESM_E_PAR;
-  }
-
-  if( EV_OK != EV_get_flag(Resm_Flag_ID_Base + ssnId, &flag)) {
-    FRAMEWORKUNIFIEDLOG(ZONE_NS_ERR, __FUNCTION__, "[RESM_ERR]ResMgr GetEvent(get_flag) Error");
-    return RESM_E_NG;
-  }
-
-  if( flag.bits == 0 ) {
-    // No event
-    return RESM_E_NG;
-  }
-
-  *p_evFlag = flag.bits;
-
-  return RESM_E_OK;
-}