This commit is contained in:
rusefillc 2022-08-15 11:09:48 -04:00
parent e635c474b9
commit 01b4d3e052
1 changed files with 5 additions and 5 deletions

View File

@ -46,7 +46,7 @@ for BOARD in \
BOARD_NAME=$(echo "$BOARD" | cut -d " " -f 1)
BOARD_SHORT_NAME=$(echo "$BOARD" | cut -d " " -f 2)
INI=$(echo "$BOARD" | cut -d " " -f 3)
bash gen_config_board.sh $BOARD_NAME $BOARD_SHORT_NAME $INI
gen_config_board.sh $BOARD_NAME $BOARD_SHORT_NAME $INI
[ $? -eq 0 ] || { echo "ERROR generating board $BOARD_NAME $BOARD_SHORT_NAME $INI"; exit 1; }
done
@ -54,23 +54,23 @@ done
# TODO: it's time to kill the 'default' bundle concept and just live happily with explicit f407-discovery
# default config should be generated after normal custom boards so that it would be default
# firmware/controllers/generated/rusefi_generated.h file which would be pushed into VCS
bash gen_config_default.sh
gen_config_default.sh
[ $? -eq 0 ] || { echo "ERROR generating default"; exit 1; }
# todo: we have a bit of code duplication with build-firmware.yaml here :(
cd config/boards/kinetis/config
bash gen_kinetis_config.sh
gen_kinetis_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board kinetis kin"; exit 1; }
cd ../../../..
cd config/boards/hellen/cypress/config
bash gen_cypress_config.sh
gen_cypress_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board hellen_cypress hellen_cypress"; exit 1; }
cd ../../../../..
bash config/boards/subaru_eg33/config/gen_subaru_config.sh
config/boards/subaru_eg33/config/gen_subaru_config.sh
[ $? -eq 0 ] || { echo "ERROR generating board subaru_eg33 subaru_eg33_f7"; exit 1; }
exit 0