From 43d99e9b85c4e92f0621c8d26f2443cd98982a41 Mon Sep 17 00:00:00 2001 From: Jan-Simon Moeller Date: Mon, 6 Jan 2020 05:47:48 +0100 Subject: cluster-demo-support: add recipe for cluster-demo-simulator The cluster-demo-simulator is a small python script that sends can messages to simulate speed and rpm. It has support for steering wheel events. Bug-AGL: SPEC-3090 . Change-Id: I45bf259c984c59912a674a57ccc642a1917a3209 Signed-off-by: Jan-Simon Moeller (cherry picked from commit b0620c288705d14aadb9cdd95e47b8b22dc7662a) --- .../cluster-demo-simulator.bb | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb (limited to 'recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb') diff --git a/recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb b/recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb new file mode 100644 index 00000000..171ea167 --- /dev/null +++ b/recipes-config/cluster-demo-simulator/cluster-demo-simulator.bb @@ -0,0 +1,31 @@ +DESCRIPTION = "Simulate can messages of a driving car" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" + +SRC_URI = "\ + file://cluster-demo-simulator.service \ + file://simple_can_simulator.py \ +" + +inherit systemd + +SYSTEMD_PACKAGES = "${PN}" +SYSTEMD_SERVICE_${PN} = "cluster-demo-simulator.service" +SYSTEMD_AUTO_ENABLE_${PN} = "enable" + +do_configure[noexec] = "1" +do_compile[noexec] = "1" + +do_install() { + install -d ${D}${systemd_system_unitdir} + install -m 0644 ${WORKDIR}/cluster-demo-simulator.service ${D}${systemd_system_unitdir} + install -d ${D}${sbindir} + install -m 0755 ${WORKDIR}/simple_can_simulator.py ${D}${sbindir} +} + +FILES_${PN} += "${systemd_system_unitdir}" + +RDEPENDS_${PN} = " \ + can-utils \ + python3 \ +" -- cgit 1.2.3-korg