Italiano English
Modifica History Actions

Differenze per "CrossCompile"

Differenze tra le versioni 2 e 5 (in 3 versioni)
Versione 2 del 2007-05-05 13:06:14
Dimensione: 813
Autore: ZioPRoTo
Commento:
Versione 5 del 2007-05-05 13:23:59
Dimensione: 1975
Autore: ZioPRoTo
Commento:
Le cancellazioni sono segnalate in questo modo. Le aggiunte sono segnalate in questo modo.
Linea 1: Linea 1:
= Cross Compile Software Sources = = Cross Compile Software Sources for Linksys WRT54G =
Linea 3: Linea 3:
In this section we are going to see how to cross compile software for the mipsel architecture, to make it run on the
Linksys WRT54GL router
In this document we are going to see how to cross compile software for the mipsel architecture, to make it run on the
Linksys WRT54GL router.

I used Freifunk Firmware and OpenWRT Firmware to test this stuff, any version should be fine

== Install the compiler ==
Linea 11: Linea 15:
tar -zxvf tar -zxvf WRT54GL_v4.30.9_US.tgz
Linea 23: Linea 27:
== Compile lastest version of OLSR ==

Install the compiler as in the first section of this page
Linea 24: Linea 32:
{{{
cd ~
wget http://www.olsr.org/releases/0.5/olsrd-0.5.0.tar.bz2
tar -jxvf olsrd-0.5.0.tar.bz2
}}}

please note that file names may slighly change over time

now edit the followgin Makefile {{{olsrd-0.5.0/make/Makefile.linux}}} and add
{{{
CC=mipsel-uclibc-gcc
}}}

Cool, now just

{{{
make
make libs
}}}

and you have your mipsel binaries
copy the olsrd binary and the libs to the WRT54G manually with scp

Please not that using the original libs plugin files compiled against olsrd-0.4.10 will cause olsrd-0.5.x to segmentain fault

== Compile lastest version of RASTA ==

Install the compiler as in the first section of this page

Get the source code of RASTA with svn

{{{
cd ~
svn co https://minerva.netgroup.uniroma2.it/svn/rastayaqosa/rasta/trunk rasta
}}}

add in the Makefile proper compiler
{{{
CC=mipsel-uclibc-gcc
}}}

Now just Make !

Cross Compile Software Sources for Linksys WRT54G

In this document we are going to see how to cross compile software for the mipsel architecture, to make it run on the Linksys WRT54GL router.

I used Freifunk Firmware and OpenWRT Firmware to test this stuff, any version should be fine

Install the compiler

First of all we need a compiler for such architecture, so grab a shell on your linux box and download the following

cd ~
wget ftp://ftp.linksys.com/opensourcecode/wrt54gl/4.30.9/WRT54GL_v4.30.9_US.tgz
tar -zxvf WRT54GL_v4.30.9_US.tgz

Please note that this compiler will produce binaries executable on the WRT54G router, but not on the Fonera

Now we have to add there new tools to out path

export PATH="~/WRT54GL_4_30_9_1101_US/tools/brcm/hndtools-mipsel-linux/bin:~/WRT54GL_4_30_9_1101_US/tools/brcm/hndtools-mipsel-uclibc/bin:$PATH"

Congratulation, you installed the compiler

Compile lastest version of OLSR

Install the compiler as in the first section of this page

Now lets get the newest OLSR sources

cd ~
wget http://www.olsr.org/releases/0.5/olsrd-0.5.0.tar.bz2
tar -jxvf olsrd-0.5.0.tar.bz2

please note that file names may slighly change over time

now edit the followgin Makefile olsrd-0.5.0/make/Makefile.linux and add

CC=mipsel-uclibc-gcc

Cool, now just

make
make libs

and you have your mipsel binaries copy the olsrd binary and the libs to the WRT54G manually with scp

Please not that using the original libs plugin files compiled against olsrd-0.4.10 will cause olsrd-0.5.x to segmentain fault

Compile lastest version of RASTA

Install the compiler as in the first section of this page

Get the source code of RASTA with svn

cd ~
svn co https://minerva.netgroup.uniroma2.it/svn/rastayaqosa/rasta/trunk rasta

add in the Makefile proper compiler

CC=mipsel-uclibc-gcc

Now just Make !