mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
add ar7 lzma loader
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1557 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -5,15 +5,15 @@ ENTRY(tikernelunzip)
|
||||
{
|
||||
|
||||
/* Allocate memory space on top of kernel bss space */
|
||||
. = _fbss;
|
||||
. = 0x94200000;
|
||||
.text :
|
||||
{
|
||||
*(.text)
|
||||
*(.rodata)
|
||||
*(.rodata1)
|
||||
*(.gnu.warning)
|
||||
*(.text.init)
|
||||
*(.data.init)
|
||||
*(.rodata)
|
||||
*(.rodata1)
|
||||
*(.gnu.warning)
|
||||
*(.text.init)
|
||||
*(.data.init)
|
||||
}
|
||||
|
||||
.data :
|
||||
@@ -21,21 +21,14 @@ ENTRY(tikernelunzip)
|
||||
*(*)
|
||||
}
|
||||
|
||||
bss :
|
||||
.bss :
|
||||
{
|
||||
inflate_bss_start = .;
|
||||
*(.dynbss)
|
||||
*(.bss)
|
||||
*(COMMON)
|
||||
*(.sbss)
|
||||
*(.scommon)
|
||||
inflate_bss_end = .;
|
||||
*(COMMON)
|
||||
*(.bss)
|
||||
*(.sbss)
|
||||
*(.scommon)
|
||||
. = ALIGN (0x8000);
|
||||
inflate_slide_window = .;
|
||||
. += 0x8000; /* slide window is 8000h */
|
||||
inflate_free_memory_start = .;
|
||||
workspace = .;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user