diff options
author | Simon Glass <sjg@chromium.org> | 2017-07-23 21:19:41 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-25 21:20:02 -0400 |
commit | 85fc970d74d09f33fcdcc649e73c5dc4f5334605 (patch) | |
tree | 4ba2865dc229971373e8482d990af28c9eea3838 /arch/mips/Kconfig | |
parent | e73496d08e2dc60f3e00554c71b92f72cdebf0fd (diff) | |
download | u-boot-85fc970d74d09f33fcdcc649e73c5dc4f5334605.tar.gz u-boot-85fc970d74d09f33fcdcc649e73c5dc4f5334605.tar.xz u-boot-85fc970d74d09f33fcdcc649e73c5dc4f5334605.zip |
Convert CONFIG_ENV_IS_IN_FLASH to Kconfig
This converts the following to Kconfig:
CONFIG_ENV_IS_IN_FLASH
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/mips/Kconfig')
-rw-r--r-- | arch/mips/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index 579371e8ee..b53206bf8e 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig @@ -21,6 +21,7 @@ config TARGET_QEMU_MIPS select SUPPORTS_CPU_MIPS64_R1 select SUPPORTS_CPU_MIPS64_R2 select ROM_EXCEPTION_VECTORS + imply ENV_IS_IN_FLASH config TARGET_MALTA bool "Support malta" @@ -42,6 +43,7 @@ config TARGET_MALTA select SWAP_IO_SPACE select MIPS_L1_CACHE_SHIFT_6 select ROM_EXCEPTION_VECTORS + imply ENV_IS_IN_FLASH config TARGET_VCT bool "Support vct" @@ -108,6 +110,7 @@ config TARGET_BOSTON select SUPPORTS_CPU_MIPS64_R2 select SUPPORTS_CPU_MIPS64_R6 select ROM_EXCEPTION_VECTORS + imply ENV_IS_IN_FLASH config TARGET_XILFPGA bool "Support Imagination Xilfpga" @@ -197,6 +200,7 @@ config CPU_MIPS64_R2 bool "MIPS64 Release 2" depends on SUPPORTS_CPU_MIPS64_R2 select 64BIT + imply ENV_IS_IN_FLASH help Choose this option to build a kernel for release 2 through 5 of the MIPS64 architecture. |