diff options
author | zheng_wenlong <wenlong_zheng@nexty-ele.com> | 2019-02-06 17:12:28 +0900 |
---|---|---|
committer | zheng_wenlong <wenlong_zheng@nexty-ele.com> | 2019-02-06 17:13:49 +0900 |
commit | 1fed2c5a38fed8bc91bb6b8a08982303eb9c2e82 (patch) | |
tree | 502b5c63a0570d78863311fbd930f1c96b8a2990 /conf/files/lib/systemd | |
parent | a98fcb4b99e5a7b14b671e6014ea0b1cc1ea199d (diff) |
Change steering to systemd service for ces2019halibut_7.90.0halibut/7.90.07.90.0
Change steering to systemd service for ces2019
Change-Id: I319fb56a302f4f980b43a1b90dee1f36820355fb
Signed-off-by: zheng_wenlong <wenlong_zheng@nexty-ele.com>
Diffstat (limited to 'conf/files/lib/systemd')
-rw-r--r-- | conf/files/lib/systemd/system/usbcan0.service | 8 | ||||
-rw-r--r-- | conf/files/lib/systemd/system/usbcan1.service | 8 | ||||
-rw-r--r-- | conf/files/lib/systemd/system/wheel.service | 7 |
3 files changed, 23 insertions, 0 deletions
diff --git a/conf/files/lib/systemd/system/usbcan0.service b/conf/files/lib/systemd/system/usbcan0.service new file mode 100644 index 0000000..12dc9e1 --- /dev/null +++ b/conf/files/lib/systemd/system/usbcan0.service @@ -0,0 +1,8 @@ +[Unit] +Description=slcan0 starter +After=remote-fs.target +After=syslog.target + +[Service] +ExecStart=/usr/bin/slcand -F -o -s6 -t hw -S 3000000 /dev/ttyUSB0 +Restart=on-failure diff --git a/conf/files/lib/systemd/system/usbcan1.service b/conf/files/lib/systemd/system/usbcan1.service new file mode 100644 index 0000000..a2b4d1a --- /dev/null +++ b/conf/files/lib/systemd/system/usbcan1.service @@ -0,0 +1,8 @@ +[Unit] +Description=slcan1 starter +After=remote-fs.target +After=syslog.target + +[Service] +ExecStart=/usr/bin/slcand -F -o -s6 -t hw -S 3000000 /dev/ttyUSB1 +Restart=on-failure diff --git a/conf/files/lib/systemd/system/wheel.service b/conf/files/lib/systemd/system/wheel.service new file mode 100644 index 0000000..85c881f --- /dev/null +++ b/conf/files/lib/systemd/system/wheel.service @@ -0,0 +1,7 @@ +[Unit] +Description=wheel-service starter +After=syslog.target + +[Service] +ExecStart=/usr/bin/wheel-service +Restart=on-failure |