diff options
author | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
---|---|---|
committer | Angelos Mouzakitis <a.mouzakitis@virtualopensystems.com> | 2023-10-10 14:33:42 +0000 |
commit | af1a266670d040d2f4083ff309d732d648afba2a (patch) | |
tree | 2fc46203448ddcc6f81546d379abfaeb323575e9 /roms/u-boot/arch/arm/mach-imx/mxs/Kconfig | |
parent | e02cda008591317b1625707ff8e115a4841aa889 (diff) |
Change-Id: Iaf8d18082d3991dec7c0ebbea540f092188eb4ec
Diffstat (limited to 'roms/u-boot/arch/arm/mach-imx/mxs/Kconfig')
-rw-r--r-- | roms/u-boot/arch/arm/mach-imx/mxs/Kconfig | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/roms/u-boot/arch/arm/mach-imx/mxs/Kconfig b/roms/u-boot/arch/arm/mach-imx/mxs/Kconfig new file mode 100644 index 000000000..9f48ffda4 --- /dev/null +++ b/roms/u-boot/arch/arm/mach-imx/mxs/Kconfig @@ -0,0 +1,61 @@ +if ARCH_MX23 + +config MX23 + bool + default y + +choice + prompt "MX23 board select" + optional + +config TARGET_MX23_OLINUXINO + bool "Support mx23_olinuxino" + select BOARD_EARLY_INIT_F + +config TARGET_MX23EVK + bool "Support mx23evk" + select BOARD_EARLY_INIT_F + +config TARGET_XFI3 + bool "Support xfi3" + +endchoice + +config SYS_SOC + default "mxs" + +source "board/olimex/mx23_olinuxino/Kconfig" +source "board/freescale/mx23evk/Kconfig" + +endif + +if ARCH_MX28 + +config MX28 + bool + default y + +choice + prompt "MX28 board select" + optional + +config TARGET_BG0900 + bool "Support bg0900" + +config TARGET_MX28EVK + bool "Support mx28evk" + select BOARD_EARLY_INIT_F + +config TARGET_XEA + bool "Support XEA" + +endchoice + +config SYS_SOC + default "mxs" + +source "board/freescale/mx28evk/Kconfig" +source "board/liebherr/xea/Kconfig" +source "board/ppcag/bg0900/Kconfig" + +endif |