aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/bash/qemu_build.sh
blob: 57520a9b5e4d83ab2707c8f352ab8b52024e48c0 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#!/bin/bash
# Copyright (c) 2016 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

QEMU_VERSION="qemu-2.5.0"
QEMU_DOWNLOAD_REPO="http://download.qemu-project.org/"
QEMU_DOWNLOAD_PACKAGE="${QEMU_VERSION}.tar.xz"
QEMU_PACKAGE_URL="${QEMU_DOWNLOAD_REPO}${QEMU_DOWNLOAD_PACKAGE}"
QEMU_INSTALL_DIR="/opt/${QEMU_VERSION}"
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
TARGET_LIST="x86_64-softmmu"

for i in "$@"; do
    case $i in
        --version=*)
            QEMU_VERSION="${i#*=}"
            shift ;;
        --directory=*)
            QEMU_INSTALL_DIR="${i#*=}"
            shift ;;
        --patch)
            PATCH=1
            shift ;;
        --force)
            FORCE=1
            shift ;;
        --target-list)
            TARGET_LIST="${i#*=}"
            shift ;;
        *)
            ;;
    esac
done

if test "$(id -u)" -ne 0
then
    echo "Please use root or sudo to be able to install into: ${QEMU_INSTALL_DIR}"
    exit 1
fi

WORKING_DIR=$(mktemp -d) || \
    { echo "Failed to create temporary working dir"; exit 1; }
trap "rm -r ${WORKING_DIR}" EXIT

if [ $FORCE ]
then
    rm -rf ${QEMU_INSTALL_DIR}
else
    test -d ${QEMU_INSTALL_DIR} && \
        { echo "Qemu already installed: ${QEMU_INSTALL_DIR}"; exit 0; }
fi

# Download QEMU source code if no local copy exists
if [ ! -f /opt/${QEMU_DOWNLOAD_PACKAGE} ]; then
    wget -P /opt -q ${QEMU_PACKAGE_URL} || \
        { echo "Failed to download ${QEMU_VERSION}"; exit 1; }
fi

# Extract archive into temp directory
tar --strip-components 1 -xf /opt/${QEMU_DOWNLOAD_PACKAGE} -C ${WORKING_DIR} || \
    { echo "Failed to extract ${QEMU_VERSION}.tar.xz"; exit 1; }

cd ${WORKING_DIR}
mkdir ${QEMU_INSTALL_DIR} || \
    { echo "Failed to create ${QEMU_INSTALL_DIR}"; exit 1; }

# Apply additional patches
if [ $PATCH ]
then
    chmod +x ${SCRIPT_DIR}/qemu_patches/${QEMU_VERSION}/*
    run-parts --verbose --report  ${SCRIPT_DIR}/qemu_patches/${QEMU_VERSION}
fi

# Build
./configure --target-list=${TARGET_LIST} --prefix=${QEMU_INSTALL_DIR} || \
    { echo "Failed to configure ${QEMU_VERSION}"; exit 1; }
make -j`nproc` || \
    { echo "Failed to compile ${QEMU_VERSION}"; exit 1; }
make install || \
    { echo "Failed to install ${QEMU_VERSION}"; exit 1; }

echo QEMU ${QEMU_VERSION} ready