aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/adm5120-2.6/image/lzma-loader/src/decompress.c
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2007-06-08 12:58:55 +0000
committerFlorian Fainelli <florian@openwrt.org>2007-06-08 12:58:55 +0000
commitf0776fe06ad1c9a787daecb89ccd97479a0a1235 (patch)
treef409643702fcbe509bbe2c1036e5516eb225061f /target/linux/adm5120-2.6/image/lzma-loader/src/decompress.c
parentec7df316638a6deeed9e4939ece9a63484b8ff18 (diff)
downloadmaster-187ad058-f0776fe06ad1c9a787daecb89ccd97479a0a1235.tar.gz
master-187ad058-f0776fe06ad1c9a787daecb89ccd97479a0a1235.tar.bz2
master-187ad058-f0776fe06ad1c9a787daecb89ccd97479a0a1235.zip
Resync adm5120 kernel config, lzma-loader fixes from Gabor
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7536 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/adm5120-2.6/image/lzma-loader/src/decompress.c')
-rw-r--r--target/linux/adm5120-2.6/image/lzma-loader/src/decompress.c17
1 files changed, 14 insertions, 3 deletions
diff --git a/target/linux/adm5120-2.6/image/lzma-loader/src/decompress.c b/target/linux/adm5120-2.6/image/lzma-loader/src/decompress.c
index f867e20dc5..ffc87ee0db 100644
--- a/target/linux/adm5120-2.6/image/lzma-loader/src/decompress.c
+++ b/target/linux/adm5120-2.6/image/lzma-loader/src/decompress.c
@@ -277,9 +277,20 @@ void decompress_entry(unsigned long reg_a0, unsigned long reg_a1,
(unsigned char*)LOADADDR, osize, &i);
#endif
if (res != LZMA_RESULT_OK) {
- print_str("failed, LzmaDecode error: ");
- print_hex(res);
- print_str("\n");
+ print_str("failed!\n");
+ print_str("LzmaDecode: ");
+ switch (res) {
+ case LZMA_RESULT_DATA_ERROR:
+ print_str("data error\n");
+ break;
+ case LZMA_RESULT_NOT_ENOUGH_MEM:
+ print_str("not enough memory\n");
+ break;
+ default:
+ print_str("unknown error, err=0x");
+ print_hex(res);
+ print_str("\n");
+ }
halt();
}