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 B742CECAAD1 for ; Wed, 31 Aug 2022 12:03:18 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 103FC848CE; Wed, 31 Aug 2022 14:03:16 +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="RW7S/t9/"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 69920848D2; Wed, 31 Aug 2022 14:03:13 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 27764842E4 for ; Wed, 31 Aug 2022 14:03:11 +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 dfw.source.kernel.org (Postfix) with ESMTPS id DE6E5615C7; Wed, 31 Aug 2022 12:03:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2729BC433D6; Wed, 31 Aug 2022 12:03:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1661947389; bh=PVyv0HcsbSE3VhajHrtuIOoST2MfeMV8T9be8uPtWQQ=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=RW7S/t9/Phd7ISxP1VUfe990EWqVgQSSp68JTMRAQXqUgbQZK/rajYr6DXDpJmvAs G9zWfPQ9U3puH+ECujgAviG0G6/jVVsoYBZZ73OZblU9ISzVHMsjlL78FFaVZuaOlL umzcFcZ2/IvdBPoc3qV4w7tffp3hMsMDYDhOuVx3IETREVmId3GQqi/GhAuP+zMpdH M3sLGM3XAfVwJZucSUG5lPL+ggd+lUWmC4BgfqmGliOse9UMeyCc7c/NPan0sZ2wSY j5xn36XpOU/g+6VRrWTooIMGP6Z8G+33umgsfdFFuEz4y7DKhghVNNnopy4yMznwyg OkZaXux6rHHjA== Received: by pali.im (Postfix) id 4FD33855; Wed, 31 Aug 2022 14:03:06 +0200 (CEST) Date: Wed, 31 Aug 2022 14:03:06 +0200 From: Pali =?utf-8?B?Um9ow6Fy?= To: Simon Glass , Tom Rini Cc: u-boot@lists.denx.de Subject: Re: [PATCH 1/2] Makefile: Fix dependency for u-boot-with-dtb.bin Message-ID: <20220831120306.52hlo3kaihoorxpe@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 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 > PING? This fix is also waiting here for month.