misc.c (f43dc23d5ea91fca257be02138a255f02d98e806) | misc.c (50cfa79dcb91a7c40038b7a13b7e2242b541242f) |
---|---|
1/* 2 * arch/sh/boot/compressed/misc.c 3 * 4 * This is a collection of several routines from gzip-1.0.3 5 * adapted for Linux. 6 * 7 * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994 8 * --- 47 unchanged lines hidden (view full) --- 56#ifdef CONFIG_KERNEL_BZIP2 57#include "../../../../lib/decompress_bunzip2.c" 58#endif 59 60#ifdef CONFIG_KERNEL_LZMA 61#include "../../../../lib/decompress_unlzma.c" 62#endif 63 | 1/* 2 * arch/sh/boot/compressed/misc.c 3 * 4 * This is a collection of several routines from gzip-1.0.3 5 * adapted for Linux. 6 * 7 * malloc by Hannu Savolainen 1993 and Matthias Urlichs 1994 8 * --- 47 unchanged lines hidden (view full) --- 56#ifdef CONFIG_KERNEL_BZIP2 57#include "../../../../lib/decompress_bunzip2.c" 58#endif 59 60#ifdef CONFIG_KERNEL_LZMA 61#include "../../../../lib/decompress_unlzma.c" 62#endif 63 |
64#ifdef CONFIG_KERNEL_XZ 65#include "../../../../lib/decompress_unxz.c" 66#endif 67 |
|
64#ifdef CONFIG_KERNEL_LZO 65#include "../../../../lib/decompress_unlzo.c" 66#endif 67 68int puts(const char *s) 69{ 70 /* This should be updated to use the sh-sci routines */ 71 return 0; --- 63 unchanged lines hidden --- | 68#ifdef CONFIG_KERNEL_LZO 69#include "../../../../lib/decompress_unlzo.c" 70#endif 71 72int puts(const char *s) 73{ 74 /* This should be updated to use the sh-sci routines */ 75 return 0; --- 63 unchanged lines hidden --- |