diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2010-05-26 23:27:12 +0200 |
---|---|---|
committer | Martin Schwidefsky <sky@mschwide.boeblingen.de.ibm.com> | 2010-05-26 23:27:10 +0200 |
commit | cdf566498d80709dedab826d068a9ea9d438320a (patch) | |
tree | c27f8c3dc5c2951c1cc4ebb14f53daeda028427c /arch/s390/boot/compressed/misc.c | |
parent | cf9daf4a735acaa5ff5967bb1b3a5e3b3578c32a (diff) | |
download | talos-op-linux-cdf566498d80709dedab826d068a9ea9d438320a.tar.gz talos-op-linux-cdf566498d80709dedab826d068a9ea9d438320a.zip |
[S390] Add support for LZO-compressed kernels.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/boot/compressed/misc.c')
-rw-r--r-- | arch/s390/boot/compressed/misc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/s390/boot/compressed/misc.c b/arch/s390/boot/compressed/misc.c index 14e0479d3888..0851eb1e919e 100644 --- a/arch/s390/boot/compressed/misc.c +++ b/arch/s390/boot/compressed/misc.c @@ -50,6 +50,10 @@ static unsigned long free_mem_end_ptr; #include "../../../../lib/decompress_unlzma.c" #endif +#ifdef CONFIG_KERNEL_LZO +#include "../../../../lib/decompress_unlzo.c" +#endif + extern _sclp_print_early(const char *); int puts(const char *s) |