diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-01-12 23:29:19 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-01-12 23:29:19 -0500 |
commit | c7b16efb7d0c7fce218b2cdafa2432c5fbf57314 (patch) | |
tree | b82e0aa1c50b9d0bf358b0c2050695e2c8094748 /arch/sh/boot/compressed/misc.c | |
parent | 644755e7867710a23e6243dcc69cfc071985f560 (diff) |
sh: Add support for LZO-compressed kernels.
Plugs in LZO along with the others.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boot/compressed/misc.c')
-rw-r--r-- | arch/sh/boot/compressed/misc.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sh/boot/compressed/misc.c b/arch/sh/boot/compressed/misc.c index b51b1fc4baae..4b319e9e4f88 100644 --- a/arch/sh/boot/compressed/misc.c +++ b/arch/sh/boot/compressed/misc.c | |||
@@ -62,6 +62,10 @@ static unsigned long free_mem_end_ptr; | |||
62 | #include "../../../../lib/decompress_unlzma.c" | 62 | #include "../../../../lib/decompress_unlzma.c" |
63 | #endif | 63 | #endif |
64 | 64 | ||
65 | #ifdef CONFIG_KERNEL_LZO | ||
66 | #include "../../../../lib/decompress_unlzo.c" | ||
67 | #endif | ||
68 | |||
65 | #ifdef CONFIG_SH_STANDARD_BIOS | 69 | #ifdef CONFIG_SH_STANDARD_BIOS |
66 | size_t strlen(const char *s) | 70 | size_t strlen(const char *s) |
67 | { | 71 | { |