From 9d04b5fe16018953720ff01eeb7636d9ec31bb36 Mon Sep 17 00:00:00 2001 From: Adam Ford Date: Sun, 8 Jul 2018 07:28:10 -0500 Subject: configs: Make NAND_BOOT and ONENAND_BOOT imply NAND Some boards indicate support from booting NAND or ONENAND booting, but don't enable the CONFIG_NAND. This makes those boards imply NAND which will make enabling other flags that are dependent on CONFIG_NAND possible and easier to migrate. Signed-off-by: Adam Ford --- common/Kconfig | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common/Kconfig') diff --git a/common/Kconfig b/common/Kconfig index 81e88ea77c..dc2e1c23dd 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -125,6 +125,7 @@ config NOR_BOOT config NAND_BOOT bool "Support for booting from NAND flash" default n + imply NAND help Enabling this will make a U-Boot binary that is capable of being booted via NAND flash. This is not a must, some SoCs need this, @@ -133,6 +134,7 @@ config NAND_BOOT config ONENAND_BOOT bool "Support for booting from ONENAND" default n + imply NAND help Enabling this will make a U-Boot binary that is capable of being booted via ONENAND. This is not a must, some SoCs need this, -- cgit v1.2.3