diff options
author | Michael Runge <mrunge@google.com> | 2014-10-25 01:17:43 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-25 01:17:43 +0200 |
commit | fe8563f4f2a6efe1eb00bb41a5037c88917becfc (patch) | |
tree | ebda3154bb85bd2dcc8d4272526a6419ff16764c /updater | |
parent | am 68802416: unconditionally apply SELinux labels to symlinks (diff) | |
parent | Log mount/unmount errors to UI (diff) | |
download | android_bootable_recovery-fe8563f4f2a6efe1eb00bb41a5037c88917becfc.tar android_bootable_recovery-fe8563f4f2a6efe1eb00bb41a5037c88917becfc.tar.gz android_bootable_recovery-fe8563f4f2a6efe1eb00bb41a5037c88917becfc.tar.bz2 android_bootable_recovery-fe8563f4f2a6efe1eb00bb41a5037c88917becfc.tar.lz android_bootable_recovery-fe8563f4f2a6efe1eb00bb41a5037c88917becfc.tar.xz android_bootable_recovery-fe8563f4f2a6efe1eb00bb41a5037c88917becfc.tar.zst android_bootable_recovery-fe8563f4f2a6efe1eb00bb41a5037c88917becfc.zip |
Diffstat (limited to 'updater')
-rw-r--r-- | updater/install.c | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/updater/install.c b/updater/install.c index db2bd3295..ff7de4793 100644 --- a/updater/install.c +++ b/updater/install.c @@ -151,13 +151,13 @@ Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) { const MtdPartition* mtd; mtd = mtd_find_partition_by_name(location); if (mtd == NULL) { - printf("%s: no mtd partition named \"%s\"", + uiPrintf(state, "%s: no mtd partition named \"%s\"", name, location); result = strdup(""); goto done; } if (mtd_mount_partition(mtd, mount_point, fs_type, 0 /* rw */) != 0) { - printf("mtd mount of %s failed: %s\n", + uiPrintf(state, "mtd mount of %s failed: %s\n", location, strerror(errno)); result = strdup(""); goto done; @@ -167,7 +167,7 @@ Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) { if (mount(location, mount_point, fs_type, MS_NOATIME | MS_NODEV | MS_NODIRATIME, has_mount_options ? mount_options : "") < 0) { - printf("%s: failed to mount %s at %s: %s\n", + uiPrintf(state, "%s: failed to mount %s at %s: %s\n", name, location, mount_point, strerror(errno)); result = strdup(""); } else { @@ -231,10 +231,14 @@ Value* UnmountFn(const char* name, State* state, int argc, Expr* argv[]) { scan_mounted_volumes(); const MountedVolume* vol = find_mounted_volume_by_mount_point(mount_point); if (vol == NULL) { - printf("unmount of %s failed; no such volume\n", mount_point); + uiPrintf(state, "unmount of %s failed; no such volume\n", mount_point); result = strdup(""); } else { - unmount_mounted_volume(vol); + int ret = unmount_mounted_volume(vol); + if (ret != 0) { + uiPrintf(state, "unmount of %s failed (%d): %s\n", + mount_point, ret, strerror(errno)); + } result = mount_point; } |