[xtensa-cvscommit] linux/arch/xtensa vmlinux.lds.S,1.1.1.1,1.2
Brought to you by:
zankel
|
From: <joe...@us...> - 2003-04-28 23:21:14
|
Update of /cvsroot/xtensa/linux/arch/xtensa
In directory sc8-pr-cvs1:/tmp/cvs-serv13342/arch/xtensa
Modified Files:
vmlinux.lds.S
Log Message:
The debug vector is no longer level 3, and the source code is now based on processor-config parameters. This commit doesn't affect much since the debug vector is mapped into ROM (i.e., RedBoot).
Index: vmlinux.lds.S
===================================================================
RCS file: /cvsroot/xtensa/linux/arch/xtensa/vmlinux.lds.S,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** vmlinux.lds.S 28 Aug 2002 16:10:13 -0000 1.1.1.1
--- vmlinux.lds.S 28 Apr 2003 23:21:09 -0000 1.2
***************
*** 158,176 ****
SIZEOF(.initcall.init),
.initcall.init)
! SECTION_VECTOR (_Level3InterruptVector_literal,
! .Level3InterruptVector.literal,
! XCHAL_INTLEVEL_VECTOR_VADDR(3) - 4,
SIZEOF(.WindowVectors.text),
.WindowVectors.text)
! SECTION_VECTOR (_Level3InterruptVector_text,
! .Level3InterruptVector.text,
! XCHAL_INTLEVEL_VECTOR_VADDR(3),
4,
! .Level3InterruptVector.literal)
SECTION_VECTOR (_KernelExceptionVector_literal,
.KernelExceptionVector.literal,
XCHAL_KERNELEXC_VECTOR_VADDR - 4,
! SIZEOF(.Level3InterruptVector.text),
! .Level3InterruptVector.text)
SECTION_VECTOR (_KernelExceptionVector_text,
.KernelExceptionVector.text,
--- 158,176 ----
SIZEOF(.initcall.init),
.initcall.init)
! SECTION_VECTOR (_DebugInterruptVector_literal,
! .DebugInterruptVector.literal,
! XCHAL_INTLEVEL_VECTOR_VADDR(XCHAL_DEBUGLEVEL) - 4,
SIZEOF(.WindowVectors.text),
.WindowVectors.text)
! SECTION_VECTOR (_DebugInterruptVector_text,
! .DebugInterruptVector.text,
! XCHAL_INTLEVEL_VECTOR_VADDR(XCHAL_DEBUGLEVEL),
4,
! .DebugInterruptVector.literal)
SECTION_VECTOR (_KernelExceptionVector_literal,
.KernelExceptionVector.literal,
XCHAL_KERNELEXC_VECTOR_VADDR - 4,
! SIZEOF(.DebugInterruptVector.text),
! .DebugInterruptVector.text)
SECTION_VECTOR (_KernelExceptionVector_text,
.KernelExceptionVector.text,
|