diff options
author | Doug Zongker <dougz@android.com> | 2010-09-15 06:32:14 +0200 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2010-09-15 06:32:14 +0200 |
commit | 858f0a763d0f736eb721f54257b6164886bfcbfc (patch) | |
tree | b1dd9d0f6408811e71dade4f1ccbc52f18114a5e | |
parent | am d12560aa: add the ability to seek to a raw location while reading MTD partition (diff) | |
parent | close update package before installing; allow remount (diff) | |
download | android_bootable_recovery-858f0a763d0f736eb721f54257b6164886bfcbfc.tar android_bootable_recovery-858f0a763d0f736eb721f54257b6164886bfcbfc.tar.gz android_bootable_recovery-858f0a763d0f736eb721f54257b6164886bfcbfc.tar.bz2 android_bootable_recovery-858f0a763d0f736eb721f54257b6164886bfcbfc.tar.lz android_bootable_recovery-858f0a763d0f736eb721f54257b6164886bfcbfc.tar.xz android_bootable_recovery-858f0a763d0f736eb721f54257b6164886bfcbfc.tar.zst android_bootable_recovery-858f0a763d0f736eb721f54257b6164886bfcbfc.zip |
Diffstat (limited to '')
-rw-r--r-- | install.c | 4 | ||||
-rw-r--r-- | mtdutils/mounts.c | 8 | ||||
-rw-r--r-- | mtdutils/mounts.h | 2 | ||||
-rw-r--r-- | mtdutils/mtdutils.c | 2 | ||||
-rw-r--r-- | updater/updater.c | 4 |
5 files changed, 17 insertions, 3 deletions
@@ -42,6 +42,7 @@ try_update_binary(const char *path, ZipArchive *zip) { const ZipEntry* binary_entry = mzFindZipEntry(zip, ASSUMED_UPDATE_BINARY_NAME); if (binary_entry == NULL) { + mzCloseZipArchive(zip); return INSTALL_CORRUPT; } @@ -49,11 +50,13 @@ try_update_binary(const char *path, ZipArchive *zip) { unlink(binary); int fd = creat(binary, 0755); if (fd < 0) { + mzCloseZipArchive(zip); LOGE("Can't make %s\n", binary); return 1; } bool ok = mzExtractZipEntryToFile(zip, binary_entry, fd); close(fd); + mzCloseZipArchive(zip); if (!ok) { LOGE("Can't copy %s\n", ASSUMED_UPDATE_BINARY_NAME); @@ -298,6 +301,5 @@ install_package(const char *root_path) /* Verify and install the contents of the package. */ int status = handle_update_package(path, &zip); - mzCloseZipArchive(&zip); return status; } diff --git a/mtdutils/mounts.c b/mtdutils/mounts.c index 2ab3ff60c..c90fc8acf 100644 --- a/mtdutils/mounts.c +++ b/mtdutils/mounts.c @@ -212,3 +212,11 @@ unmount_mounted_volume(const MountedVolume *volume) } return ret; } + +int +remount_read_only(const MountedVolume* volume) +{ + return mount(volume->device, volume->mount_point, volume->filesystem, + MS_NOATIME | MS_NODEV | MS_NODIRATIME | + MS_RDONLY | MS_REMOUNT, 0); +} diff --git a/mtdutils/mounts.h b/mtdutils/mounts.h index 2e2765a93..30b2927c2 100644 --- a/mtdutils/mounts.h +++ b/mtdutils/mounts.h @@ -28,4 +28,6 @@ find_mounted_volume_by_mount_point(const char *mount_point); int unmount_mounted_volume(const MountedVolume *volume); +int remount_read_only(const MountedVolume* volume); + #endif // MTDUTILS_MOUNTS_H_ diff --git a/mtdutils/mtdutils.c b/mtdutils/mtdutils.c index d16f44ef8..48d5ea9ab 100644 --- a/mtdutils/mtdutils.c +++ b/mtdutils/mtdutils.c @@ -455,7 +455,7 @@ static int write_block(MtdWriteContext *ctx, const char *data) if (retry > 0) { fprintf(stderr, "mtd: wrote block after %d retries\n", retry); } - fprintf(stderr, "mtd: successfully wrote block at %x\n", pos); + fprintf(stderr, "mtd: successfully wrote block at %llx\n", pos); return 0; // Success! } diff --git a/updater/updater.c b/updater/updater.c index 6537a94ba..aa626d29b 100644 --- a/updater/updater.c +++ b/updater/updater.c @@ -136,7 +136,9 @@ int main(int argc, char** argv) { free(result); } - mzCloseZipArchive(&za); + if (updater_info.package_zip) { + mzCloseZipArchive(updater_info.package_zip); + } free(script); return 0; |