mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-08-20 02:53:44 +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
|