summaryrefslogtreecommitdiff
path: root/target/linux/generic-2.6/image/lzma-loader/src/decompress.c
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2008-03-27 15:51:02 +0000
committerFlorian Fainelli <florian@openwrt.org>2008-03-27 15:51:02 +0000
commit52c65355eae472b13caa39f2dc915563f9e82784 (patch)
tree00fe29a52c2a9edc2fc28d65a429e96f6493e747 /target/linux/generic-2.6/image/lzma-loader/src/decompress.c
parente9c19c7de9578ea171880d8e650170582f20c579 (diff)
downloadmtk-20170518-52c65355eae472b13caa39f2dc915563f9e82784.zip
mtk-20170518-52c65355eae472b13caa39f2dc915563f9e82784.tar.gz
mtk-20170518-52c65355eae472b13caa39f2dc915563f9e82784.tar.bz2
Revert [10668] was accidental
SVN-Revision: 10669
Diffstat (limited to 'target/linux/generic-2.6/image/lzma-loader/src/decompress.c')
-rw-r--r--target/linux/generic-2.6/image/lzma-loader/src/decompress.c3
1 files changed, 0 insertions, 3 deletions
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
--- 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 */
- printf("Decompressing kernel\n");
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 */
- printf("Jumping !\n");
((void (*)(int a0, int a1, int a2, int a3)) KERNEL_ENTRY)(arg0, arg1, arg2, arg3);
}
- printf("Failed to decompress !\n");
}