diff options
Diffstat (limited to 'board')
-rw-r--r-- | board/sunxi/Kconfig | 21 | ||||
-rw-r--r-- | board/ti/am335x/Kconfig | 9 | ||||
-rw-r--r-- | board/ti/common/Kconfig | 36 |
3 files changed, 66 insertions, 0 deletions
diff --git a/board/sunxi/Kconfig b/board/sunxi/Kconfig index 68443c9931..79f644a935 100644 --- a/board/sunxi/Kconfig +++ b/board/sunxi/Kconfig @@ -1,5 +1,26 @@ if ARCH_SUNXI +config SPL_GPIO_SUPPORT + default y + +config SPL_LIBCOMMON_SUPPORT + default y + +config SPL_LIBDISK_SUPPORT + default y + +config SPL_LIBGENERIC_SUPPORT + default y + +config SPL_MMC_SUPPORT + default y + +config SPL_POWER_SUPPORT + default y + +config SPL_SERIAL_SUPPORT + default y + # Note only one of these may be selected at a time! But hidden choices are # not supported by Kconfig config SUNXI_GEN_SUN4I diff --git a/board/ti/am335x/Kconfig b/board/ti/am335x/Kconfig index 97374bdc12..a84e91b3dc 100644 --- a/board/ti/am335x/Kconfig +++ b/board/ti/am335x/Kconfig @@ -1,5 +1,14 @@ if TARGET_AM335X_EVM +config SPL_ENV_SUPPORT + default y + +config SPL_WATCHDOG_SUPPORT + default y + +config SPL_YMODEM_SUPPORT + default y + config SYS_BOARD default "am335x" diff --git a/board/ti/common/Kconfig b/board/ti/common/Kconfig index adf73abc93..4980a04714 100644 --- a/board/ti/common/Kconfig +++ b/board/ti/common/Kconfig @@ -1,5 +1,41 @@ +config SPL_ENV_SUPPORT + default y + config TI_I2C_BOARD_DETECT bool "Support for Board detection for TI platforms" help Support for detection board information on Texas Instrument's Evaluation Boards which have I2C based EEPROM detection + +config SPL_EXT_SUPPORT + default y + +config SPL_FAT_SUPPORT + default y + +config SPL_GPIO_SUPPORT + default y + +config SPL_I2C_SUPPORT + default y + +config SPL_LIBCOMMON_SUPPORT + default y + +config SPL_LIBDISK_SUPPORT + default y + +config SPL_LIBGENERIC_SUPPORT + default y + +config SPL_MMC_SUPPORT + default y + +config SPL_NAND_SUPPORT + default y + +config SPL_POWER_SUPPORT + default y + +config SPL_SERIAL_SUPPORT + default y |