Any plans for DD-WRT on La Fonera? Source code is out!

Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware
Goto page Previous  1, 2, 3 ... 5, 6, 7 ... 36, 37, 38  Next
Author Message
paulo_andre
DD-WRT User


Joined: 15 Oct 2006
Posts: 82

PostPosted: Mon Nov 06, 2006 9:27    Post subject: Reply with quote
@anectine17
that article links to the same page as mentioned 7 posts ago, by krikkit

@Krasny
when you say its firmware you mean the official firmware? and does it support wpa on the wireless bridge?
and by the way, if that's true, then according to the openwrt page there are a few more compatible:
Smc WEBT-G aka Philips SNR6500 aka Siemens Wlan Repeater 108 (AR2316)
Sponsor
Krasny
DD-WRT Novice


Joined: 11 Jun 2006
Posts: 29

PostPosted: Mon Nov 06, 2006 14:13    Post subject: Reply with quote
paulo i dont know what modes support the smc brigde, i don´t have it, but u can see a speadsheet here, it seems that it support WPA, in SMC´s page you can find firmware updates too.

And i don´t know if it has differences between "La Fonera", but i saw the image and they look very similar!, maybe both are based on atheros pcb reference design.

(sorry for my bad english, i´m spanish)
goldserve
DD-WRT User


Joined: 07 Jun 2006
Posts: 115

PostPosted: Mon Nov 06, 2006 16:16    Post subject: Reply with quote
Since the Atheros reference design uses SPI memory instead of parallel flash, is it possible to attach a SD card to the SPI bus and use the hardware SPI driver to get more memory?
wildblue
DD-WRT User


Joined: 06 Nov 2006
Posts: 83
Location: Rheinland Pfalz - Germany

PostPosted: Mon Nov 06, 2006 16:18    Post subject: Reply with quote
once again...

is it possible to use the firmware of a smc or meraki router as they have identical pcb designs?
goldserve
DD-WRT User


Joined: 07 Jun 2006
Posts: 115

PostPosted: Mon Nov 06, 2006 16:20    Post subject: Reply with quote
Now that we have the sources for all the routers, it shouldn't be too hard to figure that out. I'm sure there are some differences between the PCBs though...

Configuration wise, the fonera has 8mb flash and 16mb ram where the SMC only has 4mb/8mb
wildblue
DD-WRT User


Joined: 06 Nov 2006
Posts: 83
Location: Rheinland Pfalz - Germany

PostPosted: Mon Nov 06, 2006 17:07    Post subject: Reply with quote
and whats about to use redboot on a "la fonera" ?
i think this is for testing different firmwares.

i would like to do tests, too.
but my la-fonera is not delivered until now.

can anyone try to use the meraki-firmware because i am interrested in the mesh capability.
Honki
DD-WRT User


Joined: 07 Jun 2006
Posts: 176

PostPosted: Mon Nov 06, 2006 20:02    Post subject: Reply with quote
krikkit wrote:
might be interesting for some of you...

http://stefans.datenbruch.de/lafonera/ nice guide to enable ssh on the "la fonera" without opening the box... already tested it, and works nice


Can somebody tell me this in German, i don´t understand this Question Question Question

or i wish me some step by step HowTo...
dadaniel
DD-WRT Novice


Joined: 05 Jul 2006
Posts: 38

PostPosted: Mon Nov 06, 2006 20:46    Post subject: Reply with quote
BrainSlayer wrote:
if ssh is enabled you can also flash the unit without serial console. just by using the mtd utility and scp


and what about the firmware certificate? does it work without them?
wildblue
DD-WRT User


Joined: 06 Nov 2006
Posts: 83
Location: Rheinland Pfalz - Germany

PostPosted: Mon Nov 06, 2006 22:53    Post subject: Reply with quote
ok, i want to try to buid a firmware for the fonera, but i need some help.

i recently builded a linux kernel for my desktop-linux.

how can i build one for the la fonera.

if i download the sourcecode of dd-wrt or the original lafonera one then i get some errors.

anyone who can explain this to me?

i speak german as well.
krikkit
DD-WRT User


Joined: 07 Jun 2006
Posts: 68
Location: Vienna

PostPosted: Mon Nov 06, 2006 23:56    Post subject: Reply with quote
also not from me but very usefull:

http://olsrexperiment.de/sven-ola/fonera/ <-- some packages for the fonera especially usefull is wpa_suplicant ...which made it possible for the fonera to connect to a wpa encrypted network in client mode..

_________________
Using Firmware:
DD-WRT v24-sp2 (01/29/09) vpn
(SVN revision 11514) on WRT54G v3.1
goldserve
DD-WRT User


Joined: 07 Jun 2006
Posts: 115

PostPosted: Tue Nov 07, 2006 0:27    Post subject: Reply with quote
Can you tell us how to connect via client mode? All the commands and scripts you used, including the package you installed? Thanks!
krikkit
DD-WRT User


Joined: 07 Jun 2006
Posts: 68
Location: Vienna

PostPosted: Tue Nov 07, 2006 11:25    Post subject: Reply with quote
just a short listing...

first install wpa-supplicant:

Code:
ipkg install http://olsrexperiment.de/sven-ola/fonera/zlib_1.2.3-3_mips.ipk
ipkg install http://olsrexperiment.de/sven-ola/fonera/libopenssl_0.9.8d-1_mips.ipk
ipkg install http://olsrexperiment.de/sven-ola/fonera/wpa-supplicant_0.5.5-1_mips.ipk


now kill all the old wlan setup und create a new ath0 interface in client mode...

Code:

ifconfig ath0 down
ifconfig ath1 down
ifconfig tun0 down
ifconfig eth0:1 down
/etc/init.d/N50chillispot stop
killall chilli
killall hostapd
killall dnsmasq
killall wpa_supplicant
wlanconfig ath0 destroy
wlanconfig ath1 destroy
wlanconfig ath0 create wlandev wifi0 wlanmode sta
ifconfig ath0 up
wpa_supplicant -Bw -Dwext -iath0 -c/etc/wpa_supplicant.conf
ifconfig ath0 192.168.1.12 netmask 255.255.255.0 up


Code:
root@OpenWrt:~# more /etc/wpa_supplicant.conf
network={
 ssid="www.krikkit.net"
 #psk="XXXXX"
 psk=YYYYYYYY
}



after this the fonera should be connected to your wpa encrypted wlan... and you should be able to ping it on the specified ip

no setup of bridging is done up to now...there is also some kind of problem with fetching ip via dhcp

if you test it on your own fonera, please report any problems and additional enhancements made...

_________________
Using Firmware:
DD-WRT v24-sp2 (01/29/09) vpn
(SVN revision 11514) on WRT54G v3.1
Sycho
DD-WRT User


Joined: 07 Nov 2006
Posts: 58

PostPosted: Tue Nov 07, 2006 23:37    Post subject: Reply with quote
You say lafonera has 16mb ram but as i see, the ram chip is HY57V281620 and it's only 8mb. I can't check the flash as i don't have my unit yet.
It would be great to know if there is any fully compatible hardware and having it's binary firmware file because i could program the flash outside the board (unsoldering it) in a flash/eeprom programmer.
Maybe we could change the flash for a smaller one if that were the only difference with the smc device and flash that new 2mb chip before soldering on lafonera board.
Sycho
DD-WRT User


Joined: 07 Nov 2006
Posts: 58

PostPosted: Wed Nov 08, 2006 17:00    Post subject: Reply with quote
Sorry is correct. SMC, Philips and Siemens similar devices use A2V64S40 8Mb ram and lafonera uses HY57V281620 16Mb Ram. I'm not sure if it would run a smc firmware (changing flash) with a bigger ram chip.
paulo_andre
DD-WRT User


Joined: 15 Oct 2006
Posts: 82

PostPosted: Wed Nov 08, 2006 17:34    Post subject: Reply with quote
from what you said, you can test it, right? I already ordered my fonera (in the last day before the price went up), so I'm waiting for good news
Goto page Previous  1, 2, 3 ... 5, 6, 7 ... 36, 37, 38  Next Display posts from previous:    Page 6 of 38
Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum