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 1ED26C00144 for ; Mon, 1 Aug 2022 15:43:43 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 0BC4883FA1; Mon, 1 Aug 2022 17:43:42 +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="YKgBO3P7"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 467B58444D; Mon, 1 Aug 2022 17:43:40 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::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 23AF383FA1 for ; Mon, 1 Aug 2022 17:43:38 +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 9478E60BC0; Mon, 1 Aug 2022 15:43:36 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D678AC4347C; Mon, 1 Aug 2022 15:43:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1659368616; bh=doS5yVlgHQ9MOzU13rjItjHR4xC71yeB7etb9V4OW+w=; h=From:To:Cc:Subject:Date:From; b=YKgBO3P73b2VV5Mt7YgiJMdpTYR/729rNQenLKvaUqVt8QSb7nVTA2dT1kxHvW5cC Rzcg5ySLFWRpeQNhAXzaloOqkMdEdl8Veg6kImbekKiXE9jJceoTObdBfaz9MAzid3 IF7TuPZBluRx+zOL27vCPTO7k0Fcuz+paVjrrV1KFLjqSJ3ZcP+xsgd1spoWwpJNrQ Fisg8cQd8loxUzsovF9QO/kvHSDxl5HCNTrb+n4RA6bbohGuvze52eK2c2nVhbDYCH S2uvCURenA+OTKS/F4GxrO5zAwnUWeY68LBYoSnpX5AVMtiV9B2alLhfJNeJ0VyoBp 1lrbfObijNutg== Received: by pali.im (Postfix) id 0599475F; Mon, 1 Aug 2022 17:43:32 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Simon Glass , Tom Rini Cc: u-boot@lists.denx.de Subject: [PATCH 1/2] Makefile: Fix dependency for u-boot-with-dtb.bin Date: Mon, 1 Aug 2022 17:42:19 +0200 Message-Id: <20220801154220.20068-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 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