From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49454) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUbJO-00006U-K4 for qemu-devel@nongnu.org; Tue, 23 Apr 2013 07:23:03 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UUbJI-0000bL-Ev for qemu-devel@nongnu.org; Tue, 23 Apr 2013 07:23:02 -0400 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:54801) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UUbJI-0000bA-5j for qemu-devel@nongnu.org; Tue, 23 Apr 2013 07:22:56 -0400 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Tue, 23 Apr 2013 12:19:17 +0100 Received: from b06cxnps4074.portsmouth.uk.ibm.com (d06relay11.portsmouth.uk.ibm.com [9.149.109.196]) by d06dlp03.portsmouth.uk.ibm.com (Postfix) with ESMTP id 9AA041B0805F for ; Tue, 23 Apr 2013 12:22:52 +0100 (BST) Received: from d06av12.portsmouth.uk.ibm.com (d06av12.portsmouth.uk.ibm.com [9.149.37.247]) by b06cxnps4074.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id r3NBMg6o57671934 for ; Tue, 23 Apr 2013 11:22:42 GMT Received: from d06av12.portsmouth.uk.ibm.com (localhost [127.0.0.1]) by d06av12.portsmouth.uk.ibm.com (8.14.4/8.14.4/NCO v10.0 AVout) with ESMTP id r3NBMo5V030696 for ; Tue, 23 Apr 2013 05:22:51 -0600 From: Christian Borntraeger Date: Tue, 23 Apr 2013 13:23:05 +0200 Message-Id: <1366716185-36913-5-git-send-email-borntraeger@de.ibm.com> In-Reply-To: <1366716185-36913-1-git-send-email-borntraeger@de.ibm.com> References: <1366658298-9275-1-git-send-email-agraf@suse.de> <1366716185-36913-1-git-send-email-borntraeger@de.ibm.com> Subject: [Qemu-devel] [PATCH 4/4] s390-ccw.img: Take care of the elf->img transition List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: cornelia.huck@de.ibm.com, Christian Borntraeger , qemu-devel@nongnu.org, Dominik Dingel We have to call strip with s390-ccw.elf as input and s390-ccw.img as output Signed-off-by: Christian Borntraeger --- pc-bios/s390-ccw/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pc-bios/s390-ccw/Makefile b/pc-bios/s390-ccw/Makefile index c126194..ad55a14 100644 --- a/pc-bios/s390-ccw/Makefile +++ b/pc-bios/s390-ccw/Makefile @@ -20,7 +20,7 @@ s390-ccw.elf: $(OBJECTS) $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS)," Building $(TARGET_DIR)$@") s390-ccw.img: s390-ccw.elf - $(call quiet-command,strip $@," Stripping $(TARGET_DIR)$@") + $(call quiet-command,strip $< -o $@," Stripping $(TARGET_DIR)$@") clean: - rm -f *.o *.d *.img *~ + rm -f *.o *.d *.img *.elf *~ -- 1.8.1.4