Hi mak3r,
I'm using the following the same method, upload the sketch (below) thru USB then connect my PC's LAN port to Galileo's LAN port.
Sketch:
void setup()
{
system("telnetd -l /bin/sh");
system("ifconfig eth0 169.254.1.5 netmask 255.255.0.0 up");
}
With this, I still couldn't telnet to my board. When I ping my board, this is what I get:
Reply from 192.168.1.15: Destination host unreachable.
...
Ping statistics for 169.254.1.5:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Is there any step I missed?
My firmware is 1.0.2 (based on Arduino IDE without SD-Card) and I'm booting from SD-Card (LINUX_IMAGE_FOR_SD_Intel_Galileo_v1.0.2).
Thanks!