mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-11 06:38:26 +02:00
a238a32fc9
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1236 3c298f89-4303-0410-b956-a3cf2f4a3e73
42 lines
566 B
Plaintext
42 lines
566 B
Plaintext
OUTPUT_FORMAT("@@OUTPUT_FORMAT@@")
|
|
OUTPUT_ARCH(mips)
|
|
ENTRY(tikernelunzip)
|
|
SECTIONS
|
|
{
|
|
|
|
/* Allocate memory space on top of kernel bss space */
|
|
. = _fbss;
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.rodata)
|
|
*(.rodata1)
|
|
*(.gnu.warning)
|
|
*(.text.init)
|
|
*(.data.init)
|
|
}
|
|
|
|
.data :
|
|
{
|
|
*(*)
|
|
}
|
|
|
|
bss :
|
|
{
|
|
inflate_bss_start = .;
|
|
*(.dynbss)
|
|
*(.bss)
|
|
*(COMMON)
|
|
*(.sbss)
|
|
*(.scommon)
|
|
inflate_bss_end = .;
|
|
. = ALIGN (0x8000);
|
|
inflate_slide_window = .;
|
|
. += 0x8000; /* slide window is 8000h */
|
|
inflate_free_memory_start = .;
|
|
}
|
|
|
|
|
|
|
|
}
|