Last active
March 14, 2016 11:34
-
-
Save vvelizariy/96764678f01fc4e95121 to your computer and use it in GitHub Desktop.
Prepare all needed packages for OpenWrt compile
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
# Prepare all needed packages on CentOS 7.2 | |
sudo yum -y install git zlib-devel gcc-c++ zlib-static svn openssl-devel ncurses-devel bzip2 unzip patch perl-Thread-Queue \ | |
perl-Data-Dumper | |
cd ~ && git clone https://github.com/openwrt-mirror/openwrt.git | |
make clean # If it is not first run | |
./scripts/feeds update -a | |
./scripts/feeds install -a | |
make tools/install && make toolchain/install | |
make menuconfig |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment