Skip to content

Commit 7198c25

Browse files
robert-hhdpgeorge
authored andcommitted
mimxrt/Makefile: Move the FROZEN_MANIFEST setting after board config.
Such that a respective statement in mpconfigboard.mk is executed first.
1 parent b257c01 commit 7198c25

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ports/mimxrt/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ CROSS_COMPILE ?= arm-none-eabi-
1010
GIT_SUBMODULES += lib/tinyusb lib/nxp_driver
1111

1212
# MicroPython feature configurations
13-
FROZEN_MANIFEST ?= boards/manifest.py
1413
MICROPY_VFS_LFS2 ?= 1
1514
MICROPY_VFS_FAT ?= 1
1615

@@ -31,6 +30,9 @@ ifeq ($(wildcard $(BOARD_DIR)/.),)
3130
endif
3231
include $(BOARD_DIR)/mpconfigboard.mk
3332

33+
# File containing description of content to be frozen into firmware.
34+
FROZEN_MANIFEST ?= boards/manifest.py
35+
3436
# Include py core make definitions
3537
include $(TOP)/py/py.mk
3638
include $(TOP)/extmod/extmod.mk

0 commit comments

Comments
 (0)