boards: mimxrt1180: fix MCUBoot build

- Fixes building of MCUBoot for mimxrt1180-evk.
- Disables RT Boot header for MCUBoot applications.

Signed-off-by: Andrej Butok <andrey.butok@nxp.com>
This commit is contained in:
Andrej Butok 2025-01-23 10:12:16 +01:00 committed by Benjamin Cabé
commit 66df94b618
2 changed files with 4 additions and 1 deletions

View file

@ -19,8 +19,10 @@
zephyr,itcm = &itcm; zephyr,itcm = &itcm;
zephyr,flash-controller = &w25q128jw; zephyr,flash-controller = &w25q128jw;
zephyr,flash = &w25q128jw; zephyr,flash = &w25q128jw;
zephyr,code-partition = &slot0_partition;
zephyr,console = &lpuart1; zephyr,console = &lpuart1;
zephyr,shell-uart = &lpuart1; zephyr,shell-uart = &lpuart1;
zephyr,uart-mcumgr = &lpuart1;
zephyr,canbus = &flexcan3; zephyr,canbus = &flexcan3;
}; };

View file

@ -30,7 +30,8 @@ if SECOND_CORE_MCUX
# RT Boot header is only needed on primary core # RT Boot header is only needed on primary core
config NXP_IMXRT_BOOT_HEADER config NXP_IMXRT_BOOT_HEADER
depends on !CPU_CORTEX_M7 default y
depends on !(CPU_CORTEX_M7 || BOOTLOADER_MCUBOOT)
endif # SECOND_CORE_MCUX endif # SECOND_CORE_MCUX