Changeset ae8d7b0 in mainline for boot/arch/riscv64/_link.ld.in


Ignore:
Timestamp:
2017-08-21T18:23:39Z (7 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
c58441d
Parents:
fdc29300
Message:

riscv64: update to the latest Privileged Architecture specification (1.10)

File:
1 edited

Legend:

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

    rfdc29300 rae8d7b0  
     1#include <arch/arch.h>
     2
    13ENTRY(start)
    24
    35SECTIONS {
     6        . = PHYSMEM_START;
     7       
    48        .text : {
    59                *(BOOTSTRAP);
    610                *(.text);
    711        }
     12       
     13        . = ALIGN(0x1000);
     14        .htif : {
     15                htif_page = .;
     16                *(.htif)
     17        }
     18        . = ALIGN(0x1000);
     19       
     20        . = ALIGN(0x1000);
     21        .pt : {
     22                pt_page = .;
     23                *(.pt)
     24        }
     25        . = ALIGN(0x1000);
    826       
    927        .data : {
Note: See TracChangeset for help on using the changeset viewer.