86277d5949
- Add missing files - Add Makefile target - Change image base - Style fix Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
32 lines
458 B
Text
32 lines
458 B
Text
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
__stext = . ;
|
|
__text = .;
|
|
*(.text.startup)
|
|
*(.text)
|
|
__etext = . ;
|
|
}
|
|
|
|
.rodata :
|
|
{
|
|
*(.rodata)
|
|
}
|
|
.data :
|
|
|
|
{
|
|
__sdata = . ;
|
|
___data_start = . ;
|
|
*(.data.*)
|
|
}
|
|
.bss :
|
|
{
|
|
. = ALIGN(0x4) ;
|
|
__sbss = . ;
|
|
*(.bss*)
|
|
. = ALIGN(0x4) ;
|
|
__ebss = . ;
|
|
__end = . ;
|
|
}
|
|
}
|