From patchwork Mon Jun 22 11:57:49 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julian Calaby X-Patchwork-Id: 28992 X-Patchwork-Delegate: davem@davemloft.net Return-Path: X-Original-To: patchwork-incoming@bilbo.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from ozlabs.org (ozlabs.org [203.10.76.45]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx.ozlabs.org", Issuer "CA Cert Signing Authority" (verified OK)) by bilbo.ozlabs.org (Postfix) with ESMTPS id AB7CFB7194 for ; Mon, 22 Jun 2009 21:58:09 +1000 (EST) Received: by ozlabs.org (Postfix) id 9E07CDDD0C; Mon, 22 Jun 2009 21:58:09 +1000 (EST) Delivered-To: patchwork-incoming@ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by ozlabs.org (Postfix) with ESMTP id 236D5DDD01 for ; Mon, 22 Jun 2009 21:58:09 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756300AbZFVL6E (ORCPT ); Mon, 22 Jun 2009 07:58:04 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1756261AbZFVL6E (ORCPT ); Mon, 22 Jun 2009 07:58:04 -0400 Received: from rv-out-0506.google.com ([209.85.198.234]:60010 "EHLO rv-out-0506.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756300AbZFVL6D (ORCPT ); Mon, 22 Jun 2009 07:58:03 -0400 Received: by rv-out-0506.google.com with SMTP id g37so40081rvb.1 for ; Mon, 22 Jun 2009 04:58:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:content-type :content-transfer-encoding; bh=mwNp4Afi9xdp8XbtCp2OjFvw8alyKbxkS0e4GlcVDAE=; b=a5DeG/zVvNSJWI7stubr/lBRbTW9/Fcs28MdQsPmFiGGCBu5Uul2Ojxp9eTJlhSC2A GwdtdwH88j4JXh6ZX4o5gB7oLmyVv1JqTfGRD6RWp0aIaEkRtpbuDgXUsntOU+Sz5ohB NAbHYp4boCXcdRVGisxYygSi4VXpVG5xGTD2c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; b=o3xV0zSPQ4pR5hgyMZ4pvjHt4GtD6HEp8TZ270iTnWT6yXxWDWOhPmPPitlFng5qJU WDbA0i00NVDsAdZ7jljdwouFTsNbqFkLchHZUOXshkTSqkDCmdB4HIJajxeJ4xj3cnuk 8IvCJhVl2DF2F83u/Q3+K6orlygDfnO1Lzk5U= Received: by 10.140.144.1 with SMTP id r1mr5533011rvd.233.1245671886169; Mon, 22 Jun 2009 04:58:06 -0700 (PDT) Received: from ?192.168.2.115? (124-168-14-80.dyn.iinet.net.au [124.168.14.80]) by mx.google.com with ESMTPS id g31sm10519716rvb.31.2009.06.22.04.58.03 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 22 Jun 2009 04:58:05 -0700 (PDT) Message-ID: <4A3F71BD.5060502@gmail.com> Date: Mon, 22 Jun 2009 21:57:49 +1000 From: Julian Calaby User-Agent: Mozilla-Thunderbird 2.0.0.19 (X11/20090103) MIME-Version: 1.0 To: sparclinux CC: oftedal@gmail.com, David Miller , sam@ravnborg.org, reif@earthlink.net Subject: [PATCH 5/4] sparc32: Fix makefile not generating required files Sender: sparclinux-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: sparclinux@vger.kernel.org The tftpboot build was failing with missing file errors. It turns out that $(obj)/image wasn't being generated which was causing the a.out conversion to be skipped and hence piggyback to be called with nonexistent files. Signed-off-by: Julian Calaby --- arch/sparc/boot/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe sparclinux" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/arch/sparc/boot/Makefile b/arch/sparc/boot/Makefile index 500a2f8..043e661 100644 --- a/arch/sparc/boot/Makefile +++ b/arch/sparc/boot/Makefile @@ -58,7 +58,7 @@ $(obj)/image: $(obj)/btfix.o FORCE $(obj)/zImage: $(obj)/image $(call if_changed,strip) -$(obj)/tftpboot.img: $(obj)/piggyback_32 System.map $(ROOT_IMG) FORCE +$(obj)/tftpboot.img: $(obj)/image $(obj)/piggyback_32 System.map $(ROOT_IMG) FORCE $(call if_changed,elftoaout) $(call if_changed,piggy)