summaryrefslogtreecommitdiffstats
path: root/commands/bootm.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-05-31 16:14:35 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-05-31 16:33:39 +0200
commit5d308ce6400678239248c54d565bf385bbadbb42 (patch)
tree1aac13926c69e422420e5e5fea0a7ccfd5f1b723 /commands/bootm.c
parentb5167ee51ca21195aff4707f1a503708febe51c3 (diff)
downloadbarebox-5d308ce6400678239248c54d565bf385bbadbb42.tar.gz
barebox-5d308ce6400678239248c54d565bf385bbadbb42.tar.xz
bootm: Print internal devicetree information without verbose
It's a precious information that barebox will boot the kernel with the internal devicetree, so print it even in non verbose mode. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/bootm.c')
-rw-r--r--commands/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bootm.c b/commands/bootm.c
index 3976eb49b6..6ce2ca9897 100644
--- a/commands/bootm.c
+++ b/commands/bootm.c
@@ -395,7 +395,7 @@ static int do_bootm(int argc, char *argv[])
goto err_out;
} else {
data.of_root_node = of_get_root_node();
- if (bootm_verbose(&data) && data.of_root_node)
+ if (data.of_root_node)
printf("using internal devicetree\n");
}
#endif