diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2014-04-23 17:40:53 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-24 17:54:57 +0100 |
commit | 1a4feebf98780f586bf2e81cf9844e6805a50799 (patch) | |
tree | 78358669fdcc16338e66aefa168f7ad1224d3e1e /meta/recipes-devtools/tcf-agent | |
parent | e84f7ea24b08e3127b70731908b819fbdc1cbfd5 (diff) | |
download | openembedded-core-1a4feebf98780f586bf2e81cf9844e6805a50799.tar.gz openembedded-core-1a4feebf98780f586bf2e81cf9844e6805a50799.tar.bz2 openembedded-core-1a4feebf98780f586bf2e81cf9844e6805a50799.zip |
tcf-agent: add systemd support
Add systemd unit file tcf-agent.service.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/tcf-agent')
-rw-r--r-- | meta/recipes-devtools/tcf-agent/tcf-agent/tcf-agent.service | 10 | ||||
-rw-r--r-- | meta/recipes-devtools/tcf-agent/tcf-agent_git.bb | 8 |
2 files changed, 17 insertions, 1 deletions
diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent/tcf-agent.service b/meta/recipes-devtools/tcf-agent/tcf-agent/tcf-agent.service new file mode 100644 index 0000000000..5d7a586682 --- /dev/null +++ b/meta/recipes-devtools/tcf-agent/tcf-agent/tcf-agent.service @@ -0,0 +1,10 @@ +[Unit] +Description=Target Communication Framework agent +After=network.target + +[Service] +Type=forking +ExecStart=@SBINDIR@/tcf-agent -d -L- -l0 + +[Install] +WantedBy=multi-user.target
\ No newline at end of file diff --git a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb index 1eb0021eec..616a6a7a9a 100644 --- a/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb +++ b/meta/recipes-devtools/tcf-agent/tcf-agent_git.bb @@ -12,6 +12,7 @@ PR = "r2" SRC_URI = "git://git.eclipse.org/gitroot/tcf/org.eclipse.tcf.agent.git \ file://fix_ranlib.patch \ file://tcf-agent.init \ + file://tcf-agent.service \ " DEPENDS = "util-linux openssl" @@ -19,7 +20,9 @@ RDEPENDS_${PN} = "bash" S = "${WORKDIR}/git" -inherit update-rc.d +inherit update-rc.d systemd + +SYSTEMD_SERVICE_${PN} = "tcf-agent.service" INITSCRIPT_NAME = "tcf-agent" INITSCRIPT_PARAMS = "start 99 3 5 . stop 20 0 1 2 6 ." @@ -44,5 +47,8 @@ do_install() { oe_runmake install INSTALLROOT=${D} install -d ${D}${sysconfdir}/init.d/ install -m 0755 ${WORKDIR}/tcf-agent.init ${D}${sysconfdir}/init.d/tcf-agent + install -d ${D}${systemd_unitdir}/system + install -m 0644 ${WORKDIR}/tcf-agent.service ${D}${systemd_unitdir}/system + sed -i -e 's,@SBINDIR@,${sbindir},g' ${D}${systemd_unitdir}/system/tcf-agent.service } |