mirror of
https://github.com/OpenSolo/OpenSolo.git
synced 2025-04-29 14:14:30 +02:00

- Changed build directory to /solo-build since it isn't alt anymore. - Move 3dr-yocto-bsp-base into solo-builder directory - Remove unused files and directories from solo-builder - Added building artoo STM32 FW to build - Updated command line options for nuke and scripted - Removed debug outputs
14 lines
242 B
Bash
Executable File
14 lines
242 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
|
|
rm -rf /vagrant/artoo/artoo.bin
|
|
cd /vagrant/artoo
|
|
tup
|
|
if [ ! $? -eq 0 ]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Copy new Artoo STM32 FW to Artoo FW Bitbake recipe
|
|
cp /vagrant/artoo/artoo.bin /vagrant/meta-3dr/recipes-firmware/artoo/files
|