cd /data/ && \
mv openpilot op_backup_$(date +%Y%m%d%H%M%S) ; \
git clone https://github.com/vcerchou/openpilot.git openpilot -b M3-UI --single-branch --depth=1 && \
cd openpilot/ && \
git pull && \
reboot
cd /data/ && \
mv openpilot op_backup_$(date +%Y%m%d%H%M%S) ; \
git clone https://github.com/vcerchou/openpilot.git openpilot -b M3-UI && \
cd openpilot/ && \
git pull && \
reboot
-
SSH 到你的设备
-
切换到 /data/ directory
cd /data
-
备份openpilot (可选的)
mv openpilot op_backup_$(date +%Y%m%d%H%M%S)
-
从github仓库下载分支:
- github
git clone https://github.com/vcerchou/openpilot.git openpilot -b M3-UI --single-branch --depth=1
-
切换到openpilot目录:
cd openpilot
-
再拉取一次:
git pull
-
重启
reboot
-
如果拉取失败则执行:
git fetch --all git reset --hard origin/分支名称 git pull