diff options
author | Christian Gromm <christian.gromm@microchip.com> | 2017-11-22 16:50:52 +0100 |
---|---|---|
committer | Christian Gromm <christian.gromm@microchip.com> | 2017-11-23 15:24:38 +0100 |
commit | 04b63f89f1cb5af9c009d25dc42fc5fa1664d941 (patch) | |
tree | 044d8d3a3b842e4036687fc4326b6fab121196b4 /recipes-config/unicens-config/unicens-config.bb | |
parent | d312c2fb6f0a00f3abb45e99d4085845715866c7 (diff) |
recipes-platform: add MOST driver configuration
This patch adds the necessary files to have the MOST driver
configured for UNICENS2 at system start up.
Change-Id: I9a69192332d355a3f9d3df3771cd364771e8eb9a
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Diffstat (limited to 'recipes-config/unicens-config/unicens-config.bb')
-rw-r--r-- | recipes-config/unicens-config/unicens-config.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/recipes-config/unicens-config/unicens-config.bb b/recipes-config/unicens-config/unicens-config.bb new file mode 100644 index 000000000..e8f5b78d9 --- /dev/null +++ b/recipes-config/unicens-config/unicens-config.bb @@ -0,0 +1,29 @@ +DESCRIPTION = "Configure MOST driver" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" + +SRC_URI = "\ + file://unicens-config.service \ + file://unicens-config.sh \ +" + +inherit systemd + +SYSTEMD_PACKAGES = "${PN}" +SYSTEMD_SERVICE_${PN} = "unicens-config.service" +SYSTEMD_AUTO_ENABLE_${PN} = "enable" + +do_configure () { +} + +do_compile() { +} + +do_install() { + install -d ${D}${systemd_system_unitdir} + install -m 0755 ${WORKDIR}/unicens-config.service ${D}${systemd_system_unitdir} + install -d ${D}${bindir} + install -m 0755 ${WORKDIR}/unicens-config.sh ${D}${bindir} +} + +FILES_${PN} += "${systemd_system_unitdir}" |