linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* DTC 1.0.0 Release
@ 2007-08-10  1:01 Jon Loeliger
  2007-08-10  1:25 ` David Gibson
  2007-08-10 21:21 ` Olaf Hering
  0 siblings, 2 replies; 6+ messages in thread
From: Jon Loeliger @ 2007-08-10  1:01 UTC (permalink / raw)
  To: linuxppc-dev

Hey guys,

Well, I tagged and released an official DTC v1.0.0 Release
and pushed it out to jdl.com just now.  You can grab the
git repo directly:

    git://www.jdl.com/software/dtc.git

or download a tarball here:

    http://www.jdl.com/software/dtc-1.0.0.tgz

As usual, please let me know of any issues with it.

Thanks,
jdl


PS -- Hey Becky!  So there!  My status report doesn't lie!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: DTC 1.0.0 Release
  2007-08-10  1:01 DTC 1.0.0 Release Jon Loeliger
@ 2007-08-10  1:25 ` David Gibson
  2007-08-10  3:25   ` Michael Ellerman
  2007-08-10 21:21 ` Olaf Hering
  1 sibling, 1 reply; 6+ messages in thread
From: David Gibson @ 2007-08-10  1:25 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: linuxppc-dev

On Thu, Aug 09, 2007 at 08:01:33PM -0500, Jon Loeliger wrote:
> Hey guys,
> 
> Well, I tagged and released an official DTC v1.0.0 Release
> and pushed it out to jdl.com just now.  You can grab the
> git repo directly:
> 
>     git://www.jdl.com/software/dtc.git
> 
> or download a tarball here:
> 
>     http://www.jdl.com/software/dtc-1.0.0.tgz
> 
> As usual, please let me know of any issues with it.

Well, I'm not thrilled about the versioning, nor some inaccuracies in
the new documentation.  But as you say in the commit message, it's
about bloody time, we can fix the problems later.

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: DTC 1.0.0 Release
  2007-08-10  1:25 ` David Gibson
@ 2007-08-10  3:25   ` Michael Ellerman
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Ellerman @ 2007-08-10  3:25 UTC (permalink / raw)
  To: David Gibson; +Cc: linuxppc-dev, Jon Loeliger

[-- Attachment #1: Type: text/plain, Size: 1049 bytes --]

On Fri, 2007-08-10 at 11:25 +1000, David Gibson wrote:
> On Thu, Aug 09, 2007 at 08:01:33PM -0500, Jon Loeliger wrote:
> > Hey guys,
> > 
> > Well, I tagged and released an official DTC v1.0.0 Release
> > and pushed it out to jdl.com just now.  You can grab the
> > git repo directly:
> > 
> >     git://www.jdl.com/software/dtc.git
> > 
> > or download a tarball here:
> > 
> >     http://www.jdl.com/software/dtc-1.0.0.tgz
> > 
> > As usual, please let me know of any issues with it.
> 
> Well, I'm not thrilled about the versioning, nor some inaccuracies in
> the new documentation.  But as you say in the commit message, it's
> about bloody time, we can fix the problems later.

Everyone knows not to use x.0.0 releases anyway, so hurry up and push
out 1.0.1 ;)

cheers

-- 
Michael Ellerman
OzLabs, IBM Australia Development Lab

wwweb: http://michael.ellerman.id.au
phone: +61 2 6212 1183 (tie line 70 21183)

We do not inherit the earth from our ancestors,
we borrow it from our children. - S.M.A.R.T Person

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: DTC 1.0.0 Release
  2007-08-10  1:01 DTC 1.0.0 Release Jon Loeliger
  2007-08-10  1:25 ` David Gibson
@ 2007-08-10 21:21 ` Olaf Hering
  2007-08-13  0:50   ` David Gibson
  1 sibling, 1 reply; 6+ messages in thread
From: Olaf Hering @ 2007-08-10 21:21 UTC (permalink / raw)
  To: Jon Loeliger; +Cc: linuxppc-dev

On Thu, Aug 09, Jon Loeliger wrote:

> As usual, please let me know of any issues with it.

tests/truncated_property.c:45: warning: 'err' is used uninitialized in this function

(untested patch)

---
 tests/truncated_property.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--- a/tests/truncated_property.c
+++ b/tests/truncated_property.c
@@ -33,7 +33,6 @@ int main(int argc, char *argv[])
 {
 	void *fdt = &_truncated_property;
 	const void *prop;
-	int err;
 	int len;
 
 	test_init(argc, argv);
@@ -43,7 +42,7 @@ int main(int argc, char *argv[])
 		FAIL("fdt_getprop() succeeded on truncated property");
 	if (len != -FDT_ERR_BADSTRUCTURE)
 		FAIL("fdt_getprop() failed with \"%s\" instead of \"%s\"",
-		     fdt_strerror(err), fdt_strerror(-FDT_ERR_BADSTRUCTURE));
+		     fdt_strerror(len), fdt_strerror(-FDT_ERR_BADSTRUCTURE));
 
 	PASS();
 }

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: DTC 1.0.0 Release
  2007-08-10 21:21 ` Olaf Hering
@ 2007-08-13  0:50   ` David Gibson
  2007-08-13 18:30     ` Jon Loeliger
  0 siblings, 1 reply; 6+ messages in thread
From: David Gibson @ 2007-08-13  0:50 UTC (permalink / raw)
  To: Olaf Hering; +Cc: linuxppc-dev, Jon Loeliger

On Fri, Aug 10, 2007 at 11:21:29PM +0200, Olaf Hering wrote:
> On Thu, Aug 09, Jon Loeliger wrote:
> 
> > As usual, please let me know of any issues with it.
> 
> tests/truncated_property.c:45: warning: 'err' is used uninitialized
> in this function

Looks good.  If you had a Signed-off-by, I'd add an Acked-by...

-- 
David Gibson			| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au	| minimalist, thank you.  NOT _the_ _other_
				| _way_ _around_!
http://www.ozlabs.org/~dgibson

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: DTC 1.0.0 Release
  2007-08-13  0:50   ` David Gibson
@ 2007-08-13 18:30     ` Jon Loeliger
  0 siblings, 0 replies; 6+ messages in thread
From: Jon Loeliger @ 2007-08-13 18:30 UTC (permalink / raw)
  To: David Gibson; +Cc: linuxppc-dev@ozlabs.org, Olaf Hering, Jon Loeliger

On Sun, 2007-08-12 at 19:50, David Gibson wrote:
> On Fri, Aug 10, 2007 at 11:21:29PM +0200, Olaf Hering wrote:
> > On Thu, Aug 09, Jon Loeliger wrote:
> > 
> > > As usual, please let me know of any issues with it.
> > 
> > tests/truncated_property.c:45: warning: 'err' is used uninitialized
> > in this function
> 
> Looks good.  If you had a Signed-off-by, I'd add an Acked-by...

... I'd apply it and start us on the way to some
other release!

Thanks,
jdl

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2007-08-13 18:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-08-10  1:01 DTC 1.0.0 Release Jon Loeliger
2007-08-10  1:25 ` David Gibson
2007-08-10  3:25   ` Michael Ellerman
2007-08-10 21:21 ` Olaf Hering
2007-08-13  0:50   ` David Gibson
2007-08-13 18:30     ` Jon Loeliger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).