summaryrefslogtreecommitdiffstats
path: root/common/blspec.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-11-01 15:05:37 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-11-05 08:37:55 +0100
commit9e26e30af4e503d4a8286a3932899afaee271c6d (patch)
treee19a9b1f9474bce5b418b1e3b0d9eee394d63923 /common/blspec.c
parentf63e04f52c28ac23225fdf2d469f0fe21e370e93 (diff)
downloadbarebox-9e26e30af4e503d4a8286a3932899afaee271c6d.tar.gz
barebox-9e26e30af4e503d4a8286a3932899afaee271c6d.tar.xz
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>
Diffstat (limited to 'common/blspec.c')
-rw-r--r--common/blspec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/blspec.c b/common/blspec.c
index 500eb076ff..095809b470 100644
--- a/common/blspec.c
+++ b/common/blspec.c
@@ -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;
}