From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 3A742C54EE9 for ; Wed, 7 Sep 2022 09:21:38 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 41A3384A49; Wed, 7 Sep 2022 11:21:30 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="oJ399vUw"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 59CC984A49; Wed, 7 Sep 2022 11:21:28 +0200 (CEST) Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id BFCB18020D for ; Wed, 7 Sep 2022 11:21:25 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 215E2CE1AFF; Wed, 7 Sep 2022 09:21:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 64AF3C433D6; Wed, 7 Sep 2022 09:21:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1662542478; bh=KAZDvdQH+qJSrN2DiJZw5B0ky0bX2QypOqD6Vug9RgA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=oJ399vUw3BClxXOifF1Rn+1CrFCTpNgDlJYFmuK9ByNDrwX0pbY2QUpvjKCTENZDz h2uAarrDYEB5USMNEoHeI6PYU+PfVbD0J/ozNwn10hgxPYLoB7DirbXOXYDyF3q8B7 aNyT3GKlBOxTVyxJAjTNxfEzX3oLiLLuz1ls1K4wAVQ9JqEILHUvdd68LxUl5/ME4K /pDYhnKNGz1tPfDy+m82ikFPav88OOLdHBNOUcZNGMh4eSexyc+ynHufQ9yU3y1aUa +/OBEpq5KkiGGf235zRrBaFBIiE7/VS2XAIwGMTxo5BiXCtHW/Fh1vh0xeZ1pC5rVW /KIktVUKOjnEA== Received: by pali.im (Postfix) id 552CC7F0; Wed, 7 Sep 2022 11:21:15 +0200 (CEST) Date: Wed, 7 Sep 2022 11:21:15 +0200 From: Pali =?utf-8?B?Um9ow6Fy?= To: Simon Glass , Tom Rini , Peng Fan Cc: u-boot@lists.denx.de Subject: Re: [PATCH 1/2] Makefile: Fix dependency for u-boot-with-dtb.bin Message-ID: <20220907092115.wm3cyhn46wh7n7rl@pali> References: <20220801154220.20068-1-pali@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20220801154220.20068-1-pali@kernel.org> User-Agent: NeoMutt/20180716 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean + Peng Fan On Monday 01 August 2022 17:42:19 Pali Rohár wrote: > Makefile uses binman to produce u-boot-with-dtb.bin target. As its input it > takes DTB file and u-boot binary without DTB, which is stored in file > u-boot-nodtb.bin. So fix target dependency. > > Signed-off-by: Pali Rohár > --- > Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Makefile b/Makefile > index ff25f9297486..dcfcd7ebd5d2 100644 > --- a/Makefile > +++ b/Makefile > @@ -1628,7 +1628,7 @@ u-boot-with-nand-spl.sfp: u-boot-spl-padx4.sfp u-boot.img FORCE > endif > > ifeq ($(CONFIG_MPC85xx)$(CONFIG_OF_SEPARATE),yy) > -u-boot-with-dtb.bin: u-boot.bin u-boot.dtb \ > +u-boot-with-dtb.bin: u-boot-nodtb.bin u-boot.dtb \ > $(if $(CONFIG_MPC85XX_HAVE_RESET_VECTOR), u-boot-br.bin) FORCE > $(call if_changed,binman) > > -- > 2.20.1 >