summaryrefslogtreecommitdiffstats
path: root/mtdutils/mtdutils.c
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2010-09-15 00:32:07 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2010-09-15 00:32:07 +0200
commitbd4bc088e286b87a5d1469598644125ecc0fd547 (patch)
tree8cba0a1bae2a5152066817326122c3245f731ab9 /mtdutils/mtdutils.c
parentam 61ba7a83: stop treating all-zero blocks as bad (diff)
parentadd the ability to seek to a raw location while reading MTD partition (diff)
downloadandroid_bootable_recovery-bd4bc088e286b87a5d1469598644125ecc0fd547.tar
android_bootable_recovery-bd4bc088e286b87a5d1469598644125ecc0fd547.tar.gz
android_bootable_recovery-bd4bc088e286b87a5d1469598644125ecc0fd547.tar.bz2
android_bootable_recovery-bd4bc088e286b87a5d1469598644125ecc0fd547.tar.lz
android_bootable_recovery-bd4bc088e286b87a5d1469598644125ecc0fd547.tar.xz
android_bootable_recovery-bd4bc088e286b87a5d1469598644125ecc0fd547.tar.zst
android_bootable_recovery-bd4bc088e286b87a5d1469598644125ecc0fd547.zip
Diffstat (limited to 'mtdutils/mtdutils.c')
-rw-r--r--mtdutils/mtdutils.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/mtdutils/mtdutils.c b/mtdutils/mtdutils.c
index c913a1945..d16f44ef8 100644
--- a/mtdutils/mtdutils.c
+++ b/mtdutils/mtdutils.c
@@ -279,6 +279,12 @@ MtdReadContext *mtd_read_partition(const MtdPartition *partition)
return ctx;
}
+// Seeks to a location in the partition. Don't mix with reads of
+// anything other than whole blocks; unpredictable things will result.
+void mtd_read_skip_to(const MtdReadContext* ctx, size_t offset) {
+ lseek64(ctx->fd, offset, SEEK_SET);
+}
+
static int read_block(const MtdPartition *partition, int fd, char *data)
{
struct mtd_ecc_stats before, after;
@@ -449,6 +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);
return 0; // Success!
}