Hi,
I'm new in programming AM335x EVM and for this I have a host with a virtual machine (VMware Player Ubuntu ver. 12.04 64-bit) and ( SDK ver. 4_06_00_02 ). I have been following the Hand's on for TI(http://processors.wiki.ti.com/index.php/Sitara_Linux_Training:_Hands_on_with_the_SDK) and also I have made this connection (http://processors.wiki.ti.com/index.php/File:Bone_environ.png).
However I have made this when I run ./Setup.sh automatic IP isn't given to the board. If I make ifconfig over the board, it give following resutl:
eth0 Link encap:Ethernet HWaddr 00:18:31:E1:FC:42
UP BROADCAST ALLMULTI MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:241 errors:0 dropped:0 overruns:0 frame:0
TX packets:241 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:314542 (307.1 KiB) TX bytes:314542 (307.1 KiB)
In my host I have the following NFS config:
# /etc/exports: the access control list for filesystems which may be exported
# to NFS clients. See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
#
# Example for NFSv4:
# /srv/nfs4 gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
# /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check)
#
/home/ 192.168.3.0/24(rw,no_root_squash,no_subtree_check)
/home/sst/sitara/targetNFS *(rw,nohide,insecure,no_subtree_check,async,no_root_squash)
I have this dhcp client:
# tail -n 15 /var/lib/dhcp/dhclient.*.leases
}
lease {
interface "eth1";
fixed-address 192.168.3.58;
option subnet-mask 255.255.255.0;
option routers 192.168.3.1;
option dhcp-lease-time 600;
option dhcp-message-type 5;
option domain-name-servers 192.168.3.1;
option dhcp-server-identifier 192.168.3.1;
option domain-name "labornetz corp.trumpf.com";
renew 2 2012/12/04 16:59:05;
rebind 2 2012/12/04 17:03:54;
expire 2 2012/12/04 17:05:09;
}
Someone's some idea that it can happen
-Regards