I copied the board files from mimxrt1050_evk, and renamed them to my own board, basically just changing the names. When I do I get the following linker error:
/opt/toolchains/zephyr-sdk-0.13.1/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/10.3.0/../../../../arm-zephyr-eabi/bin/ld.bfd: zephyr/libzephyr.a(soc_rt10xx.c.obj):(.boot_hdr.ivt+0xc): undefined reference to `dcd_data'
TheĀ Kconfig.board file looks as follows (where I changed the first two lines)
config BOARD_MIMXRT1050_ODB
bool "MIMXRT1050-ODB"
depends on SOC_SERIES_IMX_RT
select SOC_PART_NUMBER_MIMXRT1052DVL6A
I keep looking at all fields I've changed but can't find any issue. Any guidance on how to troubleshoot this?