aboutsummaryrefslogtreecommitdiff
path: root/src/arch
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-12-21 10:17:56 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-05-28 09:50:52 +0000
commitdf771c1ee4329389968a76396ab5f43ae5478748 (patch)
tree9de7663096d951e7b22e21b06a2270ba916fd836 /src/arch
parent69589294c205b616e80cafbbfb0b33e105a75386 (diff)
arch/x86: Remove more romcc leftovers
The sections .rom.* were for romcc and no longer used. Some romcc comments were left behind when guards were removed. Change-Id: I060ad7af2f03c67946f9796e625c072b887280c1 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/37955 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/arch')
-rw-r--r--src/arch/x86/bootblock_crt0.S3
-rw-r--r--src/arch/x86/prologue.inc6
2 files changed, 2 insertions, 7 deletions
diff --git a/src/arch/x86/bootblock_crt0.S b/src/arch/x86/bootblock_crt0.S
index 7291c47b92..9f45413e70 100644
--- a/src/arch/x86/bootblock_crt0.S
+++ b/src/arch/x86/bootblock_crt0.S
@@ -10,11 +10,12 @@
#include <cpu/x86/cr.h>
+.section .text
+
/*
* Include the old code for reset vector and protected mode entry. That code has
* withstood the test of time.
*/
-#include <arch/x86/prologue.inc>
#include <cpu/x86/16bit/entry16.inc>
#include <cpu/x86/16bit/reset16.inc>
#include <cpu/x86/32bit/entry32.inc>
diff --git a/src/arch/x86/prologue.inc b/src/arch/x86/prologue.inc
deleted file mode 100644
index 6d2ae1e039..0000000000
--- a/src/arch/x86/prologue.inc
+++ /dev/null
@@ -1,6 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <cpu/x86/post_code.h>
-
-.section ".rom.data", "a", @progbits
-.section ".rom.text", "ax", @progbits