mirror of
https://github.com/MoreTore/openpilot.git
synced 2026-08-03 08:41:47 +08:00
d9d83b0225
* mv camerad
* add hardware symlink
* fix unit tests
old-commit-hash: 6123ab3d1c
10 lines
95 B
Bash
Executable File
10 lines
95 B
Bash
Executable File
#!/bin/sh
|
|
cd ..
|
|
while :; do
|
|
./camerad &
|
|
pid="$!"
|
|
sleep 2
|
|
kill -2 $pid
|
|
wait $pid
|
|
done
|