mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-26 19:40:37 +02:00
66056a2a29
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1557 3c298f89-4303-0410-b956-a3cf2f4a3e73
35 lines
424 B
Plaintext
35 lines
424 B
Plaintext
OUTPUT_FORMAT("@@OUTPUT_FORMAT@@")
|
|
OUTPUT_ARCH(mips)
|
|
ENTRY(tikernelunzip)
|
|
SECTIONS
|
|
{
|
|
|
|
/* Allocate memory space on top of kernel bss space */
|
|
. = 0x94200000;
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.rodata)
|
|
*(.rodata1)
|
|
*(.gnu.warning)
|
|
*(.text.init)
|
|
*(.data.init)
|
|
}
|
|
|
|
.data :
|
|
{
|
|
*(*)
|
|
}
|
|
|
|
.bss :
|
|
{
|
|
*(.dynbss)
|
|
*(COMMON)
|
|
*(.bss)
|
|
*(.sbss)
|
|
*(.scommon)
|
|
. = ALIGN (0x8000);
|
|
workspace = .;
|
|
}
|
|
}
|