source: svn/branches/kctv/newcon3bcm2_21bu/dst/build/ld.script @ 43

Last change on this file since 43 was 2, checked in by phkim, 11 years ago

1.phkim

  1. revision copy newcon3sk r27
  • Property svn:executable set to *
File size: 650 bytes
Line 
1OUTPUT_ARCH(mips)
2ENTRY(start)
3
4MEMORY
5{
6        RAM_TEXT(RW)    : ORIGIN = 0x80016000, LENGTH = 0x01000000
7}
8
9SECTIONS
10{
11        .text :
12        {
13                _ftext = .;
14                *(.text)
15                *(.rodata)
16                *(.rodata*)
17                *(.fini)
18                *(.reginfo)
19                . = ALIGN(16);
20        } AT > RAM_TEXT
21        _etext = .;
22        etext = .;
23       
24        .data :
25        {
26                _fdata = .;
27                *(.data)
28                SORT(CONSTRUCTORS)
29                . = ALIGN(4);
30        } AT > RAM_TEXT
31        _edata  =  .;
32        _fbss = .;
33        .sbss (NOLOAD) :
34        {
35                *(.sbss)
36                *(.scommon)
37                . = ALIGN(4);
38        } AT > RAM_TEXT
39       
40        .bss (NOLOAD) :
41        {
42                _bss_start = .;
43                *(.bss)
44                *(COMMON)
45                . = ALIGN(4);
46        } AT > RAM_TEXT
47       
48        . = ALIGN(4);
49        _end = .;
50        PROVIDE(_end = .);
51        end = .;
52        PROVIDE(end = .);
53        . = ALIGN(4);
54}
55
Note: See TracBrowser for help on using the repository browser.