mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-25 14:13:54 +08:00
* Revert "Replace ThneedModel with TinygradModel (#33532)" This reverts commitda952e9b64. * Revert "camerad: move E + D cams image pipelines to the IFE (#33959)" This reverts commitf2a1cce42b.
11 lines
220 B
Bash
Executable File
11 lines
220 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)"
|
|
cd "$DIR/../../"
|
|
|
|
if [ -f "$DIR/libthneed.so" ]; then
|
|
export LD_PRELOAD="$DIR/libthneed.so"
|
|
fi
|
|
|
|
exec "$DIR/dmonitoringmodeld.py" "$@"
|