summaryrefslogtreecommitdiffstats
path: root/service/system/config/library/system_manager_config/order/Makefile
diff options
context:
space:
mode:
authorTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2020-11-22 09:58:42 +0900
committerTadao Tanikawa <tanikawa.tadao@jp.panasonic.com>2020-11-23 13:38:54 +0000
commit23d40b490b2e6735d70d413e6a147d78b1898c8b (patch)
treebba5789f6b5d6a1771677ead07129e43c6df857f /service/system/config/library/system_manager_config/order/Makefile
parentf375d527c775582f4229a94d96177f18d80f0008 (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/system/config/library/system_manager_config/order/Makefile')
-rwxr-xr-xservice/system/config/library/system_manager_config/order/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/service/system/config/library/system_manager_config/order/Makefile b/service/system/config/library/system_manager_config/order/Makefile
index e0d68fe..87c7777 100755
--- a/service/system/config/library/system_manager_config/order/Makefile
+++ b/service/system/config/library/system_manager_config/order/Makefile
@@ -18,14 +18,14 @@
HOST_CPP = cpp
HOST_ORDER_XML2CFG = ./launch_order_xml2cfg.pl
-CONF_DIR = $(SDKTARGETSYSROOT)/usr/agl/conf
+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)/usr/agl/conf/systemmanager
+INST_CONFDIR = $(SDKTARGETSYSROOT)/etc/basesystem/systemmanager
CLEAN_FILES = launch_order_body.xml $(ORDER_CFGFILES)
@@ -35,7 +35,7 @@ VPATH += ../xml
install:install-pre install-cfg
install-pre:
- install -m 644 -t $(DESTDIR)/usr/agl/conf/sm_launch system_launcher_main.xml
+ install -m 644 -t $(DESTDIR)/etc/basesystem/sm_launch system_launcher_main.xml
install-cfg:$(ORDER_CFGFILES)
set -e ;\