Replace to cluster-service from libclusteripc and libclusterapi 78/29478/2
authorNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Sun, 26 Nov 2023 14:54:19 +0000 (23:54 +0900)
committerNaoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
Wed, 29 Nov 2023 14:53:28 +0000 (23:53 +0900)
Existing AGL Instrument Cluster is not implement cluster service
only a framework library.  We create cluster service to realize
AGL Instrument Cluster based product.

This patch add cluster-service and replace from libclusteripc
and libclusterapi.

Bug-AGL: SPEC-4990

Change-Id: I236eb33376b1a6a8be4c5677b0aa19b3729376c2
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
meta-agl-ic-container/recipes-core/cluster-service/cluster-service/cluster-service.service [new file with mode: 0644]
meta-agl-ic-container/recipes-core/cluster-service/cluster-service_git.bb [new file with mode: 0644]
meta-agl-ic-container/recipes-platform/packagegroups/packagegroup-agl-ic-core.bb

diff --git a/meta-agl-ic-container/recipes-core/cluster-service/cluster-service/cluster-service.service b/meta-agl-ic-container/recipes-core/cluster-service/cluster-service/cluster-service.service
new file mode 100644 (file)
index 0000000..e3ce37c
--- /dev/null
@@ -0,0 +1,11 @@
+[Unit]
+Description=AGL Cluster Service
+After=basic.target
+Requires=basic.target
+
+[Service]
+Type=notify
+ExecStart=/usr/bin/cluster_service
+
+[Install]
+WantedBy=basic.target
diff --git a/meta-agl-ic-container/recipes-core/cluster-service/cluster-service_git.bb b/meta-agl-ic-container/recipes-core/cluster-service/cluster-service_git.bb
new file mode 100644 (file)
index 0000000..cd75a70
--- /dev/null
@@ -0,0 +1,27 @@
+SUMMARY = "The cluster service for AGL Instrument Cluster."
+DESCRIPTION = "\
+    The cluster-service is a common implementation for functional service \
+    of cluster.  It aim to use reusable implementation for inter process \
+    communication and process design. "
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ae6497158920d9524cf208c09cc4c984"
+
+DEPENDS = "systemd"
+
+PV = "1.0.0+rev${SRCPV}"
+
+SRCREV = "6a583971dd1a98f45e7acf8e12733710bb1bc32e"
+SRC_URI = " \
+    git://github.com/agl-ic-eg/cluster-service.git;branch=main;protocol=https \
+    file://cluster-service.service \
+    "
+S = "${WORKDIR}/git"
+
+inherit autotools pkgconfig systemd
+
+SYSTEMD_SERVICE:${PN} = "cluster-service.service"
+
+do_install:append() {
+    install -d ${D}${systemd_unitdir}/system
+    install -m 0644 ${WORKDIR}/cluster-service.service ${D}${systemd_unitdir}/system/
+}
index 75e09d4..2da3192 100644 (file)
@@ -13,7 +13,6 @@ PACKAGES = "\
     packagegroup-agl-ic-core \
 "
 RDEPENDS:${PN} += "\
-    libclusteripc \
-    libclusterapi \
+    cluster-service \
     librefop \
 "