[PATCH] bootm: Print internal devicetree information without verbose
Sascha Hauer
s.hauer at pengutronix.de
Fri May 31 10:15:29 EDT 2013
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 at pengutronix.de>
---
commands/bootm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/commands/bootm.c b/commands/bootm.c
index 3976eb4..6ce2ca9 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
--
1.8.2.rc2
More information about the barebox
mailing list