Changeset d969a9a in mainline for boot/arch/arm32/_link.ld.in


Ignore:
Timestamp:
2010-06-23T18:57:53Z (15 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
21ee6ad4
Parents:
f4660690
Message:

Link gta02 boot stage to the proper base address.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/arm32/_link.ld.in

    rf4660690 rd969a9a  
     1#include <arch/arch.h>
     2
    13ENTRY(start)
    24
    35SECTIONS {
    4         . = 0x0000;
     6        . = BOOT_BASE;
    57        .text : {
    68                *(BOOTSTRAP);
    79                *(.text);
    810        }
    9         . = 0x8000;
     11        . = BOOT_BASE + 0x8000;
    1012        .data : {
    1113                *(BOOTPT);      /* bootstrap page table */
Note: See TracChangeset for help on using the changeset viewer.