aboutsummaryrefslogtreecommitdiff
path: root/spaghetti-monster/rampingios/build-all.sh
diff options
context:
space:
mode:
authorSelene ToyKeeper2018-08-18 15:22:43 -0600
committerSelene ToyKeeper2018-08-18 15:22:43 -0600
commit5c8c192b491926ed5163b1917c3ac9ea9db36937 (patch)
treeb22efc9b048c3f65cada3294d60f685bec8883f7 /spaghetti-monster/rampingios/build-all.sh
parentmerged updates from fsm branch, including RampingIOS V3 and Werner UIs... (diff)
downloadanduril-5c8c192b491926ed5163b1917c3ac9ea9db36937.tar.gz
anduril-5c8c192b491926ed5163b1917c3ac9ea9db36937.tar.bz2
anduril-5c8c192b491926ed5163b1917c3ac9ea9db36937.zip
Removed symlinks to fix Windows checkouts. Copies those files from their originals on each build instead.
Diffstat (limited to '')
-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