6 lines
148 B
Bash
6 lines
148 B
Bash
#!/bin/sh
|
|
# SmartCar Demo 启动脚本 (带 GPIO 修复)
|
|
DIR="$(dirname "$0")"
|
|
export LD_PRELOAD="$DIR/gpio_fix_final.so"
|
|
exec "$DIR/smartcar_demo"
|