From: Lukasz Majewski Date: Thu, 16 May 2019 14:01:35 +0000 (+0200) Subject: Kconfig: Make CMD_SPL_NAND_OFS only available when proper memory is used X-Git-Tag: v2019.10-rc1~9^2~47 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7cb179eef96990853f52fed80203c682f6fa4692;p=oweals%2Fu-boot.git Kconfig: Make CMD_SPL_NAND_OFS only available when proper memory is used This commit makes the CMD_SPL_NAND_OFS only visible when we use NAND memory. Before this change it was present when only CMD_SPL was enabled (and would stay when board with other falcon boot medium is used). Signed-off-by: Lukasz Majewski --- diff --git a/cmd/Kconfig b/cmd/Kconfig index 175c6ad9e3..ca6de5040a 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -327,6 +327,7 @@ config CMD_SPL config CMD_SPL_NAND_OFS hex "Offset of OS command line args for Falcon-mode NAND boot" depends on CMD_SPL + depends on CMD_SPL && (TPL_NAND_SUPPORT || SPL_NAND_SUPPORT) default 0 help This provides the offset of the command line arguments for Linux