DD-WRT Development in VirtualBox with Debian X64: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
| Line 8: | Line 8: | ||
I'm running as root because this box will not have any outside incoming connections anyways | I'm running as root because this box will not have any outside incoming connections anyways | ||
<pre> | <pre> | ||
apt-get install gcc g++ binutils patch bzip2 flex bison make gettext unzip zlib1g-dev libc6 subversion | apt-get install gcc g++ binutils patch bzip2 flex bison make gettext unzip zlib1g-dev libc6 subversion | ||
</pre> | </pre> | ||
| Line 16: | Line 16: | ||
mkdir ~/toolchains | mkdir ~/toolchains | ||
cd ~/toolchains | cd ~/toolchains | ||
wget ftp://ftp.dd-wrt.com/toolchains/toolchains.tar.xz | |||
</pre> | </pre> | ||
Revision as of 20:27, 4 December 2014
Installing Debian x64
In Virtualbox, I am installing the 7.2.0 Wheezy 3 DVD set and afterwards running an apt-get update
Preparing development environment for DD-WRT
After ensuring all the updates, we want to install the development libaries
I'm running as root because this box will not have any outside incoming connections anyways
apt-get install gcc g++ binutils patch bzip2 flex bison make gettext unzip zlib1g-dev libc6 subversion
Downloading DD-WRT Toolchains
mkdir ~/toolchains cd ~/toolchains wget ftp://ftp.dd-wrt.com/toolchains/toolchains.tar.xz