Index: MAKEALL =================================================================== RCS file: /cvsroot/u-boot/u-boot/MAKEALL,v retrieving revision 1.1.1.1 diff -u -b -B -w -p -u -r1.1.1.1 MAKEALL --- MAKEALL 2 Nov 2002 23:20:03 -0000 1.1.1.1 +++ MAKEALL 4 Nov 2002 11:41:05 -0000 @@ -117,7 +117,7 @@ build_target() { ${MAKE} distclean >/dev/null ${MAKE} ${target}_config ${MAKE} all 2>&1 >LOG/$target.MAKELOG | tee LOG/$target.ERR - ${CROSS_COMPILE:-ppc_8xx-}size u-boot | tee -a LOG/$target.MAKELOG + ${CROSS_COMPILE}size ppcboot | tee -a LOG/$target.MAKELOG } #----------------------------------------------------------------------- Index: Makefile =================================================================== RCS file: /cvsroot/u-boot/u-boot/Makefile,v retrieving revision 1.1.1.1 diff -u -b -B -w -p -u -r1.1.1.1 Makefile --- Makefile 2 Nov 2002 23:21:03 -0000 1.1.1.1 +++ Makefile 4 Nov 2002 11:41:06 -0000 @@ -72,7 +72,7 @@ ifeq ($(ARCH),ppc) CROSS_COMPILE = ppc_8xx- endif ifeq ($(ARCH),arm) -CROSS_COMPILE = arm_920TDI- +CROSS_COMPILE = arm-linux- endif endif endif Index: common/cmd_bootm.c =================================================================== RCS file: /cvsroot/u-boot/u-boot/common/cmd_bootm.c,v retrieving revision 1.1.1.1 diff -u -b -B -w -p -u -r1.1.1.1 cmd_bootm.c --- common/cmd_bootm.c 3 Nov 2002 00:06:22 -0000 1.1.1.1 +++ common/cmd_bootm.c 4 Nov 2002 11:41:17 -0000 @@ -884,7 +884,15 @@ int gunzip(void *dst, int dstlen, unsign r = inflateInit2(&s, -MAX_WBITS); if (r != Z_OK) { - printf ("Error: inflateInit2() returned %d\n", r); + printf ("Error: inflateInit2() returned %d (", r); + switch (r) { + case Z_ERRNO: printf("ERRNO"); break; + case Z_STREAM_ERROR: printf("STREAM_ERROR"); break; + case Z_DATA_ERROR: printf("DATA_ERROR"); break; + case Z_MEM_ERROR: printf("MEM_ERROR"); break; + case Z_BUF_ERROR: printf("BUF_ERROR"); break; + } + printf(")\n"); return (-1); } s.next_in = src + i;