Commit 5cb911ac authored by Lucas Russo's avatar Lucas Russo

src/*/libbpmclient/*: add afcv3_1 board target

parent dce878c5
......@@ -42,7 +42,7 @@ ifeq ($(BOARD),ml605)
CFLAGS_USR += -D__BOARD_ML605__
endif
ifeq ($(BOARD),afcv3)
ifeq ($(BOARD),$(filter $(BOARD),afcv3 afcv3_1))
CFLAGS_USR += -D__BOARD_AFCV3__
endif
......
#!/usr/bin/env bash
VALID_BOARDS_STR="Valid values are: \"ml605\" and \"afcv3\"."
VALID_BOARDS_STR="Valid values are: \"ml605\", \"afcv3\" or \"afcv3_1\"."
#######################################
# All of our Makefile options
......@@ -14,7 +14,7 @@ if [ -z "$BOARD" ]; then
exit 1
fi
if [ "$BOARD" != "afcv3" ] && [ "$BOARD" != "ml605" ]; then
if [ "$BOARD" != "afcv3" ] && [ "$BOARD" != "afcv3_1" ] && [ "$BOARD" != "ml605" ]; then
echo "Unsupported board. "$VALID_BOARDS_STR
exit 1
fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment