1if ARCH_IMXRT
2
3config IMXRT
4	bool
5
6config IMXRT1020
7	bool
8	select IMXRT
9
10config IMXRT1050
11	bool
12	select IMXRT
13
14config SYS_SOC
15	default "imxrt"
16
17choice
18	prompt "NXP i.MXRT board select"
19	optional
20
21config TARGET_IMXRT1020_EVK
22	bool "Support imxrt1020 EVK board"
23	select IMXRT1020
24
25config TARGET_IMXRT1050_EVK
26	bool "Support imxrt1050 EVK board"
27	select IMXRT1050
28
29endchoice
30
31source "board/freescale/imxrt1020-evk/Kconfig"
32source "board/freescale/imxrt1050-evk/Kconfig"
33
34endif
35