diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2010-04-21 20:55:38 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2010-04-21 20:55:38 +0000 |
commit | f94a97be7208781cd63f4aebfc48ee94a739eecc (patch) | |
tree | 368ef3d8494e0df7d3045ee4d223ac38f8e4ffcb /src/cpu/amd/model_lx/Kconfig | |
parent | 6c705110f65e3de4df11e0a433005876925f539f (diff) |
oops, sorry for the last commit. This commit changes the code to distinguish
between having VSA functionality in the code, and adding a VSA image to the
ROM.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5473 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/amd/model_lx/Kconfig')
-rw-r--r-- | src/cpu/amd/model_lx/Kconfig | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/cpu/amd/model_lx/Kconfig b/src/cpu/amd/model_lx/Kconfig index 66e20ec45e..07bbce4f0b 100644 --- a/src/cpu/amd/model_lx/Kconfig +++ b/src/cpu/amd/model_lx/Kconfig @@ -12,6 +12,12 @@ config DCACHE_RAM_SIZE depends on CPU_AMD_LX config GEODE_VSA + bool + default y + depends on CPU_AMD_LX + select PCI_OPTION_ROM_RUN_REALMODE + +config GEODE_VSA_FILE bool "Add a VSA image" depends on CPU_AMD_LX help @@ -21,9 +27,9 @@ config GEODE_VSA You will be able to specify the location and file name of the image later. -config VSA_FILE +config VSA_FILENAME string "AMD Geode LX VSA path and filename" - depends on GEODE_VSA && CPU_AMD_LX + depends on GEODE_VSA_FILE && CPU_AMD_LX default "gpl_vsa_lx_102.bin" help The path and filename of the file to use as VSA. |