aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Pundir <amit.pundir@linaro.org>2013-10-22 17:23:21 +0530
committerAmit Pundir <amit.pundir@linaro.org>2013-10-22 17:23:21 +0530
commit4c00081d78e387d8af5e4385ce96b09856789c98 (patch)
treea6b7cd0744d0616c687eddbe9b996d82cbf09442
parentdee2e44cf334b5000f900056384494c0c440784a (diff)
Do not set any default bootloader
-rwxr-xr-xbuild-scripts/post-build-lava.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/build-scripts/post-build-lava.py b/build-scripts/post-build-lava.py
index 5e1f0c4..8e0f04e 100755
--- a/build-scripts/post-build-lava.py
+++ b/build-scripts/post-build-lava.py
@@ -482,8 +482,7 @@ def gen_deploy_action():
"system": "%s%s%s" % (download_url,
"/system.", file_extension),
"data": "%s%s%s" % (download_url,
- "/userdata.", file_extension),
- "bootloadertype": get_env_var(ENV_BOOTLOADER_TYPE)
+ "/userdata.", file_extension)
},
"metadata": {
"android.name": job_name,
@@ -491,6 +490,11 @@ def gen_deploy_action():
"android.url": get_env_var(ENV_BUILD_URL)
}
}
+
+ bootloadertype = get_env_var(ENV_BOOTLOADER_TYPE)
+ if bootloadertype == "uefi":
+ action["parameters"]["bootloadertype"] = "uefi"
+
return action