9
0
Fork 0

boot: add single quotes when printing boot target names

It's nicer to read when target names have quotes around them, it
makes it clear that this is a string passed in somewhere.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2016-07-22 14:18:10 +02:00
parent 89c8ac578f
commit 80c5692ff8
1 changed files with 3 additions and 3 deletions

View File

@ -104,7 +104,7 @@ static int bootscript_boot(struct bootentry *entry, int verbose, int dryrun)
ret = bootm_boot(&data);
if (ret)
pr_err("Booting %s failed: %s\n", basename(bs->scriptpath), strerror(-ret));
pr_err("Booting '%s' failed: %s\n", basename(bs->scriptpath), strerror(-ret));
out:
return ret;
}
@ -130,7 +130,7 @@ int boot_entry(struct bootentry *be, int verbose, int dryrun)
{
int ret;
printf("booting %s\n", be->title);
printf("booting '%s'\n", be->title);
if (IS_ENABLED(CONFIG_WATCHDOG) && boot_watchdog_timeout) {
ret = watchdog_set_timeout(boot_watchdog_timeout);
@ -141,7 +141,7 @@ int boot_entry(struct bootentry *be, int verbose, int dryrun)
ret = be->boot(be, verbose, dryrun);
if (ret)
printf("booting %s failed: %s\n", be->title, strerror(-ret));
printf("booting '%s' failed: %s\n", be->title, strerror(-ret));
return ret;
}