custom stuff goes on top to make sure it's overwritten with less weird stuff

This commit is contained in:
rusefillc 2022-08-16 17:51:30 -04:00
parent 88a501a11f
commit 21023e35df
1 changed files with 11 additions and 10 deletions

View File

@ -9,6 +9,17 @@ rm -f gen_config_board.log
# todo: who is the consumer of this folder? shall we move that 'mkdir' command closer to usage?
mkdir build
# todo: we have a bit of code duplication with build-firmware.yaml here :(
config/boards/kinetis/config/gen_kinetis_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board kinetis kin"; exit 1; }
config/boards/cypress/config/gen_cypress_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board cypress cypress"; exit 1; }
config/boards/subaru_eg33/config/gen_subaru_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board subaru_eg33 subaru_eg33_f7"; exit 1; }
#
# see also build-firmware where we compile all versions of firmware
#
@ -58,14 +69,4 @@ done
[ $? -eq 0 ] || { echo "ERROR generating default"; exit 1; }
# todo: we have a bit of code duplication with build-firmware.yaml here :(
config/boards/kinetis/config/gen_kinetis_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board kinetis kin"; exit 1; }
config/boards/cypress/config/gen_cypress_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board cypress cypress"; exit 1; }
config/boards/subaru_eg33/config/gen_subaru_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board subaru_eg33 subaru_eg33_f7"; exit 1; }
exit 0