Merge "Add script to install image build dependencies"

This commit is contained in:
Jenkins 2016-04-12 11:11:42 +00:00 committed by Gerrit Code Review
commit b8b35e46ee
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
#!/bin/bash
# This script installs all needed dependencies to generate
# images using diskimage-builder. Please not it only has been
# tested on Ubuntu Trusty
set -eux
set -o pipefail
sudo apt-get update || true
sudo apt-get install -y \
debootstrap \
kpartx \
qemu-utils \
python-dev \
build-essential \
python-pip \
python-lzma \
yum \
yum-utils \
python-yaml