Created
August 19, 2018 01:48
-
-
Save KeitetsuWorks/569c1a83cf731051fca2b625ff460e2b to your computer and use it in GitHub Desktop.
Script to install dependencies for Xilinx PetaLinux 2017.4 on Ubuntu 16.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| ## | |
| ## @file installDependencies.sh | |
| ## @brief Script to install dependencies for Xilinx PetaLinux 2017.4 | |
| ## on Ubuntu 16.04 LTS | |
| ## @author Keitetsu | |
| ## @date 2018/08/11 | |
| ## @copyright Copyright (c) 2018 Keitetsu | |
| ## @par License | |
| ## This software is released under the MIT License. | |
| ## | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| binutils \ | |
| ncurses-dev \ | |
| u-boot-tools \ | |
| file | |
| sudo apt-get install -y \ | |
| tofrodos \ | |
| iproute2 \ | |
| gawk \ | |
| net-tools \ | |
| libncurses5-dev \ | |
| tftp \ | |
| tftpd-hpa \ | |
| zlib1g-dev \ | |
| libssl-dev \ | |
| flex \ | |
| bison \ | |
| libselinux1 | |
| sudo apt-get install -y \ | |
| diffstat \ | |
| xvfb \ | |
| chrpath \ | |
| xterm \ | |
| libtool \ | |
| socat \ | |
| autoconf \ | |
| unzip \ | |
| texinfo \ | |
| gcc-multilib \ | |
| libsdl1.2-dev \ | |
| libglib2.0-dev \ | |
| zlib1g:i386 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment