dtc: -Odts produces v1 output
This patch alters the -Odts mode output so that it uses dts-v1 format.
This means that dtc -Idts -Odts used on a v0 dts file will convert
that file to v1.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Jon Loeliger <jdl@freescale.com>
diff --git a/treesource.c b/treesource.c
index 0752280..df3df7e 100644
--- a/treesource.c
+++ b/treesource.c
@@ -141,7 +141,7 @@
l = l->next;
}
- fprintf(f, "%x", be32_to_cpu(*cp++));
+ fprintf(f, "0x%x", be32_to_cpu(*cp++));
if ((void *)cp >= propend)
break;
fprintf(f, " ");
@@ -258,12 +258,14 @@
{
struct reserve_info *re;
+ fprintf(f, "/dts-v1/;\n\n");
+
for (re = bi->reservelist; re; re = re->next) {
if (re->label)
fprintf(f, "%s: ", re->label);
- fprintf(f, "/memreserve/\t%016llx-%016llx;\n",
+ fprintf(f, "/memreserve/\t0x%016llx 0x%016llx;\n",
(unsigned long long)re->re.address,
- (unsigned long long)(re->re.address + re->re.size - 1));
+ (unsigned long long)re->re.size);
}
write_tree_source_node(f, bi->dt, 0);