summaryrefslogtreecommitdiffstats
path: root/service/system/config
diff options
context:
space:
mode:
authorTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2020-11-21 17:56:33 +0000
committerTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2020-11-23 13:34:15 +0000
commit9ce78547cb47c9db0d75cc7b36f8e679e831820b (patch)
treecbcad045a21b4d7bf0a2e2a74a790ebd46781579 /service/system/config
parent604011e21f44b51f3540711ffe53a16362796ae5 (diff)
Fix the path to the architecture-independent data
Fix the path to the architecture-independent data, '/usr/agl/share' to follow the standard, '/usr/share' and add subsystem name 'basesystem' for agl-basesystem. Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> Change-Id: I9a547474a738ebbbbabc7eb8441ccbf3a2d3f6e0
Diffstat (limited to 'service/system/config')
-rwxr-xr-xservice/system/config/library/system_manager_config/src/ss_system_manager_conf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/system/config/library/system_manager_config/src/ss_system_manager_conf.cpp b/service/system/config/library/system_manager_config/src/ss_system_manager_conf.cpp
index 16ec02a..0459af1 100755
--- a/service/system/config/library/system_manager_config/src/ss_system_manager_conf.cpp
+++ b/service/system/config/library/system_manager_config/src/ss_system_manager_conf.cpp
@@ -301,7 +301,7 @@ static EFrameworkunifiedStatus setVersionInfo(void) {
SS_ASERT(configRet == eFrameworkunifiedStatusOK);
// Set PRODUCT version information
- const char prdVersion[] = "/usr/agl/share/BS/ss/system_manager/rodata/version.txt";
+ const char prdVersion[] = "/usr/share/basesystem/BS/ss/system_manager/rodata/version.txt";
{
std::string line;
std::ifstream prdFin(prdVersion);
@@ -327,7 +327,7 @@ static EFrameworkunifiedStatus setVersionInfo(void) {
}
// PHASE_INFO
- const char phaseVersion[] = "/usr/agl/share/BS/ss/system_manager/rodata/PhaseInfo.txt";
+ const char phaseVersion[] = "/usr/share/basesystem/BS/ss/system_manager/rodata/PhaseInfo.txt";
{
configRet = setVerInfo_version_date(phaseVersion);
}