diff options
author | Jens Rottmann <JRottmann@LiPPERTembedded.de> | 2013-02-18 17:26:01 +0100 |
---|---|---|
committer | Peter Stuge <peter@stuge.se> | 2013-02-18 17:39:37 +0100 |
commit | 686dc0d66b2c83898d8a9ad845cf908c4b8294d2 (patch) | |
tree | f993378bc0b6d9cf7928ca77c08cc1a12dca5f70 /src/cpu | |
parent | 7b654a9702640c2d9fb8c37e4ae7f6b27ca949a0 (diff) | |
download | coreboot-686dc0d66b2c83898d8a9ad845cf908c4b8294d2.tar.xz |
Kconfig: string option doesn't work properly inside choice section
At least not in menuconfig. Move it after the endchoice.
Change-Id: I87d2f70e7c1fbe539cd78cb602a39335b2886d8d
Signed-off-by: Jens Rottmann <JRottmann@LiPPERTembedded.de>
Reviewed-on: http://review.coreboot.org/2443
Tested-by: build bot (Jenkins)
Reviewed-by: Peter Stuge <peter@stuge.se>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/Kconfig | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/cpu/Kconfig b/src/cpu/Kconfig index caf4ebc1b6..bb27da02e9 100644 --- a/src/cpu/Kconfig +++ b/src/cpu/Kconfig @@ -106,13 +106,6 @@ config CPU_MICROCODE_CBFS_EXTERNAL If unsure, select "Generate from tree" -config CPU_MICROCODE_FILE - string "Path and filename of CPU microcode" - depends on CPU_MICROCODE_CBFS_EXTERNAL - default "cpu_microcode.bin" - help - The path and filename of the file containing the CPU microcode. - config CPU_MICROCODE_CBFS_NONE bool "Do not include microcode updates" help @@ -156,3 +149,10 @@ config CPU_MICROCODE_CBFS_NONE selecting this option. endchoice + +config CPU_MICROCODE_FILE + string "Path and filename of CPU microcode" + depends on CPU_MICROCODE_CBFS_EXTERNAL + default "cpu_microcode.bin" + help + The path and filename of the file containing the CPU microcode. |