Requirements:
- LinuxMint 18.1 or Ubuntu ??.?
# Build Xilinx QEMU
```
#!/bin/bash
#TODO: Create "update" version of the script, package retrieving and cloning should be done one time only
prerequisites="build-essential libglib2.0-dev libgcrypt20-dev zlib1g-dev autoconf automake libtool bison flex git"
if [[ $EUID != 0 ]];
then
echo "Please run as sudo";
exit;
fi
apt-get update
apt-get install $prerequisites
git clone git://github.com/Xilinx/qemu.git
cd qemu
git submodule update --init pixman dtc
./configure --target-list="aarch64-softmmu,microblazeel-softmmu" --enable-fdt --disable-kvm --disable-xen
make -j4
```
TODO:
- Needs investigation, if kernel/device tree etc. have to be supplied separately