diff options
author | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2020-11-22 09:58:42 +0900 |
---|---|---|
committer | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2020-11-23 13:38:54 +0000 |
commit | 23d40b490b2e6735d70d413e6a147d78b1898c8b (patch) | |
tree | bba5789f6b5d6a1771677ead07129e43c6df857f /service/native | |
parent | f375d527c775582f4229a94d96177f18d80f0008 (diff) |
Fix the path to the host specific system configurations
Fix the path to the host specific system configurations,
'/usr/conf/' to follow the standard '/etc'.
And all configurations of agl basesystem should stored
under subdirectory, 'basesystem'.
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Change-Id: I2be55d483a4a359e69250fc36d1f03a55a01cd8e
Diffstat (limited to 'service/native')
5 files changed, 8 insertions, 8 deletions
diff --git a/service/native/backup_manager/config/Makefile b/service/native/backup_manager/config/Makefile index b307a66..bbd66e6 100755 --- a/service/native/backup_manager/config/Makefile +++ b/service/native/backup_manager/config/Makefile @@ -37,6 +37,6 @@ $(ID_HEADER): $(XML_PATH)/$(ALL_XML) CLEAN_FILES := $(ID_HEADER) install: $(XML_PATH)/$(BACKUP_XML) - install -m 0755 -d $(DESTDIR)/usr/agl/conf/BS/ns/backup_manager/rodata - install -m 0644 $(XML_PATH)/$(BACKUP_XML) $(DESTDIR)/usr/agl/conf/BS/ns/backup_manager/rodata/ + install -m 0755 -d $(DESTDIR)/etc/basesystem/BS/ns/backup_manager/rodata + install -m 0644 $(XML_PATH)/$(BACKUP_XML) $(DESTDIR)/etc/basesystem/BS/ns/backup_manager/rodata/ include ../../native_service.mk diff --git a/service/native/backup_manager/server/src/bkup_param.cpp b/service/native/backup_manager/server/src/bkup_param.cpp index 900779b..581524b 100755 --- a/service/native/backup_manager/server/src/bkup_param.cpp +++ b/service/native/backup_manager/server/src/bkup_param.cpp @@ -35,7 +35,7 @@ #include "bkup_util.h" #define BKUP_XML_PATH_MAX 100 -#define BKUP_XML_PATH "/usr/agl/conf/BS/ns/backup_manager/rodata/" +#define BKUP_XML_PATH "/etc/basesystem/BS/ns/backup_manager/rodata/" #define BKUP_XML_PREFIX "backup_" #define BKUP_XML_EXTENSION ".xml" diff --git a/service/native/framework_unified/client/Makefile b/service/native/framework_unified/client/Makefile index 29ed628..b97ef4a 100755 --- a/service/native/framework_unified/client/Makefile +++ b/service/native/framework_unified/client/Makefile @@ -263,7 +263,7 @@ install-data:install_cfg install -d -m 775 $(DESTDIR)/nv/BS/ns/framework_unified/rwdata install_cfg: - install -d -m 775 $(DESTDIR)/usr/agl/conf/BS/ns/framework_unified/rodata - install -m 644 -t $(DESTDIR)/usr/agl/conf/BS/ns/framework_unified/rodata NativeServices/scfg/ns_logger_frameworkunifiedlog__CWORD84_.cfg + install -d -m 775 $(DESTDIR)/etc/basesystem/BS/ns/framework_unified/rodata + install -m 644 -t $(DESTDIR)/etc/basesystem/BS/ns/framework_unified/rodata NativeServices/scfg/ns_logger_frameworkunifiedlog__CWORD84_.cfg include ../../native_service.mk diff --git a/service/native/framework_unified/client/NS_Logger/src/ns_logger.cpp b/service/native/framework_unified/client/NS_Logger/src/ns_logger.cpp index 94f775c..3d09650 100755 --- a/service/native/framework_unified/client/NS_Logger/src/ns_logger.cpp +++ b/service/native/framework_unified/client/NS_Logger/src/ns_logger.cpp @@ -106,7 +106,7 @@ FRAMEWORKUNIFIEDLOGSYSEVENTPARAM g_FrameworkunifiedLogSysEventParams = {FALSE}; #define ZONEMASK_MAX BITS_IN_TZONE // ((UI_32)(BITS_IN_TZONE * TZONE_COUNT)) #define FRAMEWORKUNIFIEDLOG_DEFAULT_FLAG_ID (0) -#define FRAMEWORKUNIFIEDLOG_CONFIG__CWORD84__FN "/usr/agl/conf/BS/ns/framework_unified/rodata/ns_logger_frameworkunifiedlog__CWORD84_.cfg" +#define FRAMEWORKUNIFIEDLOG_CONFIG__CWORD84__FN "/etc/basesystem/BS/ns/framework_unified/rodata/ns_logger_frameworkunifiedlog__CWORD84_.cfg" #define FRAMEWORKUNIFIEDLOG_CONFIG__CWORD84__TMP "ns_logger_frameworkunifiedlog__CWORD84_.tmp" #define FRAMEWORKUNIFIEDLOG_CONFIG__CWORD84__NV "ns_logger_frameworkunifiedlog__CWORD84_.cfg" diff --git a/service/native/framework_unified/client/NativeServices/Makefile b/service/native/framework_unified/client/NativeServices/Makefile index c346b28..de8de1d 100755 --- a/service/native/framework_unified/client/NativeServices/Makefile +++ b/service/native/framework_unified/client/NativeServices/Makefile @@ -23,7 +23,7 @@ all: install-data:install_cfg install_cfg: - install -d -m 775 $(SDKTARGETSYSROOT)/usr/agl/conf/ns_logger - install -m 644 -t $(SDKTARGETSYSROOT)/usr/agl/conf/ns_logger scfg/ns_logger_frameworkunifiedlog__CWORD84_.cfg + install -d -m 775 $(SDKTARGETSYSROOT)/etc/basesystem/ns_logger + install -m 644 -t $(SDKTARGETSYSROOT)/etc/basesystem/ns_logger scfg/ns_logger_frameworkunifiedlog__CWORD84_.cfg include ../../../native_service.mk |