1if ARCH_MX7ULP 2 3config SYS_SOC 4 default "mx7ulp" 5 6config LDO_ENABLED_MODE 7 bool "i.MX7ULP LDO Enabled Mode" 8 help 9 Select this option to enable the PMC1 LDO. 10 11config MX7ULP 12 bool 13 14choice 15 prompt "MX7ULP board select" 16 optional 17 18config TARGET_MX7ULP_COM 19 bool "Support MX7ULP COM board" 20 select MX7ULP 21 select SYS_ARCH_TIMER 22 23config TARGET_MX7ULP_EVK 24 bool "Support mx7ulp EVK board" 25 select MX7ULP 26 select SYS_ARCH_TIMER 27 28endchoice 29 30source "board/ea/mx7ulp_com/Kconfig" 31source "board/freescale/mx7ulp_evk/Kconfig" 32 33endif 34