Hi Jon,

> On Tue, 2008-07-01 at 11:59 +0200, Detlev Zundel wrote:
>> Hi Jon,
>> 
>> > I seem to recall that those working on the either
>> > the next U-Boot V2 or the next version of the FDT
>> > image structure were planning on using the binary
>> > include mechanism of the DTC.
>> >
>> > Several days ago I added the Binary Include patch
>> > to DTC and tagged a candidate release.  Could you
>> > verify that this version satisfies your needs and
>> > works for you?
>> 
>> Hm, you mean the tag "v1.2.0-rc1"?  I couldn't compile nor install that
>> version on my system without the attached patch.
>
> Why is the install lined commented out?

Because install fails installing no files.  As LIBFDT_INCLUDES is empty
(not assigned or referenced anywhere else) that should come as no
surprise.  Commenting out wasn't meant to be a fix, only to point to a
problem that I don't fully understand.

> And can I get a clean, signed-off Git patch?

If you did not fix it yourself already, attached.

> Please also CC: [EMAIL PROTECTED]

Ok.

Cheers
  Detlev

-- 
The only use I can find for vi is editing the emacs sources while
porting them to a new machine.
                                        -- Larry Campbell
--
DENX Software Engineering GmbH,      MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich,  Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: [EMAIL PROTECTED]
>From 6b1dba30e96e7b0e8712876e62a26a97b81190e4 Mon Sep 17 00:00:00 2001
From: Detlev Zundel <[EMAIL PROTECTED]>
Date: Wed, 9 Jul 2008 13:55:18 +0200
Subject: [PATCH] Fix compile error for convert-dtsv0-lexer.

Signed-off-by: Detlev Zundel <[EMAIL PROTECTED]>
---
 convert-dtsv0-lexer.l |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/convert-dtsv0-lexer.l b/convert-dtsv0-lexer.l
index d235bd5..11abcc5 100644
--- a/convert-dtsv0-lexer.l
+++ b/convert-dtsv0-lexer.l
@@ -28,6 +28,9 @@ PATHCHAR	({PROPNODECHAR}|[/])
 LABEL		[a-zA-Z_][a-zA-Z0-9_]*
 
 %{
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
 #include <stdarg.h>
 #include <assert.h>
 #include <fnmatch.h>
-- 
1.5.6.1

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
U-Boot-Users mailing list
U-Boot-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/u-boot-users

Reply via email to