aboutsummaryrefslogtreecommitdiff
path: root/ui/rampingios/build-all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'ui/rampingios/build-all.sh')
-rwxr-xr-xui/rampingios/build-all.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/ui/rampingios/build-all.sh b/ui/rampingios/build-all.sh
new file mode 100755
index 0000000..106dc15
--- /dev/null
+++ b/ui/rampingios/build-all.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+cp -av ../anduril/cfg-emisar*.h .
+
+UI=rampingiosv3
+
+for TARGET in cfg-*.h ; do
+ NAME=$(echo "$TARGET" | perl -ne '/cfg-(.*).h/ && print "$1\n";')
+ echo "===== $NAME ====="
+ echo ../../../bin/build.sh 85 "$UI" "-DCONFIGFILE=${TARGET}"
+ ../../../bin/build.sh 85 "$UI" "-DCONFIGFILE=${TARGET}"
+ mv -f "$UI".hex "$UI".$NAME.hex
+done