From e9c19c7de9578ea171880d8e650170582f20c579 Mon Sep 17 00:00:00 2001 From: Florian Fainelli Date: Thu, 27 Mar 2008 15:44:14 +0000 Subject: Create a dummy sit package for 2.4 kernelsq SVN-Revision: 10668 --- target/linux/generic-2.6/image/lzma-loader/src/decompress.c | 3 +++ 1 file changed, 3 insertions(+) (limited to '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 45ac509..e31f418 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,6 +145,7 @@ 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) { @@ -152,6 +153,8 @@ 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"); } -- cgit v1.1