suggested fixes

This commit is contained in:
Igor Pečovnik 2014-11-18 11:35:16 +01:00
parent eefd0f1061
commit 043628bcea

View File

@ -10,13 +10,14 @@ download_host_packages (){
# Download packages for host - Ubuntu 14.04 recommended
#--------------------------------------------------------------------------------------------------------------------------------
echo "Downloading necessary files."
# basic
apt-get -qq -y install pv bc lzop zip binfmt-support bison build-essential ccache debootstrap flex gawk gcc-arm-linux-gnueabi
apt-get -qq -y install gcc-arm-linux-gnueabihf lvm2 qemu-user-static u-boot-tools uuid-dev zlib1g-dev unzip libncurses5-dev
apt-get -qq -y install libusb-1.0-0-dev parted pkg-config
# basic
apt-get -y install debconf-utils
debconf-apt-progress -- apt-get -y install pv bc lzop zip binfmt-support bison build-essential ccache debootstrap flex gawk gcc-arm-linux-gnueabi
debconf-apt-progress -- apt-get -y install gcc-arm-linux-gnueabihf lvm2 qemu-user-static u-boot-tools uuid-dev zlib1g-dev unzip libncurses5-dev
debconf-apt-progress -- apt-get -y install libusb-1.0-0-dev parted pkg-config
# for creating PDF documentation
apt-get -qq -y install pandoc nbibtex texlive-latex-base texlive-latex-recommended texlive-latex-extra preview-latex-style
apt-get -qq -y install dvipng texlive-fonts-recommended
debconf-apt-progress -- apt-get -y install pandoc nbibtex texlive-latex-base texlive-latex-recommended texlive-latex-extra preview-latex-style
debconf-apt-progress -- apt-get -y install dvipng texlive-fonts-recommended
echo "Done.";
}