Take off the board shorts

This commit is contained in:
David Holdeman 2024-02-28 21:23:49 -06:00 committed by rusefillc
parent bbdfef1915
commit f11f372ec4
1 changed files with 4 additions and 4 deletions

View File

@ -72,11 +72,11 @@ for BOARD in \
"config/boards/at_start_f435 at_start_f435" \
; do
BOARD_DIR=$(echo "$BOARD" | cut -d " " -f 1)
BOARD_SHORT_NAME=$(echo "$BOARD" | cut -d " " -f 2)
SHORT_BOARD_NAME=$(echo "$BOARD" | cut -d " " -f 2)
bash gen_signature.sh ${SHORT_BOARD_NAME}
bash gen_config_board.sh $BOARD_DIR $BOARD_SHORT_NAME
bash bin/gen_image_board.sh $BOARD_DIR $BOARD_SHORT_NAME
[ $? -eq 0 ] || { echo "ERROR generating board dir=[$BOARD_DIR] short=[$BOARD_SHORT_NAME]"; exit 1; }
bash gen_config_board.sh $BOARD_DIR $SHORT_BOARD_NAME
bash bin/gen_image_board.sh $BOARD_DIR $SHORT_BOARD_NAME
[ $? -eq 0 ] || { echo "ERROR generating board dir=[$BOARD_DIR] short=[$SHORT_BOARD_NAME]"; exit 1; }
done
exit 0