diff options
author | Doug Zongker <dougz@android.com> | 2011-04-22 18:26:44 +0200 |
---|---|---|
committer | Mike Lockwood <lockwood@android.com> | 2011-05-04 17:07:48 +0200 |
commit | f4bb554ee994ce3ecff43f0d6db040c7b1d53a33 (patch) | |
tree | 5bfdb16d111ab15cba3fd4466579b17f6a7d2e68 | |
parent | log which key a package verified against in recovery (diff) | |
download | android_bootable_recovery-f4bb554ee994ce3ecff43f0d6db040c7b1d53a33.tar android_bootable_recovery-f4bb554ee994ce3ecff43f0d6db040c7b1d53a33.tar.gz android_bootable_recovery-f4bb554ee994ce3ecff43f0d6db040c7b1d53a33.tar.bz2 android_bootable_recovery-f4bb554ee994ce3ecff43f0d6db040c7b1d53a33.tar.lz android_bootable_recovery-f4bb554ee994ce3ecff43f0d6db040c7b1d53a33.tar.xz android_bootable_recovery-f4bb554ee994ce3ecff43f0d6db040c7b1d53a33.tar.zst android_bootable_recovery-f4bb554ee994ce3ecff43f0d6db040c7b1d53a33.zip |
Diffstat (limited to '')
-rw-r--r-- | bootloader.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/bootloader.c b/bootloader.c index b690c5582..709656602 100644 --- a/bootloader.c +++ b/bootloader.c @@ -22,6 +22,8 @@ #include <errno.h> #include <stdio.h> #include <string.h> +#include <sys/stat.h> +#include <unistd.h> static int get_bootloader_message_mtd(struct bootloader_message *out, const Volume* v); static int set_bootloader_message_mtd(const struct bootloader_message *in, const Volume* v); @@ -132,8 +134,26 @@ static int set_bootloader_message_mtd(const struct bootloader_message *in, // for misc partitions on block devices // ------------------------------------ +static void wait_for_device(const char* fn) { + int tries = 0; + int ret; + struct stat buf; + do { + ++tries; + ret = stat(fn, &buf); + if (ret) { + printf("stat %s try %d: %s\n", fn, tries, strerror(errno)); + sleep(1); + } + } while (ret && tries < 10); + if (ret) { + printf("failed to stat %s\n", fn); + } +} + static int get_bootloader_message_block(struct bootloader_message *out, const Volume* v) { + wait_for_device(v->device); FILE* f = fopen(v->device, "rb"); if (f == NULL) { LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno)); @@ -155,6 +175,7 @@ static int get_bootloader_message_block(struct bootloader_message *out, static int set_bootloader_message_block(const struct bootloader_message *in, const Volume* v) { + wait_for_device(v->device); FILE* f = fopen(v->device, "wb"); if (f == NULL) { LOGE("Can't open %s\n(%s)\n", v->device, strerror(errno)); |