diff options
| author | Anton Gerasimov <anton.gerasimov@here.com> | 2018-02-01 17:28:22 +0100 |
|---|---|---|
| committer | Anton Gerasimov <anton.gerasimov@here.com> | 2018-02-01 17:28:22 +0100 |
| commit | 296497365ed9fa11c752d51d1e71b25a054cd5d4 (patch) | |
| tree | d92477a7b4eb371f1f057e13059bd2e692fbf51e /recipes-support/slcand-start | |
| parent | 1ea77e2a98e77956d687cfa6c445518938a5e809 (diff) | |
| parent | e408922dccefca6cfe103be2dce18d7bcc004f1e (diff) | |
| download | meta-updater-296497365ed9fa11c752d51d1e71b25a054cd5d4.tar.gz | |
Merge branch 'rocko'
Diffstat (limited to 'recipes-support/slcand-start')
| -rw-r--r-- | recipes-support/slcand-start/files/slcand@.service | 8 | ||||
| -rw-r--r-- | recipes-support/slcand-start/slcand-start.bb | 21 |
2 files changed, 29 insertions, 0 deletions
diff --git a/recipes-support/slcand-start/files/slcand@.service b/recipes-support/slcand-start/files/slcand@.service new file mode 100644 index 0000000..c539568 --- /dev/null +++ b/recipes-support/slcand-start/files/slcand@.service | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | [Unit] | ||
| 2 | Description=Serial CAN daemon (can-utils) | ||
| 3 | |||
| 4 | [Service] | ||
| 5 | Type=forking | ||
| 6 | ExecStart=/usr/bin/slcand -o -c -s4 %I can0 | ||
| 7 | ExecStartPost=/bin/sh -c '/bin/sleep 3; /sbin/ip link set can0 up' | ||
| 8 | |||
diff --git a/recipes-support/slcand-start/slcand-start.bb b/recipes-support/slcand-start/slcand-start.bb new file mode 100644 index 0000000..dfefaea --- /dev/null +++ b/recipes-support/slcand-start/slcand-start.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Mock smartcard for aktualizr" | ||
| 2 | LICENSE = "MIT" | ||
| 3 | LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=4d92cd373abda3937c2bc47fbc49d690 \ | ||
| 4 | file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
| 5 | |||
| 6 | |||
| 7 | inherit systemd | ||
| 8 | |||
| 9 | RDEPENDS_${PN} = "can-utils" | ||
| 10 | |||
| 11 | SRC_URI = "file://slcand@.service" | ||
| 12 | |||
| 13 | SYSTEMD_SERVICE_${PN} = "slcand@.service" | ||
| 14 | |||
| 15 | do_install() { | ||
| 16 | install -d ${D}${systemd_unitdir}/system | ||
| 17 | install -m 0644 ${WORKDIR}/slcand@.service ${D}${systemd_unitdir}/system/slcand@.service | ||
| 18 | } | ||
| 19 | |||
| 20 | FILES_${PN} = "${systemd_unitdir}/system/createtoken.service" | ||
| 21 | |||
