added vrpmdv-rtservice, vrpmdv-mon-datafile,

vrpmdv-monitoring-controler, vrpmdv-mon-tty
This commit is contained in:
2024-06-21 08:51:47 +02:00
parent 1171265db7
commit 454ae2f46e
78 changed files with 39005 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
SUMMARY = "VRPMDV Monitoring Controler"
LICENSE = "GPL-2.0-only"
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/GPL-2.0-only;md5=801f80980d171dd6425610833a22dbe6"
inherit module
SRC_URI = "file://Makefile \
file://vrpmdv-mon-datafile.c \
file://75-mon-datafile.rules \
"
S = "${WORKDIR}"
# The inherit of module.bbclass will automatically name module packages with
# "kernel-module-" prefix as required by the oe-core build environment.
do_install:append() {
# udev rules for rpmsg-sdb
install -d ${D}${sysconfdir}/udev/rules.d/
install -m 0644 ${WORKDIR}/75-mon-datafile.rules ${D}${sysconfdir}/udev/rules.d/75-mon-datafile.rules
}
FILES:${PN} += "${sysconfdir}/udev/rules.d/"
RPROVIDES:${PN} += "kernel-module-vrpmdv-mon-datafile"