diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2014-10-11 03:49:24 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2014-10-11 04:00:19 +0200 |
commit | bf3e2dfaafb4b523a893a43aab4e0da661c94e5a (patch) | |
tree | 6f712196d4cf9e74b8d9d5774ab4b4a8b49453eb | |
parent | 9215a89f1cf8dfdb62a6b8a55a2e89e4e322a2d3 (diff) |
early section: Don't add empty .car.cbmem_console.
With handling of this section removed it confused the linker.
Change-Id: Id096c1642c0bfed1007a4b7d7dfa89f8b4ffcae1
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
Reviewed-on: http://review.coreboot.org/7042
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@gmail.com>
-rw-r--r-- | src/arch/x86/include/arch/early_variables.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/arch/x86/include/arch/early_variables.h b/src/arch/x86/include/arch/early_variables.h index 80e82d6408..ea57d89de8 100644 --- a/src/arch/x86/include/arch/early_variables.h +++ b/src/arch/x86/include/arch/early_variables.h @@ -23,8 +23,6 @@ #ifdef __PRE_RAM__ asm(".section .car.global_data,\"w\",@nobits"); asm(".previous"); -asm(".section .car.cbmem_console,\"w\",@nobits"); -asm(".previous"); #define CAR_GLOBAL __attribute__((section(".car.global_data"))) #else #define CAR_GLOBAL |