From 8d022eba3b741bd2a1253df09c01d75e340b492a Mon Sep 17 00:00:00 2001 From: Selene ToyKeeper Date: Fri, 3 Nov 2023 06:39:50 -0600 Subject: renamed cfg.h -> anduril.h so each UI can have its own cfg (part 1) (still need to update file contents afterward, but doing it in a separate commit so git can detect renames easier) --- bin/build-all.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/build-all.sh') diff --git a/bin/build-all.sh b/bin/build-all.sh index c5bc19a..e91280a 100755 --- a/bin/build-all.sh +++ b/bin/build-all.sh @@ -19,7 +19,7 @@ FAIL=0 PASSED='' FAILED='' -for TARGET in hw/*/*/cfg.h ; do +for TARGET in $(find hw/*/* -name "$UI".h) ; do # maybe limit builds to a specific pattern if [ ! -z "$SEARCH" ]; then @@ -28,7 +28,7 @@ for TARGET in hw/*/*/cfg.h ; do fi # friendly name for this build - NAME=$(echo "$TARGET" | perl -ne 's|/|-|g; /hw-(.*)-cfg.h/ && print "$1\n";') + NAME=$(echo "$TARGET" | perl -ne 's|/|-|g; /hw-(.*)-'"$UI"'.h/ && print "$1\n";') echo "===== $NAME =====" # figure out MCU type -- cgit v1.2.3