mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-17 20:25:19 +00:00
[PATCH] m68knommu: remove __ramvec from 68328/pilot start code
__ramvec has been removed from the linker script. The vector base address is defined as a configurable option, use that. Remove its use from the 68328/pilot startup code. Signed-off-by: Greg Ungerer <gerg@uclinux.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
5f2f444136
commit
2ae9cb6bd4
1 changed files with 1 additions and 2 deletions
|
@ -21,7 +21,6 @@
|
||||||
.global _start
|
.global _start
|
||||||
|
|
||||||
.global _rambase
|
.global _rambase
|
||||||
.global __ramvec
|
|
||||||
.global _ramvec
|
.global _ramvec
|
||||||
.global _ramstart
|
.global _ramstart
|
||||||
.global _ramend
|
.global _ramend
|
||||||
|
@ -121,7 +120,7 @@ L0:
|
||||||
DBG_PUTC('B')
|
DBG_PUTC('B')
|
||||||
|
|
||||||
/* Copy command line from beginning of RAM (+16) to end of bss */
|
/* Copy command line from beginning of RAM (+16) to end of bss */
|
||||||
movel #__ramvec, %d7
|
movel #CONFIG_VECTORBASE, %d7
|
||||||
addl #16, %d7
|
addl #16, %d7
|
||||||
moveal %d7, %a0
|
moveal %d7, %a0
|
||||||
moveal #_ebss, %a1
|
moveal #_ebss, %a1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue