Skip to content

Instantly share code, notes, and snippets.

@kkappel
Created September 14, 2017 17:51
Show Gist options
  • Select an option

  • Save kkappel/81669a5df943a1798d0f1af730107928 to your computer and use it in GitHub Desktop.

Select an option

Save kkappel/81669a5df943a1798d0f1af730107928 to your computer and use it in GitHub Desktop.
# 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