[xtensa-cvscommit] linux/arch/xtensa/boot Makefile,1.2,1.3
Brought to you by:
zankel
|
From: <za...@us...> - 2003-05-02 22:53:06
|
Update of /cvsroot/xtensa/linux/arch/xtensa/boot In directory sc8-pr-cvs1:/tmp/cvs-serv3499 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/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 23 Oct 2002 20:53:18 -0000 1.2 --- Makefile 2 May 2003 22:53:02 -0000 1.3 *************** *** 9,15 **** GZIP = gzip ! GZIP_FLAGS = -v9f ! CFLAGS += -fno-builtin ifeq "$(XTENSA_LITTLE_ENDIAN)" "y" --- 9,15 ---- GZIP = gzip ! GZIP_FLAGS = -v9fc ! CFLAGS += -fno-builtin -I$(TOPDIR)/arch/$(ARCH)/boot/include ifeq "$(XTENSA_LITTLE_ENDIAN)" "y" *************** *** 26,38 **** subdir-$(CONFIG_XTENSA_PLATFORM_ISS) += boot-elf ! subdir-$(CONFIG_XTENSA_PLATFORM_XT2000) += boot-redboot boot-elf lib/zlib.a: $(MAKE) -C lib ! images/vmlinux.gz: $(TOPDIR)/vmlinux ! $(GZIP) $(GZIP_FLAGS) $? zImage zImage.initrd: lib/zlib.a images/vmlinux.gz ifneq ($(subdir-y),) for d in $(subdir-y); do $(MAKE) -C $$d $@; done --- 26,39 ---- subdir-$(CONFIG_XTENSA_PLATFORM_ISS) += boot-elf ! subdir-$(CONFIG_XTENSA_PLATFORM_XT2000) += boot-redboot boot-elf lib/zlib.a: $(MAKE) -C lib ! images/vmlinux.gz: ! $(MAKE) -C images vmlinux.gz zImage zImage.initrd: lib/zlib.a images/vmlinux.gz + ifneq ($(subdir-y),) for d in $(subdir-y); do $(MAKE) -C $$d $@; done |