public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* RE: [ECOS] ECOS Networking with Redboot on 8260
@ 2003-10-14 15:44 Oliveira, David
  2003-10-14 16:16 ` Andrew Lunn
  0 siblings, 1 reply; 5+ messages in thread
From: Oliveira, David @ 2003-10-14 15:44 UTC (permalink / raw)
  To: 'Andrew Lunn'; +Cc: 'ecos-discuss@sources.redhat.com'



Andrew,
    Thank you for your reply. I have rebuilt the kernel again without the
networking and re-ran the tests. The "basic" and "context" tests do pass.
The cache tests are still failing.

    I find this situation strange since I am using the same evaluation board
as one of the predefined templates in the eCos distribution. I have made no
changes. Does anybody know if this port/template has been tested before
(Motorola 8260 VADS)? I do not know if this is a real problem that needs to
be debugged, or just something I am doing wrong.

Thanks for the help
    David Oliveira

-----Original Message-----
From: Andrew Lunn [mailto:andrew@lunn.ch]
Sent: Monday, October 13, 2003 1:38 PM
To: Oliveira, David
Cc: 'ecos-discuss@sources.redhat.com'
Subject: Re: [ECOS] ECOS Networking with Redboot on 8260


>   If I rebuild the ECOS library without networking, most of the standard
> tests will execute and pass. The tests that still will not pass are:
cache,
> cxxsupp, execept1, kexcept1, kcache1, kcache2. I think that "basic" and
> "context" tests also fail, but I will have to rebuild and test again to
> confirm this.

If context is failing you probably cannot context switch
properly. Since the stack uses threads, this would be a problem.

Similarly, quiet a few network devices need to play with caches, so if
they don't work, that could also be a problem.

Before doing more with the network stack i would try to solve these
problems. cxxsupp is not so important.

          Andrew

-- 
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] 5+ messages in thread

* Re: [ECOS] ECOS Networking with Redboot on 8260
  2003-10-14 15:44 [ECOS] ECOS Networking with Redboot on 8260 Oliveira, David
@ 2003-10-14 16:16 ` Andrew Lunn
  2003-10-14 16:24   ` Gary Thomas
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Lunn @ 2003-10-14 16:16 UTC (permalink / raw)
  To: Oliveira, David; +Cc: 'ecos-discuss@sources.redhat.com'

On Tue, Oct 14, 2003 at 11:45:59AM -0400, Oliveira, David wrote:
> 
> 
> Andrew,
>     Thank you for your reply. I have rebuilt the kernel again without the
> networking and re-ran the tests. The "basic" and "context" tests do pass.
> The cache tests are still failing.
> 
>     I find this situation strange since I am using the same evaluation board
> as one of the predefined templates in the eCos distribution. I have made no
> changes. Does anybody know if this port/template has been tested before
> (Motorola 8260 VADS)? I do not know if this is a real problem that needs to
> be debugged, or just something I am doing wrong.

I don't have access to one of these boards. Gary might?

I did some digging around and found a test result from August on a
Adder PPC850 for the test cache. The test timed out rather than
completed. 

Try running the test by hand rather than using the configtool. Give it
a bit longer and see if it completes or crashes etc.

  Andrew

  

-- 
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] 5+ messages in thread

* Re: [ECOS] ECOS Networking with Redboot on 8260
  2003-10-14 16:16 ` Andrew Lunn
@ 2003-10-14 16:24   ` Gary Thomas
  0 siblings, 0 replies; 5+ messages in thread
From: Gary Thomas @ 2003-10-14 16:24 UTC (permalink / raw)
  To: Andrew Lunn; +Cc: Oliveira, David, 'ecos-discuss@sources.redhat.com'

On Tue, 2003-10-14 at 10:16, Andrew Lunn wrote:
> On Tue, Oct 14, 2003 at 11:45:59AM -0400, Oliveira, David wrote:
> > 
> > 
> > Andrew,
> >     Thank you for your reply. I have rebuilt the kernel again without the
> > networking and re-ran the tests. The "basic" and "context" tests do pass.
> > The cache tests are still failing.
> > 
> >     I find this situation strange since I am using the same evaluation board
> > as one of the predefined templates in the eCos distribution. I have made no
> > changes. Does anybody know if this port/template has been tested before
> > (Motorola 8260 VADS)? I do not know if this is a real problem that needs to
> > be debugged, or just something I am doing wrong.
> 
> I don't have access to one of these boards. Gary might?
> 
> I did some digging around and found a test result from August on a
> Adder PPC850 for the test cache. The test timed out rather than
> completed. 
> 
> Try running the test by hand rather than using the configtool. Give it
> a bit longer and see if it completes or crashes etc.
> 

I do have one of these boards here and I just tried it.  All of the 
tests that I ran worked just fine.  Built from today's CVS using 
GCC 3.2.2

-- 
Gary Thomas <gary@mlbassoc.com>
MLB Associates


-- 
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] 5+ messages in thread

* Re: [ECOS] ECOS Networking with Redboot on 8260
  2003-10-13 15:36 Oliveira, David
@ 2003-10-13 17:38 ` Andrew Lunn
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Lunn @ 2003-10-13 17:38 UTC (permalink / raw)
  To: Oliveira, David; +Cc: 'ecos-discuss@sources.redhat.com'

>   If I rebuild the ECOS library without networking, most of the standard
> tests will execute and pass. The tests that still will not pass are: cache,
> cxxsupp, execept1, kexcept1, kcache1, kcache2. I think that "basic" and
> "context" tests also fail, but I will have to rebuild and test again to
> confirm this.

If context is failing you probably cannot context switch
properly. Since the stack uses threads, this would be a problem.

Similarly, quiet a few network devices need to play with caches, so if
they don't work, that could also be a problem.

Before doing more with the network stack i would try to solve these
problems. cxxsupp is not so important.

          Andrew

-- 
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] 5+ messages in thread

* [ECOS] ECOS Networking with Redboot on 8260
@ 2003-10-13 15:36 Oliveira, David
  2003-10-13 17:38 ` Andrew Lunn
  0 siblings, 1 reply; 5+ messages in thread
From: Oliveira, David @ 2003-10-13 15:36 UTC (permalink / raw)
  To: 'ecos-discuss@sources.redhat.com'

  I have just started working with ECOS and I am having a problem running
the network stack in both redboot and the kernel.

  I am using a Motorola 8260 VADS module and have built and installed
Redboot with the network stack. This appears to work properly. I then built
the ECOS library with networking and attempted to execute the standard
tests. The system will lockup and timeout when attempting to execute any of
the tests. The last message displayed in the output window is "Init device
'fec_eth'".

  If I rebuild the ECOS library without networking, most of the standard
tests will execute and pass. The tests that still will not pass are: cache,
cxxsupp, execept1, kexcept1, kcache1, kcache2. I think that "basic" and
"context" tests also fail, but I will have to rebuild and test again to
confirm this.

  I have searched the ecos-discuss archives and found a message that
indicated that the IP address used by Redboot and the kernel must not be the
same. I tried this, but it did not help. I am using fixed IP addresses, i.e.
no bootp or dhcp.

  My application will require the network stack, and I would really prefer
to debug over the network instead of the serial port.

  If anybody has any idea what I may be doing wrong, please let me know.

Thank you,
   David Oliveira
   doliveira@telco.com


-- 
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] 5+ messages in thread

end of thread, other threads:[~2003-10-14 16:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-14 15:44 [ECOS] ECOS Networking with Redboot on 8260 Oliveira, David
2003-10-14 16:16 ` Andrew Lunn
2003-10-14 16:24   ` Gary Thomas
  -- strict thread matches above, loose matches on Subject: below --
2003-10-13 15:36 Oliveira, David
2003-10-13 17:38 ` Andrew Lunn

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).