1
0
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:
nbd
2005-07-25 09:34:53 +00:00
parent 72936728ab
commit 3bc2cd012d
6 changed files with 879 additions and 1324 deletions

View File

@@ -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 = .;
}
}