[PATCH] ppc64 boot: move gunzip function before use
Move the gunzip function up. Signed-off-by: Olaf Hering <olh@suse.de> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Anton Blanchard <anton@samba.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
8a76baf020
commit
6bcc20b5ad
1 changed files with 57 additions and 58 deletions
|
@ -17,7 +17,6 @@
|
||||||
#include "prom.h"
|
#include "prom.h"
|
||||||
#include "zlib.h"
|
#include "zlib.h"
|
||||||
|
|
||||||
static void gunzip(void *, int, unsigned char *, int *);
|
|
||||||
extern void flush_cache(void *, unsigned long);
|
extern void flush_cache(void *, unsigned long);
|
||||||
|
|
||||||
|
|
||||||
|
@ -56,6 +55,63 @@ typedef void (*kernel_entry_t)( unsigned long,
|
||||||
|
|
||||||
static unsigned long claim_base;
|
static unsigned long claim_base;
|
||||||
|
|
||||||
|
#define HEAD_CRC 2
|
||||||
|
#define EXTRA_FIELD 4
|
||||||
|
#define ORIG_NAME 8
|
||||||
|
#define COMMENT 0x10
|
||||||
|
#define RESERVED 0xe0
|
||||||
|
|
||||||
|
static void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp)
|
||||||
|
{
|
||||||
|
z_stream s;
|
||||||
|
int r, i, flags;
|
||||||
|
|
||||||
|
/* skip header */
|
||||||
|
i = 10;
|
||||||
|
flags = src[3];
|
||||||
|
if (src[2] != Z_DEFLATED || (flags & RESERVED) != 0) {
|
||||||
|
printf("bad gzipped data\n\r");
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
if ((flags & EXTRA_FIELD) != 0)
|
||||||
|
i = 12 + src[10] + (src[11] << 8);
|
||||||
|
if ((flags & ORIG_NAME) != 0)
|
||||||
|
while (src[i++] != 0)
|
||||||
|
;
|
||||||
|
if ((flags & COMMENT) != 0)
|
||||||
|
while (src[i++] != 0)
|
||||||
|
;
|
||||||
|
if ((flags & HEAD_CRC) != 0)
|
||||||
|
i += 2;
|
||||||
|
if (i >= *lenp) {
|
||||||
|
printf("gunzip: ran out of data in header\n\r");
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (zlib_inflate_workspacesize() > sizeof(scratch)) {
|
||||||
|
printf("gunzip needs more mem\n");
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
memset(&s, 0, sizeof(s));
|
||||||
|
s.workspace = scratch;
|
||||||
|
r = zlib_inflateInit2(&s, -MAX_WBITS);
|
||||||
|
if (r != Z_OK) {
|
||||||
|
printf("inflateInit2 returned %d\n\r", r);
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
s.next_in = src + i;
|
||||||
|
s.avail_in = *lenp - i;
|
||||||
|
s.next_out = dst;
|
||||||
|
s.avail_out = dstlen;
|
||||||
|
r = zlib_inflate(&s, Z_FULL_FLUSH);
|
||||||
|
if (r != Z_OK && r != Z_STREAM_END) {
|
||||||
|
printf("inflate returned %d msg: %s\n\r", r, s.msg);
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
*lenp = s.next_out - (unsigned char *) dst;
|
||||||
|
zlib_inflateEnd(&s);
|
||||||
|
}
|
||||||
|
|
||||||
static unsigned long try_claim(unsigned long size)
|
static unsigned long try_claim(unsigned long size)
|
||||||
{
|
{
|
||||||
unsigned long addr = 0;
|
unsigned long addr = 0;
|
||||||
|
@ -213,60 +269,3 @@ void start(unsigned long a1, unsigned long a2, void *promptr)
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
#define HEAD_CRC 2
|
|
||||||
#define EXTRA_FIELD 4
|
|
||||||
#define ORIG_NAME 8
|
|
||||||
#define COMMENT 0x10
|
|
||||||
#define RESERVED 0xe0
|
|
||||||
|
|
||||||
static void gunzip(void *dst, int dstlen, unsigned char *src, int *lenp)
|
|
||||||
{
|
|
||||||
z_stream s;
|
|
||||||
int r, i, flags;
|
|
||||||
|
|
||||||
/* skip header */
|
|
||||||
i = 10;
|
|
||||||
flags = src[3];
|
|
||||||
if (src[2] != Z_DEFLATED || (flags & RESERVED) != 0) {
|
|
||||||
printf("bad gzipped data\n\r");
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
if ((flags & EXTRA_FIELD) != 0)
|
|
||||||
i = 12 + src[10] + (src[11] << 8);
|
|
||||||
if ((flags & ORIG_NAME) != 0)
|
|
||||||
while (src[i++] != 0)
|
|
||||||
;
|
|
||||||
if ((flags & COMMENT) != 0)
|
|
||||||
while (src[i++] != 0)
|
|
||||||
;
|
|
||||||
if ((flags & HEAD_CRC) != 0)
|
|
||||||
i += 2;
|
|
||||||
if (i >= *lenp) {
|
|
||||||
printf("gunzip: ran out of data in header\n\r");
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (zlib_inflate_workspacesize() > sizeof(scratch)) {
|
|
||||||
printf("gunzip needs more mem\n");
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
memset(&s, 0, sizeof(s));
|
|
||||||
s.workspace = scratch;
|
|
||||||
r = zlib_inflateInit2(&s, -MAX_WBITS);
|
|
||||||
if (r != Z_OK) {
|
|
||||||
printf("inflateInit2 returned %d\n\r", r);
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
s.next_in = src + i;
|
|
||||||
s.avail_in = *lenp - i;
|
|
||||||
s.next_out = dst;
|
|
||||||
s.avail_out = dstlen;
|
|
||||||
r = zlib_inflate(&s, Z_FULL_FLUSH);
|
|
||||||
if (r != Z_OK && r != Z_STREAM_END) {
|
|
||||||
printf("inflate returned %d msg: %s\n\r", r, s.msg);
|
|
||||||
exit();
|
|
||||||
}
|
|
||||||
*lenp = s.next_out - (unsigned char *) dst;
|
|
||||||
zlib_inflateEnd(&s);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue