9
0
Fork 0

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>
This commit is contained in:
Sascha Hauer 2013-05-31 16:14:35 +02:00
parent b5167ee51c
commit 5d308ce640
1 changed files with 1 additions and 1 deletions

View File

@ -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