From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-in-03.arcor-online.net (mail-in-03.arcor-online.net [151.189.21.43]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.arcor.de", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTP id 8461ADDF84 for ; Sun, 10 Jun 2007 07:03:35 +1000 (EST) In-Reply-To: References: Mime-Version: 1.0 (Apple Message framework v623) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <981f558c34d946fcb2683a9731f8d5ad@kernel.crashing.org> From: Segher Boessenkool Subject: Re: zImage.miboot and vmlinux.lds Date: Sat, 9 Jun 2007 23:03:26 +0200 To: Christian Kujau Cc: linuxppc-dev@ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , > Hm, the files are still there. Is there any reason for "mrproper" not > to > remove these files? Otherwise, would the following be appropriate? > > --- linux-2.6-dev/arch/powerpc/Makefile.orig 2007-05-28 > 21:24:39.000000000 +0200 > +++ linux-2.6-dev/arch/powerpc/Makefile 2007-05-28 21:23:25.000000000 > +0200 > @@ -174,6 +174,7 @@ archclean: > > archmrproper: > $(Q)rm -rf arch/$(ARCH)/include > + $(Q)rm -f arch/$(ARCH)/boot/zImage.miboot > arch/$(ARCH)/kernel/vmlinux.lds vmlinux.lds should be cleaned from the main (non-arch) Makefile; I could swear I've sent a patch for that some time ago. zImage.miboot should be added to $(clean-files) in arch/powerpc/boot/Makefile; the $(image-) in there should catch it except for the ifeq in ifeq ($(CONFIG_PPC32),y) image-$(CONFIG_PPC_PMAC) += zImage.coff zImage.miboot endif Maybe it should be added to $(image-) unconditionally? Or get rid of the ifeq, preferably. Segher