Commit 51e696b5 authored by Krzysztof Klis's avatar Krzysztof Klis

Added openwrt backfire notes and make rule

parent 62895a86
...@@ -4,5 +4,7 @@ tomato: ...@@ -4,5 +4,7 @@ tomato:
mipsel-uclibc-gcc -O2 -s -o proxy proxy.c mipsel-uclibc-gcc -O2 -s -o proxy proxy.c
openwrt: openwrt:
mipsel-linux-uclibc-gcc -O2 -s -o proxy proxy.c mipsel-linux-uclibc-gcc -O2 -s -o proxy proxy.c
backfire:
mipsel-openwrt-linux-uclibc-gcc -O2 -s -o proxy proxy.c
clean: clean:
rm -rf proxy proxy.exe rm -rf proxy proxy.exe
...@@ -16,6 +16,17 @@ Next, build proxy for Tomato with: ...@@ -16,6 +16,17 @@ Next, build proxy for Tomato with:
``` ```
make tomato make tomato
``` ```
For OpenWRT firmware (http://openwrt.org) you can find right toolchains in folders with corresponding firmware images. For example, the Backfire toolchain for Broadcom chipset can be found at http://downloads.openwrt.org/backfire/10.03.1/brcm-2.4 in the *OpenWrt-Toolchain-brcm-2.4-for-mipsel-gcc-3.4.6_uClibc-0.9.30.1.tar.bz2* archive.
Make the software with:
```
make openwrt
```
when using Whiterussian and Kamikaze toolchains, or
```
make backfire
```
when using the Backfire toolchain.
## Basic usage ## Basic usage
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment