diff options
author | Alex Kiernan | 2018-04-19 04:32:52 +0000 |
---|---|---|
committer | Tom Rini | 2018-04-28 18:32:23 -0400 |
commit | 3bac19ce23f88607c31037f1389213db8b5f9a74 (patch) | |
tree | 69a5b59c31f2c3c9e5cfd3b19ea25179d8bea41a /common/spl/Kconfig | |
parent | eedecb0fe819fef767e3016fe9057cd1e186f691 (diff) |
spl: Add dependency on serial to Ymodem
Building with Ymodem support requires serial in SPL/TPL, add that
dependency here.
Signed-off-by: Alex Kiernan <alex.kiernan@gmail.com>
Diffstat (limited to 'common/spl/Kconfig')
-rw-r--r-- | common/spl/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index 4d275655660..c5d4b5e14bd 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -751,6 +751,7 @@ config SPL_WATCHDOG_SUPPORT config SPL_YMODEM_SUPPORT bool "Support loading using Ymodem" + depends on SPL_SERIAL_SUPPORT help While loading from serial is slow it can be a useful backup when there is no other option. The Ymodem protocol provides a reliable @@ -951,6 +952,7 @@ config TPL_SPI_SUPPORT config TPL_YMODEM_SUPPORT bool "Support loading using Ymodem" + depends on TPL_SERIAL_SUPPORT help While loading from serial is slow it can be a useful backup when there is no other option. The Ymodem protocol provides a reliable |