mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-09-08 09:08:05 -04:00
20 lines
197 B
Text
20 lines
197 B
Text
MEMORY
|
|
{
|
|
flash : ORIGIN = 0x00000000,
|
|
LENGTH = 0x00100000
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
stext = . ;
|
|
*(.text)
|
|
etext = . ;
|
|
} > flash
|
|
.data :
|
|
{
|
|
*(.data)
|
|
edata = . ;
|
|
} > flash
|
|
}
|