X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=target%2Flinux%2Fgeneric-2.6%2Fimage%2Flzma-loader%2Fsrc%2Fdecompress.c;h=45ac509cdc49a46c196aab591889195ffa28cf96;hb=9a4eb9867e40c7ba350964e5feced1b4f7186f63;hp=e31f4183dbc0b215a6ac9bb4afe9bfaffb3d92da;hpb=14e96a8a42a27f36a7e53bc87acdb134b1fbdbd8;p=openwrt-10.03%2F.git 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 e31f4183d..45ac509cd 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"); }