~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/board/freescale/m5208evbe/u-boot.lds

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (C) Copyright 2000
 
3
 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
 
4
 *
 
5
 * SPDX-License-Identifier:     GPL-2.0+
 
6
 */
 
7
 
 
8
OUTPUT_ARCH(m68k)
 
9
 
 
10
SECTIONS
 
11
{
 
12
  /* Read-only sections, merged into text segment: */
 
13
  .text      :
 
14
  {
 
15
    arch/m68k/cpu/mcf52x2/start.o               (.text*)
 
16
 
 
17
    . = DEFINED(env_offset) ? env_offset : .;
 
18
    common/env_embedded.o       (.text*)
 
19
 
 
20
    *(.text*)
 
21
  }
 
22
  _etext = .;
 
23
  PROVIDE (etext = .);
 
24
  .rodata    :
 
25
  {
 
26
    *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
 
27
  }
 
28
 
 
29
  /* Read-write section, merged into data segment: */
 
30
  . = (. + 0x00FF) & 0xFFFFFF00;
 
31
  _erotext = .;
 
32
  PROVIDE (erotext = .);
 
33
 
 
34
  .reloc   :
 
35
  {
 
36
    __got_start = .;
 
37
    KEEP(*(.got))
 
38
    __got_end = .;
 
39
    _GOT2_TABLE_ = .;
 
40
    KEEP(*(.got2))
 
41
    _FIXUP_TABLE_ = .;
 
42
    KEEP(*(.fixup))
 
43
  }
 
44
  __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >>2;
 
45
  __fixup_entries = (. - _FIXUP_TABLE_)>>2;
 
46
 
 
47
  .data    :
 
48
  {
 
49
    *(.data*)
 
50
    *(.sdata*)
 
51
  }
 
52
  _edata  =  .;
 
53
  PROVIDE (edata = .);
 
54
 
 
55
  . = .;
 
56
 
 
57
  . = ALIGN(4);
 
58
  .u_boot_list : {
 
59
        KEEP(*(SORT(.u_boot_list*)));
 
60
  }
 
61
 
 
62
  . = .;
 
63
  __start___ex_table = .;
 
64
  __ex_table : { *(__ex_table) }
 
65
  __stop___ex_table = .;
 
66
 
 
67
  . = ALIGN(256);
 
68
  __init_begin = .;
 
69
  .text.init : { *(.text.init) }
 
70
  .data.init : { *(.data.init) }
 
71
  . = ALIGN(256);
 
72
  __init_end = .;
 
73
 
 
74
  __bss_start = .;
 
75
  .bss (NOLOAD)       :
 
76
  {
 
77
   _sbss = .;
 
78
   *(.sbss*)
 
79
   *(.bss*)
 
80
   *(COMMON)
 
81
   . = ALIGN(4);
 
82
   _ebss = .;
 
83
  }
 
84
  __bss_end = . ;
 
85
  PROVIDE (end = .);
 
86
}