aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster/rampingios/build-all.sh
diff options
context:
space:
mode:
authorSelene ToyKeeper2018-08-18 15:24:24 -0600
committerSelene ToyKeeper2018-08-18 15:24:24 -0600
commit0c1738c3ad8b5db6b8d91ba59234bc52c79d30a1 (patch)
treeb22efc9b048c3f65cada3294d60f685bec8883f7 /spaghetti-monster/rampingios/build-all.sh
parentAdded more driver types to Anduril. (diff)
parentRemoved symlinks to fix Windows checkouts. Copies those files from their ori... (diff)
downloadanduril-0c1738c3ad8b5db6b8d91ba59234bc52c79d30a1.tar.gz
anduril-0c1738c3ad8b5db6b8d91ba59234bc52c79d30a1.tar.bz2
anduril-0c1738c3ad8b5db6b8d91ba59234bc52c79d30a1.zip
merged from trunk
Diffstat (limited to 'spaghetti-monster/rampingios/build-all.sh')
-rwxr-xr-xspaghetti-monster/rampingios/build-all.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/spaghetti-monster/rampingios/build-all.sh b/spaghetti-monster/rampingios/build-all.sh
index 003a28c..bafbf25 100755
--- a/spaghetti-monster/rampingios/build-all.sh
+++ b/spaghetti-monster/rampingios/build-all.sh
@@ -1,5 +1,9 @@
#!/bin/sh
+cp -av ../anduril/cfg*.h .
+
+UI=rampingiosv3
+
for TARGET in \
BLF_GT \
BLF_Q8 \
@@ -11,6 +15,6 @@ for TARGET in \
FW3A \
; do
echo "===== $TARGET ====="
- ../../../bin/build-85.sh rampingiosv3 "-DFSM_${TARGET}_DRIVER"
- mv -f rampingiosv3.hex rampingiosv3.$TARGET.hex
+ ../../../bin/build-85.sh "$UI" "-DFSM_${TARGET}_DRIVER"
+ mv -f "$UI".hex "$UI".$TARGET.hex
done