~milo/linaro-ci/bug1090416

« back to all changes in this revision

Viewing changes to node/setup_lib

  • Committer: Milo Casagrande
  • Author(s): Fathi Boudra
  • Date: 2012-10-05 08:16:54 UTC
  • mfrom: (101.1.1 linaro-ci)
  • Revision ID: milo@ubuntu.com-20121005081654-40ss91t3o51pg6yd
Added linaro tools PPA, pass --force to dpkg.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
live_build_install() 
37
37
{
38
38
     wget "http://git.linaro.org/gitweb?p=ubuntu/ubuntu-build-service.git;a=blob_plain;f=packages/live-build_3.0~a45-1_all.deb" -O live-build_3.0~a45-1_all.deb
39
 
     dpkg -i live-build_3.0~a45-1_all.deb
 
39
     dpkg -i --force-all live-build_3.0~a45-1_all.deb
40
40
}
41
41
 
42
42
git_config() 
56
56
    LIT_DEB="linaro-image-tools_${VERSION}_all.deb"
57
57
    PYTHON_LIT="python-linaro-image-tools_${VERSION}_all.deb"
58
58
    wget "${DOWNLOAD_URL}${LIT_DEB}" "${DOWNLOAD_URL}${PYTHON_LIT}"
59
 
    dpkg -i ${LIT_DEB} ${PYTHON_LIT}
 
59
    dpkg -i --force-all ${LIT_DEB} ${PYTHON_LIT}
60
60
}
61
61
 
62
62
fifo_cleanup()