51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #define _LINUX_STRING_H_
 | |
| 
 | |
| #include <linux/compiler.h>	/* for inline */
 | |
| #include <linux/types.h>	/* for size_t */
 | |
| #include <linux/stddef.h>	/* for NULL */
 | |
| #include <linux/linkage.h>
 | |
| #include <asm/string.h>
 | |
| 
 | |
| extern unsigned long free_mem_ptr;
 | |
| extern unsigned long free_mem_end_ptr;
 | |
| extern void error(char *);
 | |
| 
 | |
| #define STATIC static
 | |
| #define STATIC_RW_DATA	/* non-static please */
 | |
| 
 | |
| #define ARCH_HAS_DECOMP_WDOG
 | |
| 
 | |
| /* Diagnostic functions */
 | |
| #ifdef DEBUG
 | |
| #  define Assert(cond,msg) {if(!(cond)) error(msg);}
 | |
| #  define Trace(x) fprintf x
 | |
| #  define Tracev(x) {if (verbose) fprintf x ;}
 | |
| #  define Tracevv(x) {if (verbose>1) fprintf x ;}
 | |
| #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
 | |
| #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
 | |
| #else
 | |
| #  define Assert(cond,msg)
 | |
| #  define Trace(x)
 | |
| #  define Tracev(x)
 | |
| #  define Tracevv(x)
 | |
| #  define Tracec(c,x)
 | |
| #  define Tracecv(c,x)
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_KERNEL_GZIP
 | |
| #include "../../../../lib/decompress_inflate.c"
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_KERNEL_BZIP2
 | |
| #include "../../../../lib/decompress_bunzip2.c"
 | |
| #endif
 | |
| 
 | |
| #ifdef CONFIG_KERNEL_LZMA
 | |
| #include "../../../../lib/decompress_unlzma.c"
 | |
| #endif
 | |
| 
 | |
| void do_decompress(u8 *input, int len, u8 *output, void (*error)(char *x))
 | |
| {
 | |
|     decompress(input, len, NULL, NULL, output, NULL, error);
 | |
| }
 |