summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinux Build Service Account <lnxbuild@localhost>2015-06-02 00:04:31 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2015-06-02 00:04:31 -0700
commit7193976f069edd9534820340e35dfb14cb1e1fb6 (patch)
treeed7784025a9bfe8999043bb470a1620064217ceb
parent2766b02733146dc0503e0048f076ffbe8dc63da0 (diff)
parent670c8b84de0f940ffdd52a1c65589ac6f033c080 (diff)
Merge "app: aboot: Fix wrong message of devinfo partition"
-rw-r--r--app/aboot/aboot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/aboot/aboot.c b/app/aboot/aboot.c
index 587d3802..472f7812 100644
--- a/app/aboot/aboot.c
+++ b/app/aboot/aboot.c
@@ -1555,7 +1555,7 @@ void write_device_info_flash(device_info *dev)
ptn = ptable_find(ptable, "devinfo");
if (ptn == NULL)
{
- dprintf(CRITICAL, "ERROR: No boot partition found\n");
+ dprintf(CRITICAL, "ERROR: No devinfo partition found\n");
return;
}
@@ -1655,7 +1655,7 @@ void read_device_info_flash(device_info *dev)
ptn = ptable_find(ptable, "devinfo");
if (ptn == NULL)
{
- dprintf(CRITICAL, "ERROR: No boot partition found\n");
+ dprintf(CRITICAL, "ERROR: No devinfo partition found\n");
return;
}