summaryrefslogtreecommitdiff
path: root/node/setup_lib
diff options
context:
space:
mode:
authorMilo Casagrande <milo@ubuntu.com>2012-09-27 14:42:57 +0200
committerMilo Casagrande <milo@ubuntu.com>2012-09-27 14:42:57 +0200
commit0498c92d4b6657a8f8f12d1dbef0a94aaf5c62e7 (patch)
tree753287c831f7ec9b848a5abd0f403e2ad4fe91d5 /node/setup_lib
parent60e852b03d2408d936844475210bd7a8cb37e036 (diff)
Added function to install l-i-t.
Diffstat (limited to 'node/setup_lib')
-rwxr-xr-xnode/setup_lib11
1 files changed, 10 insertions, 1 deletions
diff --git a/node/setup_lib b/node/setup_lib
index 450b44a..187ca71 100755
--- a/node/setup_lib
+++ b/node/setup_lib
@@ -45,7 +45,16 @@ git_config()
git config --system http.proxy http://ci.linaro.org:3128
}
-
+# Installs the correct linaro-image-tools version.
+# The deb file is taken from the ubuntu-build-production archive:
+# https://launchpad.net/~linaro-infrastructure/+archive/ubuntu-build-production
+install_lit()
+{
+ VERSION='2012.09.1'
+ DEB_FILE="linaro-image-tools_${VERSION}-0ubuntu1~linaro1_all.deb"
+ wget "https://launchpad.net/~linaro-infrastructure/+archive/ubuntu-build-production/+files/${DEB_FILE}"
+ dpkg -i ${DEB_FILE}
+}
fifo_cleanup()
{