From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Mon, 25 Jan 2016 14:20:15 -0700 Subject: [U-Boot] [PATCH 4/7] tegra: Always build a boot image with the same filename In-Reply-To: <1453753831-26411-5-git-send-email-sjg@chromium.org> References: <1453753831-26411-1-git-send-email-sjg@chromium.org> <1453753831-26411-5-git-send-email-sjg@chromium.org> Message-ID: <56A6918F.4060603@wwwdotorg.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 01/25/2016 01:30 PM, Simon Glass wrote: > Adjust the Makefile to build u-boot-tegra.bin which contains a device tree > if OF_CONTROL is enabled, and does not if not. This mirrors U-Boot's new > approach of using u-boot.bin to handle both cases. For Tegra, we need: u-boot-nodtb-tegra.bin Required always. This never includes a DTB. u-boot-dtb-tegra.bin Required if OF_CONTROL is enabled (which these days is always). This always includes a DTB. I believe this change violates those requirements since it makes both u-boot-nodtb-tegra.bin and u-boot-dtb-tegra.bin identical to u-boot-tegra.bin, and hence always include a DTB in practice.