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:
parent
b257c0152b
commit
7198c25175
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue