summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Zongker <dougz@android.com>2013-07-11 21:31:25 +0200
committerDoug Zongker <dougz@android.com>2013-07-11 21:31:25 +0200
commit901b898d5e4d7cc555974b8132f83f948f8fbaee (patch)
tree41e1a7b19590dda198d6acf6e710bc7ad13720bb
parentrecovery: more cargo-cult programming (diff)
downloadandroid_bootable_recovery-901b898d5e4d7cc555974b8132f83f948f8fbaee.tar
android_bootable_recovery-901b898d5e4d7cc555974b8132f83f948f8fbaee.tar.gz
android_bootable_recovery-901b898d5e4d7cc555974b8132f83f948f8fbaee.tar.bz2
android_bootable_recovery-901b898d5e4d7cc555974b8132f83f948f8fbaee.tar.lz
android_bootable_recovery-901b898d5e4d7cc555974b8132f83f948f8fbaee.tar.xz
android_bootable_recovery-901b898d5e4d7cc555974b8132f83f948f8fbaee.tar.zst
android_bootable_recovery-901b898d5e4d7cc555974b8132f83f948f8fbaee.zip
-rw-r--r--applypatch/applypatch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applypatch/applypatch.c b/applypatch/applypatch.c
index 60e26ede3..0dcdce0b1 100644
--- a/applypatch/applypatch.c
+++ b/applypatch/applypatch.c
@@ -424,7 +424,7 @@ int WriteToPartition(unsigned char* data, size_t len,
{
size_t start = 0;
int success = 0;
- int fd = open(partition, O_RDWR | O_DIRECT | O_SYNC);
+ int fd = open(partition, O_RDWR | O_SYNC);
if (fd < 0) {
printf("failed to open %s: %s\n", partition, strerror(errno));
return -1;
@@ -433,7 +433,7 @@ int WriteToPartition(unsigned char* data, size_t len,
for (attempt = 0; attempt < 10; ++attempt) {
size_t next_sync = start + (1<<20);
- printf("raw O_DIRECT write %s attempt %d start at %d\n", partition, attempt+1, start);
+ printf("raw O_SYNC write %s attempt %d start at %d\n", partition, attempt+1, start);
lseek(fd, start, SEEK_SET);
while (start < len) {
size_t to_write = len - start;