-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 183055 b: refs/heads/master c: 9f33be2 h: refs/heads/master i: 183053: cd67f9a 183051: 00a9df1 183047: 5361fd6 183039: d334c03 v: v3
- Loading branch information
Russell King
committed
Feb 25, 2010
1 parent
aedd831
commit 9358147
Showing
278 changed files
with
12,021 additions
and
1,568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: eed18b5fa4d297c681b00144e8c6942dd35d39a7 | ||
refs/heads/master: 9f33be2c3a80bdc2cc08342dd77fac87652e0548 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#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 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_LZO | ||
#include "../../../../lib/decompress_unlzo.c" | ||
#endif | ||
|
||
void do_decompress(u8 *input, int len, u8 *output, void (*error)(char *x)) | ||
{ | ||
decompress(input, len, NULL, NULL, output, NULL, error); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.