@Razvan-Dragomirescu said in My Omega 2/2+ dock\new:
Do you plan to offer these commercially (assembled)? They would fit perfectly for a project I am working on.
Currently i'm not planning to. I can make one or two boards for who can't solder it's own, but for the moment i'm not planning anything commercial.
If you need some production beyond that you can do it, the license allows it. If some commercial production is made, any donations will be appreciated.
@Douglas-Kryder said in My Omega 2/2+ dock\new:
@valerionew ok, thanks for the information. my boards arrived today so i pick them up Monday from post office and begin assembly. did you have to perform any kind of setup for this ethernet board like described on this page for the onion eth expansion?
https://docs.onion.io/omega2-docs/using-ethernet-expansion.html#using-ethernet-expansion
Cool! Pretty quick in the US! In Europe usually i need to wait about 20 days.
Moving on, i've done a lot of tests troubleshooting the ethernet in the previous version, so i can't remember exactly if i've done any extra configuration. For what i can remeber, the only configuration that was needed, was the first point of that guide. Currently in my /etc/config/network
i have this:
config interface 'wan'
option ifname 'eth0'
option proto 'dhcp'
So modify/add that and don't forget to restart the daemon: /etc/init.d/network restart
If everything is working correctly, you'll se something like this on the dmesg when you connect the cable: rt3050-esw 10110000.esw: link changed 0x01
;
You'll be able to see the eth0 local ip with ifconfig
;
And you'll be able to ping anything on the internet with ping -I eth0 [address]
.
Let me know!