From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 03 Sep 2021 16:25:17 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mMA85-0001Nt-Gw for lore@lore.pengutronix.de; Fri, 03 Sep 2021 16:25:17 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mMA85-0001ZX-9L; Fri, 03 Sep 2021 16:25:17 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mMA7p-0001ZK-0Q; Fri, 03 Sep 2021 16:25:01 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mMA7o-0008Sl-Ei; Fri, 03 Sep 2021 16:25:00 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1mMA7o-00GxQP-Dz; Fri, 03 Sep 2021 16:25:00 +0200 Date: Fri, 3 Sep 2021 16:25:00 +0200 From: Michael Olbrich To: Robin van der Gracht Message-ID: <20210903142500.GK4027748@pengutronix.de> Mail-Followup-To: Robin van der Gracht , ptxdist@pengutronix.de, bst@pengutronix.de References: <20210819072746.492404-1-robin@protonic.nl> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210819072746.492404-1-robin@protonic.nl> X-Sent-From: Pengutronix Hildesheim X-URL: http://www.pengutronix.de/ X-IRC: #ptxdist @freenode X-Accept-Language: de,en X-Accept-Content-Type: text/plain User-Agent: Mutt/1.10.1 (2018-07-13) Subject: Re: [ptxdist] [PATCH] kernel-fit: Fix dtb file inclusion X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: ptxdist@pengutronix.de, bst@pengutronix.de Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false On Thu, Aug 19, 2021 at 09:27:46AM +0200, Robin van der Gracht wrote: > KERNEL_DTB is not set. This results in a FIT image without device tree > inclusion. > > Signed-off-by: Robin van der Gracht > --- > rules/kernel-fit.make | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/rules/kernel-fit.make b/rules/kernel-fit.make > index ffead846b..fd1ffe707 100644 > --- a/rules/kernel-fit.make > +++ b/rules/kernel-fit.make > @@ -28,7 +28,7 @@ KERNEL_FIT_KERNEL = $(KERNEL_IMAGE_PATH_y) > ifdef PTXCONF_KERNEL_FIT_INITRAMFS > KERNEL_FIT_INITRAMFS := $(IMAGEDIR)/root.cpio > endif > -KERNEL_FIT_DTB = $(KERNEL_DTB) > +KERNEL_FIT_DTB = $(foreach dtb, $(KERNEL_DTB_FILES), $(IMAGEDIR)/$(dtb)) $(addprefix $(IMAGEDIR)/,$(KERNEL_DTB_FILES)) Michael > > # ---------------------------------------------------------------------------- > # Target-Install > -- > 2.30.2 > > > _______________________________________________ > ptxdist mailing list > ptxdist@pengutronix.de > To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de > -- Pengutronix e.K. | | Steuerwalder Str. 21 | http://www.pengutronix.de/ | 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de