* tftp on ppcboot 1.1.5
@ 2002-05-15 8:46 gao xiaoguo
2002-05-15 9:58 ` Arun Dharankar
2002-05-15 11:49 ` Wolfgang Denk
0 siblings, 2 replies; 5+ messages in thread
From: gao xiaoguo @ 2002-05-15 8:46 UTC (permalink / raw)
To: linuxppc-embedded
I want to use tftp to download file into target machine,but always failed.
The tftp server on linux has already been setup and tested, I tftp a file successfully
by using other tftp client on windows.
Following is my environment and operation log, and I found the ip/udp datagram on network
really is 0.0.0.69->192.168.1.105,so nobody will answer to the tftp request. Why the
ip address of server is changed from 192.168.1.105 to 0.0.0.69 ? Are there something
I leave.
CPU: XPC860xxZPnnD3 at 48 MHz: 4 kB I-Cache 4 kB D-Cache FEC present
Board: FADS with db MPC821, MPC860 / MPC860SAR / MPC860T rev ENG or PILOT
DRAM: (4 MB SDRAM) 8 MB
FLASH: 2 MB
=>printenv
bootargs=
bootcmd=bootm 2800100
baudrate=115200
loads_echo=1
clocks_in_mhz=1
ethaddr=00:00:00:01:02:03
serverip=192.168.1.105
ipaddr=192.168.1.99
netmask=255.255.255.0
=>tftpt\b \bboot 100000 testfile
ARP broadcast 1
Retry count exceeded; starting again
ARP broadcast 1
TFTP from server 192.168.1.105; our IP address is 192.168.1.99
Filename 'testfile'.
Load address: 0x100000
Loading: *\bT T T T
Retry count exceeded; starting again
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: tftp on ppcboot 1.1.5
2002-05-15 8:46 tftp on ppcboot 1.1.5 gao xiaoguo
@ 2002-05-15 9:58 ` Arun Dharankar
2002-05-15 11:49 ` Wolfgang Denk
1 sibling, 0 replies; 5+ messages in thread
From: Arun Dharankar @ 2002-05-15 9:58 UTC (permalink / raw)
To: gao xiaoguo, linuxppc-embedded
Following is different in my case (8260ADS board):
- Load address is 0x500000 (this may not be a problem)
- ethaddr is 00:11:22:33:44:55 (this prevented tftp in my case
with similar symptoms as you describe if I used
a1:b2:c3:d4:e5:c6, and I dont know why, and could
be the problem in your case)
- tftp server has full path in inetd.conf; i.e. in.tftpd -s /tftpboot
and then use tftp 0x500000 /tftpboot/testfile (this may not
be a problem)
- Another possibility (as in my case of another similar board),
the board was not setup properly in start.S.
On Wednesday 15 May 2002 04:46 am, gao xiaoguo wrote:
> I want to use tftp to download file into target machine,but always failed.
> The tftp server on linux has already been setup and tested, I tftp a file
> successfully by using other tftp client on windows.
>
> Following is my environment and operation log, and I found the ip/udp
> datagram on network really is 0.0.0.69->192.168.1.105,so nobody will answer
> to the tftp request. Why the ip address of server is changed from
> 192.168.1.105 to 0.0.0.69 ? Are there something I leave.
>
> CPU: XPC860xxZPnnD3 at 48 MHz: 4 kB I-Cache 4 kB D-Cache FEC present
> Board: FADS with db MPC821, MPC860 / MPC860SAR / MPC860T rev ENG or PILOT
> DRAM: (4 MB SDRAM) 8 MB
> FLASH: 2 MB
>
> =>printenv
>
> bootargs=
> bootcmd=bootm 2800100
> baudrate=115200
> loads_echo=1
> clocks_in_mhz=1
> ethaddr=00:00:00:01:02:03
> serverip=192.168.1.105
> ipaddr=192.168.1.99
> netmask=255.255.255.0
>
> =>tftpt boot 100000 testfile
>
> ARP broadcast 1
>
> Retry count exceeded; starting again
> ARP broadcast 1
> TFTP from server 192.168.1.105; our IP address is 192.168.1.99
> Filename 'testfile'.
> Load address: 0x100000
> Loading: *T T T T
> Retry count exceeded; starting again
>
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: tftp on ppcboot 1.1.5
@ 2002-05-15 10:14 Kári Davíesson
0 siblings, 0 replies; 5+ messages in thread
From: Kári Davíesson @ 2002-05-15 10:14 UTC (permalink / raw)
To: Arun Dharankar, gao xiaoguo, linuxppc-embedded
> -----Original Message-----
> From: Arun Dharankar [mailto:ADharankar@ATTBI.Com]
> Sent: 15. maí 2002 09:58
> To: gao xiaoguo; linuxppc-embedded@lists.linuxppc.org
> Subject: Re: tftp on ppcboot 1.1.5
>
>
>
> Following is different in my case (8260ADS board):
> - Load address is 0x500000 (this may not be a problem)
> - ethaddr is 00:11:22:33:44:55 (this prevented tftp in my case
> with similar symptoms as you describe if I used
> a1:b2:c3:d4:e5:c6, and I dont know why, and could
First octet must be an even number, i.e. a0:b2:c3:d4:e5:c6 should be o.k.
The last bit in the first octet is the multicast bit.
The first bit in the first octet is the I/G address bit (Individual /Group) and
signifies if the OUI (first half of the MAC address) is universal (set to 0) or local (set to 1).
The second bit in the first octet must be set to 0.
I believe this has been addressed before on this list.
K.D.
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: tftp on ppcboot 1.1.5
2002-05-15 8:46 tftp on ppcboot 1.1.5 gao xiaoguo
2002-05-15 9:58 ` Arun Dharankar
@ 2002-05-15 11:49 ` Wolfgang Denk
2002-05-15 13:08 ` 8260 and SPI driver Julien Eyries
1 sibling, 1 reply; 5+ messages in thread
From: Wolfgang Denk @ 2002-05-15 11:49 UTC (permalink / raw)
To: gao xiaoguo; +Cc: linuxppc-embedded
In message <001301c1fbed$0efb5da0$6801a8c0@guoguangacer> you wrote:
>
> I want to use tftp to download file into target machine,but always failed.
...
> ethaddr=00:00:00:01:02:03
Get yourself a valid MAC address.
Also, questions like this are off-topic here; you should ask PPCBoot
related stuff on the ppcboot-users mailing list.
Wolfgang Denk
--
Software Engineering: Embedded and Realtime Systems, Embedded Linux
Phone: (+49)-8142-4596-87 Fax: (+49)-8142-4596-88 Email: wd@denx.de
The most difficult thing in the world is to know how to do a thing
and to watch someone else doing it wrong, without commenting.
-- T.H. White
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
* 8260 and SPI driver
2002-05-15 11:49 ` Wolfgang Denk
@ 2002-05-15 13:08 ` Julien Eyries
0 siblings, 0 replies; 5+ messages in thread
From: Julien Eyries @ 2002-05-15 13:08 UTC (permalink / raw)
To: linuxppc-embedded
Hello !
I have searched the archive for an 8260 SPI driver and found some
messages related to this topic, but it seems to me there is currently no
working 8260 SPI driver. could someone confirm me that point ?
thanks,
--
Julien Eyries
R&D engineer
Thales Broadcast & Multimedia (ex-thomcast)
email: julien.eyries@thales-bm.com
fax: 33(0) 1 34 90 31 10
tel: 33(0) 1 34 90 31 01
** Sent via the linuxppc-embedded mail list. See http://lists.linuxppc.org/
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2002-05-15 13:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-15 8:46 tftp on ppcboot 1.1.5 gao xiaoguo
2002-05-15 9:58 ` Arun Dharankar
2002-05-15 11:49 ` Wolfgang Denk
2002-05-15 13:08 ` 8260 and SPI driver Julien Eyries
-- strict thread matches above, loose matches on Subject: below --
2002-05-15 10:14 tftp on ppcboot 1.1.5 Kári Davíesson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).