decompress_unxz.c (34069d12e239ae8f36dd96c378e4622fb1c42a76) decompress_unxz.c (cf8e8658100d4eae80ce9b21f7a81cb024dd5057)
1/*
2 * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */

--- 119 unchanged lines hidden (view full) ---

128# define XZ_DEC_X86
129#endif
130#ifdef CONFIG_PPC
131# define XZ_DEC_POWERPC
132#endif
133#ifdef CONFIG_ARM
134# define XZ_DEC_ARM
135#endif
1/*
2 * Wrapper for decompressing XZ-compressed kernel, initramfs, and initrd
3 *
4 * Author: Lasse Collin <lasse.collin@tukaani.org>
5 *
6 * This file has been put into the public domain.
7 * You can do whatever you want with this file.
8 */

--- 119 unchanged lines hidden (view full) ---

128# define XZ_DEC_X86
129#endif
130#ifdef CONFIG_PPC
131# define XZ_DEC_POWERPC
132#endif
133#ifdef CONFIG_ARM
134# define XZ_DEC_ARM
135#endif
136#ifdef CONFIG_IA64
137# define XZ_DEC_IA64
138#endif
139#ifdef CONFIG_SPARC
140# define XZ_DEC_SPARC
141#endif
142
143/*
144 * This will get the basic headers so that memeq() and others
145 * can be defined.
146 */

--- 263 unchanged lines hidden ---
136#ifdef CONFIG_SPARC
137# define XZ_DEC_SPARC
138#endif
139
140/*
141 * This will get the basic headers so that memeq() and others
142 * can be defined.
143 */

--- 263 unchanged lines hidden ---