1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

Revert [10668] was accidental

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10669 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian
2008-03-27 15:51:02 +00:00
parent 14e96a8a42
commit 9a4eb9867e
2 changed files with 2 additions and 5 deletions

View File

@@ -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");
}