summaryrefslogtreecommitdiff
path: root/cpu/i386
diff options
context:
space:
mode:
authorGraeme Russ <graeme.russ@gmail.com>2008-12-07 10:28:58 +1100
committerWolfgang Denk <wd@denx.de>2009-01-24 01:06:25 +0100
commit85ffbbd51914925a542d8528be7f072e5ab02157 (patch)
tree22ad4c17303a03fd011f1e27e47e950005c4a83d /cpu/i386
parenta3f4c123f569474e80ea012b8db0de46afdb6443 (diff)
Renamed cpu/i386/reset.S to resetvec.S
Brings i386 in line with other CPUs with a reset vector and frees up reset.c for CPU reset functions Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'cpu/i386')
-rw-r--r--cpu/i386/Makefile2
-rw-r--r--cpu/i386/resetvec.S (renamed from cpu/i386/reset.S)2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpu/i386/Makefile b/cpu/i386/Makefile
index 50534b615..f20675af1 100644
--- a/cpu/i386/Makefile
+++ b/cpu/i386/Makefile
@@ -28,7 +28,7 @@ include $(TOPDIR)/config.mk
LIB = $(obj)lib$(CPU).a
-START = start.o start16.o reset.o
+START = start.o start16.o resetvec.o
COBJS = serial.o interrupts.o cpu.o timer.o sc520.o
SOBJS = sc520_asm.o
diff --git a/cpu/i386/reset.S b/cpu/i386/resetvec.S
index 07a738492..d9222dd2f 100644
--- a/cpu/i386/reset.S
+++ b/cpu/i386/resetvec.S
@@ -26,7 +26,7 @@
.extern start16
-.section .reset, "ax"
+.section .resetvec, "ax"
.code16
reset_vector:
cli