public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] Connecting to Jeeni via ethernet.
@ 2002-11-08  6:38 Ormund Williams
  2002-11-08  6:52 ` Mark Salter
  2002-11-08  7:31 ` Greg Holdren
  0 siblings, 2 replies; 6+ messages in thread
From: Ormund Williams @ 2002-11-08  6:38 UTC (permalink / raw)
  To: eCos discussion

Hi all

Using gdb (arm-elf) version 5.2.1, I tried to connect to a Jeeni via
ethernet with the gdb command:

  gdb> target rdi e:192.168.1.57

gdb responds that it cannot open device "e:192.168.1.57"

  gdb> target rdi /dev/ttyS0

...works.

What's wrong?

--
Ormund


-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ECOS] Connecting to Jeeni via ethernet.
  2002-11-08  6:38 [ECOS] Connecting to Jeeni via ethernet Ormund Williams
@ 2002-11-08  6:52 ` Mark Salter
  2002-11-08  7:05   ` Robert Cragie
  2002-11-08  7:31 ` Greg Holdren
  1 sibling, 1 reply; 6+ messages in thread
From: Mark Salter @ 2002-11-08  6:52 UTC (permalink / raw)
  To: ecos-discuss

>>>>> Ormund Williams writes:

> Hi all
> Using gdb (arm-elf) version 5.2.1, I tried to connect to a Jeeni via
> ethernet with the gdb command:

gdb> target rdi e:192.168.1.57

> gdb responds that it cannot open device "e:192.168.1.57"

gdb> target rdi /dev/ttyS0

> ...works.

> What's wrong?

Nothing other than the fact that GDB doesn't support rdi over ethernet.

--Mark

-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [ECOS] Connecting to Jeeni via ethernet.
  2002-11-08  6:52 ` Mark Salter
@ 2002-11-08  7:05   ` Robert Cragie
  2002-11-08  7:14     ` Mark Salter
  0 siblings, 1 reply; 6+ messages in thread
From: Robert Cragie @ 2002-11-08  7:05 UTC (permalink / raw)
  To: Mark Salter, ecos-discuss

GDB most certainly does support RDI over Ethernet.

Try:

gdb> target rdi e=192.168.1.57

Robert Cragie, Design Engineer
 
Direct: +44 (0) 114 281 4512
_______________________________________________________________
Jennic Ltd, Furnival Street, Sheffield, S1 4QT,  UK
http://www.jennic.com  Tel: +44 (0) 114 281 2655   Confidential
_______________________________________________________________
Visit our stand at Electronica, Munich 12-14 November 2002
_______________________________________________________________ 

-----Original Message-----
From: ecos-discuss-owner@sources.redhat.com
[mailto:ecos-discuss-owner@sources.redhat.com]On Behalf Of Mark Salter
Sent: 08 November 2002 14:52
To: ecos-discuss@sources.redhat.com
Subject: Re: [ECOS] Connecting to Jeeni via ethernet.


>>>>> Ormund Williams writes:

> Hi all
> Using gdb (arm-elf) version 5.2.1, I tried to connect to a Jeeni via
> ethernet with the gdb command:

gdb> target rdi e:192.168.1.57

> gdb responds that it cannot open device "e:192.168.1.57"

gdb> target rdi /dev/ttyS0

> ...works.

> What's wrong?

Nothing other than the fact that GDB doesn't support rdi over ethernet.

--Mark

-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss



-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ECOS] Connecting to Jeeni via ethernet.
  2002-11-08  7:05   ` Robert Cragie
@ 2002-11-08  7:14     ` Mark Salter
  0 siblings, 0 replies; 6+ messages in thread
From: Mark Salter @ 2002-11-08  7:14 UTC (permalink / raw)
  To: rcc; +Cc: ecos-discuss

>>>>> Robert Cragie writes:

> GDB most certainly does support RDI over Ethernet.
> Try:

gdb> target rdi e=192.168.1.57

Ah, that's news to me. Thanks!

--Mark

-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ECOS] Connecting to Jeeni via ethernet.
  2002-11-08  6:38 [ECOS] Connecting to Jeeni via ethernet Ormund Williams
  2002-11-08  6:52 ` Mark Salter
@ 2002-11-08  7:31 ` Greg Holdren
  2002-11-08  8:07   ` Ormund Williams
  1 sibling, 1 reply; 6+ messages in thread
From: Greg Holdren @ 2002-11-08  7:31 UTC (permalink / raw)
  To: ecos-discuss


----- Original Message ----- 
From: Ormund Williams <owilliams@compuwash.com>
To: eCos discussion <ecos-discuss@sources.redhat.com>
Sent: Friday, November 08, 2002 6:49 AM
Subject: [ECOS] Connecting to Jeeni via ethernet.


> Hi all
> 
> Using gdb (arm-elf) version 5.2.1, I tried to connect to a Jeeni via
> ethernet with the gdb command:
> 
>   gdb> target rdi e:192.168.1.57
> 
> gdb responds that it cannot open device "e:192.168.1.57"
> 

Use: target rdi e=192.168.1.57

I use Insight 5.2.1 and Jeeni with a EB40 and EB55 boards just fine.

Greg



-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [ECOS] Connecting to Jeeni via ethernet.
  2002-11-08  7:31 ` Greg Holdren
@ 2002-11-08  8:07   ` Ormund Williams
  0 siblings, 0 replies; 6+ messages in thread
From: Ormund Williams @ 2002-11-08  8:07 UTC (permalink / raw)
  To: eCos discussion

On Fri, 2002-11-08 at 10:31, Greg Holdren wrote:
> 
> Use: target rdi e=192.168.1.57
> 
> I use Insight 5.2.1 and Jeeni with a EB40 and EB55 boards just fine.
> 
> Greg
> 
Thanks, it works!  it was "=" insted of ":".

--
Ormund
 


-- 
Before posting, please read the FAQ: http://sources.redhat.com/fom/ecos
and search the list archive: http://sources.redhat.com/ml/ecos-discuss

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2002-11-08 16:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-11-08  6:38 [ECOS] Connecting to Jeeni via ethernet Ormund Williams
2002-11-08  6:52 ` Mark Salter
2002-11-08  7:05   ` Robert Cragie
2002-11-08  7:14     ` Mark Salter
2002-11-08  7:31 ` Greg Holdren
2002-11-08  8:07   ` Ormund Williams

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 read-only IMAP folder(s) and NNTP newsgroup(s).