aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/ti
diff options
context:
space:
mode:
authorRoger Monk <r-monk@ti.com>2010-06-29 15:14:45 +0100
committerKoen Kooi <koen@openembedded.org>2010-06-29 16:42:38 +0200
commit3a6ffbc99137af46c32c79bb69559acc2cd899f8 (patch)
treeb8633ea408a67fe047c4ef45f1d389955ad561c5 /recipes/ti
parent7d38ccd4bca54267f9d7042533ebe851e2a9b5b2 (diff)
downloadopenembedded-3a6ffbc99137af46c32c79bb69559acc2cd899f8.tar.gz
ti-eula-unpack: Temp Remove Version Check which is broken in some installers
* IJ installer returns error for --version/--help tests * Remove for noew while debugging * Issue found by brijesh Signed-off-by: Roger Monk <r-monk@ti.com> Signed-off-by: Koen Kooi <k-kooi@ti.com>
Diffstat (limited to 'recipes/ti')
-rw-r--r--recipes/ti/ti-eula-unpack.inc9
1 files changed, 5 insertions, 4 deletions
diff --git a/recipes/ti/ti-eula-unpack.inc b/recipes/ti/ti-eula-unpack.inc
index 947ca143ea..a812a85ec5 100644
--- a/recipes/ti/ti-eula-unpack.inc
+++ b/recipes/ti/ti-eula-unpack.inc
@@ -41,10 +41,11 @@ python ti_bin_do_unpack() {
# Run the InstallJammer binary and accept the EULA
filename = "HOME=%s ./%s --mode console" % (workdir, binfile)
- # Test executable by printing installer version
- if os.system(filename + " --version") != 0:
- print "ERROR: ti-eula-unpack: failed to execute binary installer"
- raise bb.build.FuncFailed()
+ # Test executable by printing installer version or help screen (--version currently broken for some installers)
+ # - this is currently broken in some IJ installers - comment out for now
+ #if os.system(filename + " --version") != 0:
+ # print "ERROR: ti-eula-unpack: failed to execute binary installer"
+ # raise bb.build.FuncFailed()
f = os.popen(filename,'w')
for cmd in cmd_list: