aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDoug Zongker <>2009-03-24 21:30:32 -0700
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-24 21:30:32 -0700
commitbc012de46e99fc936e6c06d19416b8414835c7b6 (patch)
treea857e6ff407fb5e2a2d75c597ab7f1d50d5c567f /tools
parentcf5b17055b1276c187537cf5a054cf6ebe753113 (diff)
downloadbootable_recovery-bc012de46e99fc936e6c06d19416b8414835c7b6.zip
bootable_recovery-bc012de46e99fc936e6c06d19416b8414835c7b6.tar.gz
bootable_recovery-bc012de46e99fc936e6c06d19416b8414835c7b6.tar.bz2
Automated import from //branches/donutburger/...@142141,142141
Diffstat (limited to 'tools')
-rw-r--r--tools/ota/make-update-script.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/tools/ota/make-update-script.c b/tools/ota/make-update-script.c
index 225dc52..1e1148b 100644
--- a/tools/ota/make-update-script.c
+++ b/tools/ota/make-update-script.c
@@ -185,16 +185,21 @@ int main(int argc, char *argv[]) {
}
// The lines we're looking for look like:
- // version-bootloader=x.yy.zzzz
+ // version-bootloader=x.yy.zzzz|x.yy.zzzz|...
// or:
- // require version-bootloader=x.yy.zzzz
+ // require version-bootloader=x.yy.zzzz|x.yy.zzzz|...
char line[256];
while (fgets(line, sizeof(line), fp)) {
- const char *name = strtok(line, "="), *value = strtok(NULL, "\n");
+ const char *name = strtok(line, "="), *value = strtok(NULL, "|\n");
if (value != NULL &&
(!strcmp(name, "version-bootloader") ||
!strcmp(name, "require version-bootloader"))) {
- printf("assert getprop(\"ro.bootloader\") == \"%s\"\n", value);
+ printf("assert getprop(\"ro.bootloader\") == \"%s\"", value);
+
+ while ((value = strtok(NULL, "|\n")) != NULL) {
+ printf(" || getprop(\"ro.bootloader\") == \"%s\"", value);
+ }
+ printf("\n");
}
// We also used to check version-baseband, but we update radio.img
// ourselves, so there's no need.