9
0
Fork 0

blspec: Make error message more clear

"Nothing found on" is a bit unspecific. Make clear that no
bootspec entry is found.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-11-01 15:05:37 +01:00
parent f63e04f52c
commit 9e26e30af4
1 changed files with 1 additions and 1 deletions

View File

@ -537,7 +537,7 @@ int blspec_boot_devicename(const char *devname, int verbose, int dryrun)
e = blspec_entry_default(blspec);
if (!e) {
printf("Nothing found on %s\n", devname);
printf("No bootspec entry found on %s\n", devname);
ret = -ENOENT;
goto out;
}