guowenxue
2020-08-21 cdf2904404c7510832f173a696e7f7c4febfded1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 
/***********************************************************************
 *        File:  key.lds
 *     Version:  1.0.0
 *   Copyright:  2011 (c) Guo Wenxue <guowenxue@gmail.com>
 * Description:  Cross tool link text, refer to u-boot.lds
 *   ChangeLog:  1, Release initial version on "Tue Mar 22 21:58:24 CST 2011"
 *
 ***********************************************************************/
 
OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
OUTPUT_ARCH(arm)
ENTRY(_start)
 
SECTIONS{
    . = 0x33000000;
    .text : {
        *(.text)
        *(.rodata)
    }
 
    .data ALIGN(4): {
        *(.data)
    }
 
    .bss ALIGN(4): {
        *(.bss)
    }
}