diff options
author | Arthur Heymans <arthur@aheymans.xyz> | 2019-11-09 06:50:20 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-11-12 18:25:42 +0000 |
commit | df9cdcfc383ac38c2238fd6d640c9260028906f7 (patch) | |
tree | c72389e5b014119ecc632dc279c6c7162acc433a /src/cpu/qemu-x86 | |
parent | fee2fdecc2b6c260fcb6caf3348ee948a83cdbd7 (diff) |
arch/x86/car.ld: Rename suffix _start/_end
This is more in line with how linker symbol for regions are defined.
Change-Id: I0bd7ae59a27909ed0fd38e6f7193816cb57e76af
Signed-off-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/36695
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/cpu/qemu-x86')
-rw-r--r-- | src/cpu/qemu-x86/cache_as_ram_bootblock.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/qemu-x86/cache_as_ram_bootblock.S b/src/cpu/qemu-x86/cache_as_ram_bootblock.S index f5678a1807..1fa0018dc8 100644 --- a/src/cpu/qemu-x86/cache_as_ram_bootblock.S +++ b/src/cpu/qemu-x86/cache_as_ram_bootblock.S @@ -34,7 +34,7 @@ cache_as_ram: post_code(0x21) - movl $_car_stack_end, %esp + movl $_ecar_stack, %esp /* Align the stack and keep aligned for call to bootblock_c_entry() */ and $0xfffffff0, %esp |