diff options
author | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-07-26 12:29:01 +0200 |
---|---|---|
committer | Philipp Tomsich <philipp.tomsich@theobroma-systems.com> | 2017-07-27 14:59:02 +0200 |
commit | c0508e427f7e01a20f9c23f5084cb32a0c9ba3bb (patch) | |
tree | b27ddfffefbe1f2b43abdc2bac5d4352942b3239 /arch | |
parent | 478e6f2e94e0d8dcb2b75e4d68c8a4f732baf11f (diff) | |
download | u-boot-c0508e427f7e01a20f9c23f5084cb32a0c9ba3bb.tar.gz u-boot-c0508e427f7e01a20f9c23f5084cb32a0c9ba3bb.tar.bz2 u-boot-c0508e427f7e01a20f9c23f5084cb32a0c9ba3bb.zip |
rockchip: rk3399: enable SPL_SERIAL_SUPPORT and SPL_DRIVERS_MISC_SUPPORT via Kconfig
SPL_SERIAL_SUPPORT and SPL_DRIVERS_MISC_SUPPORT were previously
enabled through rk3399_common.h. This change implies these options
through Kconfig.
These need to always be active for the RK3399, as follows:
- SPL_SERIAL_SUPPORT is needed to pass the SPL build
- SPL_DRIVERS_MISC_SUPPORT is needed to pass the SPL build
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-rockchip/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig index bb44c61566..c9246132e0 100644 --- a/arch/arm/mach-rockchip/Kconfig +++ b/arch/arm/mach-rockchip/Kconfig @@ -82,6 +82,8 @@ config ROCKCHIP_RK3399 select SUPPORT_SPL select SPL select SPL_SEPARATE_BSS + select SPL_SERIAL_SUPPORT + select SPL_DRIVERS_MISC_SUPPORT select ENABLE_ARM_SOC_BOOT0_HOOK select DEBUG_UART_BOARD_INIT help |