
25 Jun
2013
25 Jun
'13
4:47 p.m.
On 06/24/2013 06:45 PM, Simon Glass wrote:
Hi Stephen,
On Mon, Jun 24, 2013 at 8:43 AM, Stephen Warren <swarren@wwwdotorg.org mailto:swarren@wwwdotorg.org> wrote:
From: Stephen Warren <swarren@nvidia.com <mailto:swarren@nvidia.com>> Subsequent patches assume that dtc supports various recent features. These are available in dtc 1.4.0. Validate that dtc is at least that version.
Acked-by: Simon Glass <sjg@chromium.org mailto:sjg@chromium.org>
See note below.
diff --git a/Makefile b/Makefile
-$(obj)u-boot.dtb: $(obj)u-boot +$(obj)u-boot.dtb: checkdtc $(obj)u-boot
Any reason this is not in dts/Makefile? Still this is fine.
I guess that would have worked too. One advantage of the current placement is that make just happens to evaluate the rule really early (at least with more than -j1!), so you don't build a lot before it errors out, thus giving you quicker feedback. It also keeps all the tool version checks in one file; perhaps easier maintenance?