Created
September 14, 2017 17:51
-
-
Save kkappel/81669a5df943a1798d0f1af730107928 to your computer and use it in GitHub Desktop.
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
| # Prepare OpenWrt for local developement of binaries | |
| # for TP-Link WRT3600 | |
| # by Klaus Kappel <kkappel@yahoo.de> | |
| # ABSOLUTELY NO WARRANTY FOR ANY DAMAGE TO YOUR ROUTER | |
| sudo apt update | |
| sudo apt install build-essential subversion libncurses5-dev zlib1g-dev gawk gcc-multilib flex git-core gettext | |
| sudo apt install quilt lzop libssl-dev | |
| git clone git://git.openwrt.org/openwrt.git | |
| cd openwrt | |
| ./scripts/feeds update -a | |
| ./scripts/feeds install -a | |
| make defconfig | |
| make prereq | |
| make -j5 # if your cpu has 4 cores | |
| # This needs some time, take yourself a cup of coffee |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment