[xtensa-cvscommit] linux/arch/xtensa/boot/images Makefile,1.2,1.3
Brought to you by:
zankel
|
From: <za...@us...> - 2003-05-02 22:53:07
|
Update of /cvsroot/xtensa/linux/arch/xtensa/boot/images In directory sc8-pr-cvs1:/tmp/cvs-serv3499/images Modified Files: Makefile Log Message: Added support for compressed kernels. Removed targets 'Image' and 'Image.initrd' for RedBoot. Use 'make zImage' and 'make zImage.initrd', instead. Index: Makefile =================================================================== RCS file: /cvsroot/xtensa/linux/arch/xtensa/boot/images/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 28 Apr 2003 23:21:10 -0000 1.2 --- Makefile 2 May 2003 22:53:02 -0000 1.3 *************** *** 3,16 **** # - include $(TOPDIR)/Rules.make ! vmlinux.bin: $(TOPDIR)/vmlinux $(OBJCOPY) -S -O binary \ -R .ResetVector.text \ -R .WindowVectors.literal \ ! -R .DebugInterruptVector.literal \ ! -R .DebugInterruptVector.text \ -R .UserExceptionVector.literal \ - -R .KernelExceptionVector.literal \ -R .DoubleExceptionVector.literal \ -R .xt.insn \ --- 3,13 ---- # ! vmlinux: $(TOPDIR)/vmlinux $(OBJCOPY) -S -O binary \ -R .ResetVector.text \ -R .WindowVectors.literal \ ! -R .DebugInterruptVector.* \ -R .UserExceptionVector.literal \ -R .DoubleExceptionVector.literal \ -R .xt.insn \ *************** *** 19,35 **** $(TOPDIR)/vmlinux $@ ! vmlinux.bin.gz: $(TOPDIR)/vmlinux $(OBJCOPY) -S -O binary \ -R .ResetVector.text \ -R .WindowVectors.literal \ -R .DebugInterruptVector* \ -R .debug* \ -R .xt.insn \ -R .comment \ ! -R .stab* \ $(TOPDIR)/vmlinux vmlinux ! gzip -vf9 vmlinux.bin clean: rm -f Image* zImage* vmlinux* --- 16,37 ---- $(TOPDIR)/vmlinux $@ ! vmlinux.gz: $(TOPDIR)/vmlinux $(OBJCOPY) -S -O binary \ -R .ResetVector.text \ -R .WindowVectors.literal \ -R .DebugInterruptVector* \ + -R .UserExceptionVector.literal \ + -R .KernelExceptionVector.literal \ + -R .DoubleExceptionVector.literal \ -R .debug* \ -R .xt.insn \ -R .comment \ ! --strip-all \ $(TOPDIR)/vmlinux vmlinux ! gzip -vf9 vmlinux clean: rm -f Image* zImage* vmlinux* + + include $(TOPDIR)/Rules.make |