This file contains 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
#!/bin/bash | |
dl_and_install_build_prereq() { | |
# Prerequisites: https://openwrt.org/docs/guide-developer/quickstart-build-images | |
# Download and install prerequisites for compiling firmware | |
sudo apt-get -y update && sudo apt-get -y upgrade | |
sudo apt -y install subversion g++ zlib1g-dev build-essential git python time | |
sudo apt -y install libncurses5-dev gawk gettext unzip file libssl-dev wget | |
sudo apt -y install libelf-dev ecj fastjar java-propose-classpath |