diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2012-03-16 15:40:56 +0200 |
---|---|---|
committer | Patrick Georgi <patrick@georgi-clan.de> | 2012-03-16 22:40:35 +0100 |
commit | d11ca1d08d90fdbe828f4c224e31dfc7d633bcdf (patch) | |
tree | 40cf4bae8737de0e2452391c87fb63ac2067410f /src/arch | |
parent | f5bb4771dee06c132aa7d15917c69cd34b2a7ec9 (diff) | |
download | coreboot-d11ca1d08d90fdbe828f4c224e31dfc7d633bcdf.tar.xz |
Rename AMD_AGESA to CPU_AMD_AGESA
Also any CPU_AMD_AGESA_FAMILYxx selects CPU_AMD_AGESA, so remove
the explicit selects from the mainboards.
Change-Id: I4d71726bccd446b0f4db4e26448b5c91e406a641
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: http://review.coreboot.org/792
Tested-by: build bot (Jenkins)
Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/x86/init/bootblock.ld | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86/init/bootblock.ld b/src/arch/x86/init/bootblock.ld index bde0430059..fd4d3db960 100644 --- a/src/arch/x86/init/bootblock.ld +++ b/src/arch/x86/init/bootblock.ld @@ -51,5 +51,5 @@ SECTIONS *(.eh_frame); } - _bogus = ASSERT((SIZEOF(.bss) + SIZEOF(.data)) == 0 || CONFIG_AMD_AGESA, "Do not use global variables in romstage"); + _bogus = ASSERT((SIZEOF(.bss) + SIZEOF(.data)) == 0 || CONFIG_CPU_AMD_AGESA, "Do not use global variables in romstage"); } |