Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=ed3174d93c342b8b2eeba6bbd124707d55304a7b
Commit:     ed3174d93c342b8b2eeba6bbd124707d55304a7b
Parent:     3befce8f0f79be8322aba885ed052b8ad927913d
Author:     Marc Gauthier <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 23 16:40:24 2007 -0700
Committer:  Chris Zankel <[EMAIL PROTECTED]>
CommitDate: Wed Feb 13 17:15:34 2008 -0800

    [XTENSA] adjust boot linker script start addresses
    
    Move boot-redboot load address from 0xD0200000 to 0xD1000000
    to make space for larger kernel images, in particular those with
    an embedded initramfs filesystem.
    Also properly set the ELF start address in boot-elf images so
    that PC need not be set manually when loading them using GDB.
    
    Signed-off-by: Marc Gauthier <[EMAIL PROTECTED]>
---
 arch/xtensa/boot/boot-elf/boot.ld     |    1 +
 arch/xtensa/boot/boot-redboot/boot.ld |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/arch/xtensa/boot/boot-elf/boot.ld 
b/arch/xtensa/boot/boot-elf/boot.ld
index 4ab06a0..e33855c 100644
--- a/arch/xtensa/boot/boot-elf/boot.ld
+++ b/arch/xtensa/boot/boot-elf/boot.ld
@@ -1,4 +1,5 @@
 OUTPUT_ARCH(xtensa)
+ENTRY(_ResetVector)
 
 SECTIONS
 {
diff --git a/arch/xtensa/boot/boot-redboot/boot.ld 
b/arch/xtensa/boot/boot-redboot/boot.ld
index 65b7264..774db20 100644
--- a/arch/xtensa/boot/boot-redboot/boot.ld
+++ b/arch/xtensa/boot/boot-redboot/boot.ld
@@ -2,7 +2,7 @@ OUTPUT_ARCH(xtensa)
 
 SECTIONS
 {
-       .start 0xD0200000 : { *(.start) }
+       .start 0xD1000000 : { *(.start) }
 
        .text :
        {
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to