mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
Make lzma-loader sdram mapping configurable (#1169)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6598 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -96,7 +96,10 @@ static __inline__ unsigned char get_byte(void)
|
||||
return read_byte(0, &buffer, &fake), *buffer;
|
||||
}
|
||||
|
||||
static char *buffer = (char *)0x80C00000;
|
||||
/* This puts lzma workspace 128k below RAM end.
|
||||
* That should be enough for both lzma and stack
|
||||
*/
|
||||
static char *buffer = (char *)(RAMSTART + RAMSIZE - 0x00020000);
|
||||
extern char lzma_start[];
|
||||
extern char lzma_end[];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user