Hi Sezai,
There are various ways to configure the network interface on your board.
1. The first way is to use bootargs as we discuss this option in the previous posts of the present thread.
2. The ip configuration could be set in the u-boot. Use the following example for static configuration:
U-Boot> setenv ipaddr 192.168.100.6
U-Boot> setenv serverip 192.168.1.1
U-Boot> setenv netmask 255.255.0.0
U-Boot> setenv hostname canyonlands
or
U-Boot> setenv autoload no
U-Boot> dhcp
for dynamic configuration one.
If you wish you could save ip coniguration:
U-Boot> saveenv
3. Set ip configuration after kernel has been booted. Use the following example for static configuration:
ifconfig eth8 20.1.1.20 netmask 255.255.255.0 up
or
udhcpc -i eth1
for dynamic configuration.
BR
Tsvetolin Shulev