trns1997 commented on issue #2206: URL: https://github.com/apache/nuttx/issues/2206#issuecomment-1887415162
@f4grx just a note we tried out-of-tree build for our custom board and it worked without the need of renaming `Make.defs` to `Makefile` and without the need to add `include $(TOPDIR)/boards/Board.mk`. We simply added the following options in our defconfig: ``` CONFIG_ARCH_BOARD_CUSTOM=y CONFIG_ARCH_BOARD_CUSTOM_DIR="YOUR BOARD DIR" CONFIG_ARCH_BOARD_CUSTOM_NAME="myCustomBoard" ``` Note the chip we tested with the xmc4700. This worked: ``` ./tools/configure.sh ABSOLUTE_PATH_TO_CUSTOM_BOARD/configs/myCustomBoardConfig make -j8 ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
