summaryrefslogtreecommitdiff
path: root/node/setup-oneiric-node
blob: bf1720a5015f711aa22ec77ae52cb699bad1235a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash

# This script contains the configurations required specific to the
# Oneiric node, which is mainly used by oneiric hwpack/image builds on ci.linaro.org

set -xe

. `dirname $0`/setup_lib

export DEBIAN_FRONTEND=noninteractive

echo 'Acquire::http::Proxy "http://ci.linaro.org:3128";' > /etc/apt/apt.conf.d/ci_linaro_org_http_proxy

apt-get-retry --non-fatal update

# Install packages
apt-get-retry install -y \
              build-essential \
              debootstrap \
              default-jre \
              eatmydata  \
              git \
              gcc-arm-linux-gnueabi \
              linaro-image-tools \
              python-support \
              python-xdg \
              qemu-user-static \
              schroot  \
              uboot-mkimage

live_build_install
lit_install
git_config

if test -e /tmp/fifo3; then
    echo "end init" > /tmp/fifo3
fi

fifo_cleanup