diff options
| author | B, Ravi <[email protected]> | 2017-05-04 15:45:28 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-05-12 08:37:09 -0400 |
| commit | 1b19cbdbf7457629bfdf13d0995d7b0d1642c7fb (patch) | |
| tree | a52c0dfe45664d11c12caa746b899c2cc5964274 | |
| parent | 624b7101ee4c3673504812862d1414b1409a2c9f (diff) | |
spl: Kconfig: dfu: spl-dfu depends on SPL_RAM_SUPPORT
Since SPL_DFU_SUPPORT is depends on SPL_RAM_SUPPORT,
hence select SPL_DFU_SUPPORT only when
SPL_RAM_SUPPORT is chosen.
Signed-off-by: Ravi Babu <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
| -rw-r--r-- | common/spl/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/spl/Kconfig b/common/spl/Kconfig index ea6fbb60adf..12313515e3a 100644 --- a/common/spl/Kconfig +++ b/common/spl/Kconfig @@ -646,6 +646,7 @@ config SPL_USBETH_SUPPORT config SPL_DFU_SUPPORT bool "Support DFU (Device Firmware Upgarde)" select SPL_HASH_SUPPORT + depends on SPL_RAM_SUPPORT help This feature enables the DFU (Device Firmware Upgarde) in SPL with RAM memory device support. The ROM code will load and execute |
