1 #ifndef __XZ_CONFIG_H__
2 #define __XZ_CONFIG_H__
5 * most of this is copied from lib/xz/xz_private.h, we can't use their defines
6 * since the boot wrapper is not built in the same environment as the rest of
13 static inline uint32_t swab32p(void *p)
20 #ifdef __LITTLE_ENDIAN__
21 #define get_le32(p) (*((uint32_t *) (p)))
23 #define get_le32(p) swab32p(p)
26 #define memeq(a, b, size) (memcmp(a, b, size) == 0)
27 #define memzero(buf, size) memset(buf, 0, size)
29 /* prevent the inclusion of the xz-preboot MM headers */
31 #define memmove memmove
32 #define XZ_EXTERN static
34 /* xz.h needs to be included directly since we need enum xz_mode */
35 #include "../../../include/linux/xz.h"