projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
include: rearrange image.mk, indent, reorder, change some ifeq/ifneq tests
[openwrt.git]
/
target
/
linux
/
brcm-2.4
/
image
/
lzma-loader
/
src
/
decompress.c
diff --git
a/target/linux/brcm-2.4/image/lzma-loader/src/decompress.c
b/target/linux/brcm-2.4/image/lzma-loader/src/decompress.c
index
ec510e2
..
ce2876a
100644
(file)
--- a/
target/linux/brcm-2.4/image/lzma-loader/src/decompress.c
+++ b/
target/linux/brcm-2.4/image/lzma-loader/src/decompress.c
@@
-120,7
+120,9
@@
static __inline__ unsigned char get_byte(void)
/* should be the first function */
void entry(unsigned long icache_size, unsigned long icache_lsize,
/* should be the first function */
void entry(unsigned long icache_size, unsigned long icache_lsize,
- unsigned long dcache_size, unsigned long dcache_lsize)
+ unsigned long dcache_size, unsigned long dcache_lsize,
+ unsigned long fw_arg0, unsigned long fw_arg1,
+ unsigned long fw_arg2, unsigned long fw_arg3)
{
unsigned int i; /* temp value */
unsigned int lc; /* literal context bits */
{
unsigned int i; /* temp value */
unsigned int lc; /* literal context bits */
@@
-170,6
+172,8
@@
void entry(unsigned long icache_size, unsigned long icache_lsize,
blast_icache(icache_size, icache_lsize);
/* Jump to load address */
blast_icache(icache_size, icache_lsize);
/* Jump to load address */
- ((void (*)(void)) LOADADDR)();
+ ((void (*)(unsigned long, unsigned long, unsigned long,
+ unsigned long)) LOADADDR)(fw_arg0, fw_arg1, fw_arg2,
+ fw_arg3);
}
}
}
}
This page took
0.026656 seconds
and
4
git commands to generate.