mimxrt/Makefile: Move the FROZEN_MANIFEST setting after board config.

Such that a respective statement in mpconfigboard.mk is executed first.
This commit is contained in:
robert-hh 2023-02-02 08:26:17 +01:00 committed by Damien George
parent b257c0152b
commit 7198c25175
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,6 @@ CROSS_COMPILE ?= arm-none-eabi-
GIT_SUBMODULES += lib/tinyusb lib/nxp_driver
# MicroPython feature configurations
FROZEN_MANIFEST ?= boards/manifest.py
MICROPY_VFS_LFS2 ?= 1
MICROPY_VFS_FAT ?= 1
@ -31,6 +30,9 @@ ifeq ($(wildcard $(BOARD_DIR)/.),)
endif
include $(BOARD_DIR)/mpconfigboard.mk
# File containing description of content to be frozen into firmware.
FROZEN_MANIFEST ?= boards/manifest.py
# Include py core make definitions
include $(TOP)/py/py.mk
include $(TOP)/extmod/extmod.mk