~ubuntu-branches/ubuntu/precise/linux-lowlatency/precise

« back to all changes in this revision

Viewing changes to arch/m68k/kernel/vmlinux-sun3.lds

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-tz023xykf0i6eosh
Tags: upstream-3.2.0
ImportĀ upstreamĀ versionĀ 3.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ld script to make m68k Linux kernel */
 
2
 
 
3
#include <asm-generic/vmlinux.lds.h>
 
4
#include <asm/page.h>
 
5
#include <asm/thread_info.h>
 
6
 
 
7
OUTPUT_FORMAT("elf32-m68k", "elf32-m68k", "elf32-m68k")
 
8
OUTPUT_ARCH(m68k)
 
9
ENTRY(_start)
 
10
jiffies = jiffies_64 + 4;
 
11
SECTIONS
 
12
{
 
13
  . = 0xE002000;
 
14
  _text = .;                    /* Text and read-only data */
 
15
  .text : {
 
16
        HEAD_TEXT
 
17
        TEXT_TEXT
 
18
        SCHED_TEXT
 
19
        LOCK_TEXT
 
20
        *(.fixup)
 
21
        *(.gnu.warning)
 
22
        } :text = 0x4e75
 
23
        RODATA
 
24
 
 
25
  _etext = .;                   /* End of text section */
 
26
 
 
27
  EXCEPTION_TABLE(16) :data
 
28
  _sdata = .;                   /* Start of rw data section */
 
29
  RW_DATA_SECTION(16, PAGE_SIZE, THREAD_SIZE) :data
 
30
  /* End of data goes *here* so that freeing init code works properly. */
 
31
  _edata = .;
 
32
  NOTES
 
33
 
 
34
  /* will be freed after init */
 
35
  . = ALIGN(PAGE_SIZE); /* Init code and data */
 
36
__init_begin = .;
 
37
        INIT_TEXT_SECTION(PAGE_SIZE)
 
38
        INIT_DATA_SECTION(16)
 
39
        .m68k_fixup : {
 
40
                __start_fixup = .;
 
41
                *(.m68k_fixup)
 
42
                __stop_fixup = .;
 
43
        }
 
44
        . = ALIGN(PAGE_SIZE);
 
45
        __init_end = .;
 
46
 
 
47
  BSS_SECTION(0, 0, 0)
 
48
 
 
49
  _end = . ;
 
50
 
 
51
  STABS_DEBUG
 
52
 
 
53
  /* Sections to be discarded */
 
54
  DISCARDS
 
55
}