aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-04-09 11:37:58 +0000
committerStefan Reinauer <stepan@openbios.org>2010-04-09 11:37:58 +0000
commitc666a64395efd7472ff6f5de5589593c7d5f8e33 (patch)
treee3846428baa3fcd7ff9040b44dcb933a8dc0ccf0 /src
parent6a445e812604edaa0f11c99d835eddaeefa83d3b (diff)
drop unused files, and we only use ASM_LOG_LEVEL in one file now
(LX CAR) Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5390 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r--src/arch/i386/init/crt0_prologue.inc9
-rw-r--r--src/arch/i386/lib/jmp_auto.inc3
-rw-r--r--src/arch/i386/lib/jmp_auto_out.inc5
-rw-r--r--src/arch/i386/lib/noop_failover.inc9
4 files changed, 2 insertions, 24 deletions
diff --git a/src/arch/i386/init/crt0_prologue.inc b/src/arch/i386/init/crt0_prologue.inc
index f5d8b6f659..3c3fa1d859 100644
--- a/src/arch/i386/init/crt0_prologue.inc
+++ b/src/arch/i386/init/crt0_prologue.inc
@@ -6,18 +6,13 @@
* published by the Free Software Foundation; version 2 of the License.
*/
-
#include <arch/asm.h>
#include <arch/intel.h>
#include <console/loglevel.h>
-#ifndef ASM_CONSOLE_LOGLEVEL
-#define ASM_CONSOLE_LOGLEVEL CONFIG_MAXIMUM_CONSOLE_LOGLEVEL
-#endif
-
/*
- * This is the entry code the code in .reset section
- * jumps to this address.
+ * This is the entry code.
+ * The code in the .reset section jumps to this address.
*
*/
.section ".rom.data", "a", @progbits
diff --git a/src/arch/i386/lib/jmp_auto.inc b/src/arch/i386/lib/jmp_auto.inc
deleted file mode 100644
index 5701922bae..0000000000
--- a/src/arch/i386/lib/jmp_auto.inc
+++ /dev/null
@@ -1,3 +0,0 @@
-/* -*- asm -*- */
-
- jmp __fpu_start
diff --git a/src/arch/i386/lib/jmp_auto_out.inc b/src/arch/i386/lib/jmp_auto_out.inc
deleted file mode 100644
index 88b1728aab..0000000000
--- a/src/arch/i386/lib/jmp_auto_out.inc
+++ /dev/null
@@ -1,5 +0,0 @@
-/* -*- asm -*- */
-
- /* clear boot_complete flag */
- xorl %ebp, %ebp
- jmp __main
diff --git a/src/arch/i386/lib/noop_failover.inc b/src/arch/i386/lib/noop_failover.inc
deleted file mode 100644
index 70c10b0d3e..0000000000
--- a/src/arch/i386/lib/noop_failover.inc
+++ /dev/null
@@ -1,9 +0,0 @@
-/* Step 1: Test for cpu reset
- * That is, did I just boot or is this a later boot since power on.
- * The result of this test in %al
- * %al == 1 -- We are rebooting
- * %al == 0 -- This is the initial boot
- *
- */
- testb %al, %al
- jnz __cpu_reset