Bugfix: fatal: destination path '/opt/tempT' already exists and is not an empty direc...
[yardstick.git] / tools / ubuntu-server-cloudimg-modify.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Ericsson AB and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 # installs required packages
12 # must be run from inside the image (either chrooted or running)
13
14 set -ex
15
16 if [ $# -eq 1 ]; then
17     nameserver_ip=$1
18
19     # /etc/resolv.conf is a symbolic link to /run, restore at end
20     rm /etc/resolv.conf
21     echo "nameserver $nameserver_ip" > /etc/resolv.conf
22     echo "nameserver 8.8.8.8" >> /etc/resolv.conf
23     echo "nameserver 8.8.4.4" >> /etc/resolv.conf
24 fi
25
26 # iperf3 only available for trusty in backports
27 if grep -q trusty /etc/apt/sources.list ; then
28     if [ "${YARD_IMG_ARCH}" = "arm64" ]; then
29         echo "deb [arch=${YARD_IMG_ARCH}] http://ports.ubuntu.com/ trusty-backports main restricted universe multiverse" >> /etc/apt/sources.list
30     else
31         echo "deb http://archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse" >> /etc/apt/sources.list
32     fi
33 fi
34 # Workaround for building on CentOS (apt-get is not working with http sources)
35 # sed -i 's/http/ftp/' /etc/apt/sources.list
36
37 # Force apt to use ipv4 due to build problems on LF POD.
38 echo 'Acquire::ForceIPv4 "true";' > /etc/apt/apt.conf.d/99force-ipv4
39
40 # Add hostname to /etc/hosts.
41 # Allow console access via pwd
42 cat <<EOF >/etc/cloud/cloud.cfg.d/10_etc_hosts.cfg
43 manage_etc_hosts: True
44 password: RANDOM
45 chpasswd: { expire: False }
46 ssh_pwauth: True
47 EOF
48 apt-get update
49 if [[ "${YARD_IMG_ARCH}" = "arm64" && "$release" = "vivid" ]]; then
50     apt-get install -y \
51         linux-headers-"$(echo ${CLOUD_KERNEL_VERSION} | cut -d'-' -f3,4,5)" \
52         unzip
53     #resize root partition (/dev/vdb1) It is supposed to be default but the image is booted differently for arm64
54 cat <<EOF >/etc/cloud/cloud.cfg.d/15_growpart.cfg
55 #cloud-config
56 bootcmd:
57  - [growpart, /dev/vdb, 1]
58 EOF
59 fi
60 apt-get install -y \
61     bc \
62     fio \
63     git \
64     gcc \
65     iperf3 \
66     ethtool \
67     iproute2 \
68     linux-tools-common \
69     linux-tools-generic \
70     lmbench \
71     make \
72     netperf \
73     patch \
74     perl \
75     rt-tests \
76     stress \
77     sysstat
78
79 CLONE_DEST=/opt/tempT
80
81 # remove before cloning
82 rm -rf -- "${CLONE_DEST}"
83
84 if [[ "${YARD_IMG_ARCH}" = "arm64" && "$release" = "vivid" ]]; then
85     wget https://github.com/kdlucas/byte-unixbench/archive/master.zip
86     unzip master.zip && rm master.zip
87     mkdir "${CLONE_DEST}"
88     mv byte-unixbench-master/UnixBench "${CLONE_DEST}"
89     sed -i -e 's/OPTON += -march=native -mtune=native/OPTON += -march=armv8-a -mtune=generic/g' \
90     -e 's/OPTON += -march=native/OPTON += -march=armv8-a/g' "${CLONE_DEST}/UnixBench/Makefile"
91 else
92     git clone https://github.com/kdlucas/byte-unixbench.git "${CLONE_DEST}"
93 fi
94 make --directory "${CLONE_DEST}/UnixBench/"
95
96 if [ "${YARD_IMG_ARCH}" = "arm64" ]; then
97     wget https://github.com/beefyamoeba5/ramspeed/archive/master.zip
98     unzip master.zip && rm master.zip
99     mkdir "${CLONE_DEST}/RAMspeed"
100     mv ramspeed-master/* "${CLONE_DEST}/RAMspeed/"
101 else
102     git clone https://github.com/beefyamoeba5/ramspeed.git "${CLONE_DEST}/RAMspeed"
103 fi
104 cd "${CLONE_DEST}/RAMspeed/ramspeed-2.6.0"
105 mkdir temp
106 bash build.sh
107
108 if [[ "${YARD_IMG_ARCH}" = "arm64" && "$release" = "vivid" ]]; then
109     wget https://github.com/beefyamoeba5/cachestat/archive/master.zip
110     unzip master.zip && rm master.zip
111     mv cachestat-master/cachestat "${CLONE_DEST}"
112 else
113     git clone https://github.com/beefyamoeba5/cachestat.git "${CLONE_DEST}/Cachestat"
114 fi
115
116 # restore symlink
117 ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf