aboutsummaryrefslogtreecommitdiff
path: root/livetree.c
diff options
context:
space:
mode:
authorScott Wood <scottwood@freescale.com>2008-01-03 17:43:33 -0600
committerJon Loeliger <jdl@freescale.com>2008-01-04 08:21:54 -0600
commitad4f54ae2b67ddcd4d128fd4b5c21c66a640d237 (patch)
tree211909ade0f8df57886ce5ab9f872594f5fd26e1 /livetree.c
parent910efac4b49f43cb1b66eef5aa0bbd020920bf2a (diff)
downloaddtc-ad4f54ae2b67ddcd4d128fd4b5c21c66a640d237.zip
dtc-ad4f54ae2b67ddcd4d128fd4b5c21c66a640d237.tar.gz
dtc-ad4f54ae2b67ddcd4d128fd4b5c21c66a640d237.tar.bz2
Return a non-zero exit code if an error occurs during dts parsing.
Previously, only failure to parse caused the reading of the tree to fail; semantic errors that called yyerror() but not YYERROR only emitted a message, without signalling make to stop the build. Signed-off-by: Scott Wood <scottwood@freescale.com>
Diffstat (limited to 'livetree.c')
-rw-r--r--livetree.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/livetree.c b/livetree.c
index 6ba0846..7610e78 100644
--- a/livetree.c
+++ b/livetree.c
@@ -172,6 +172,7 @@ struct boot_info *build_boot_info(struct reserve_info *reservelist,
bi = xmalloc(sizeof(*bi));
bi->reservelist = reservelist;
bi->dt = tree;
+ bi->error = 0;
return bi;
}