projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
lua: Fixed some cross-platform issues for PPC (and probably other architectures)
[openwrt.git]
/
target
/
linux
/
generic-2.6
/
image
/
lzma-loader
/
src
/
decompress.c
diff --git
a/target/linux/generic-2.6/image/lzma-loader/src/decompress.c
b/target/linux/generic-2.6/image/lzma-loader/src/decompress.c
index
e31f418
..
45ac509
100644
(file)
--- a/
target/linux/generic-2.6/image/lzma-loader/src/decompress.c
+++ b/
target/linux/generic-2.6/image/lzma-loader/src/decompress.c
@@
-145,7
+145,6
@@
void entry(unsigned long icache_size, unsigned long icache_lsize,
get_byte();
/* decompress kernel */
get_byte();
/* decompress kernel */
- printf("Decompressing kernel\n");
if ((i = LzmaDecode(&vs, &callback,
(unsigned char*)KERNEL_ENTRY, osize, &osize)) == LZMA_RESULT_OK)
{
if ((i = LzmaDecode(&vs, &callback,
(unsigned char*)KERNEL_ENTRY, osize, &osize)) == LZMA_RESULT_OK)
{
@@
-153,8
+152,6
@@
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 */
- printf("Jumping !\n");
((void (*)(int a0, int a1, int a2, int a3)) KERNEL_ENTRY)(arg0, arg1, arg2, arg3);
}
((void (*)(int a0, int a1, int a2, int a3)) KERNEL_ENTRY)(arg0, arg1, arg2, arg3);
}
- printf("Failed to decompress !\n");
}
}
This page took
0.023792 seconds
and
4
git commands to generate.