public inbox for ecos-discuss@sourceware.org
 help / color / mirror / Atom feed
* [ECOS] Processor Issue with i386/Redboot?
@ 2003-10-15 18:25 Michael Trozzo
  2003-10-15 18:37 ` Gary Thomas
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Trozzo @ 2003-10-15 18:25 UTC (permalink / raw)
  To: ecos-discuss

Hi,

I wrote last week about my problems creating a floppy boot image, and
have fortunately managed to work it out. Apparently, the dd command
doesn´t like it when you try to output to a network share...either that
or use rawrite (thanks, Denis).

Anyway, onto the next step of my journey.  I attempted to boot through
the floppy on a pentium 150, with the floppy set as first in the boot
sequence.  It appears not to be completing the boot process. I get a
series of dots on the screen, then a blinking cursor. After that stops,
nothing else happens.  I´ve tested this box with a Win98 boot floppy,
the Windows CDROM, and on the hard drive (which had been freshly
formatted before installing 98), and everything boots up normally. 

I then attempted to boot on a 1.4 GHz Pentium III with thw same floppy,
and after a few seconds, I got the RedBoot welcome message on screen.
Does anyone know why this would be happening? I´d really like to avoid
having to use the PIII box, since my wife uses that for her work, and
obviously my having Redboot up would take her out of action.

Mike Trozzo



--
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] Processor Issue with i386/Redboot?
  2003-10-15 18:25 [ECOS] Processor Issue with i386/Redboot? Michael Trozzo
@ 2003-10-15 18:37 ` Gary Thomas
  0 siblings, 0 replies; 6+ messages in thread
From: Gary Thomas @ 2003-10-15 18:37 UTC (permalink / raw)
  To: Michael Trozzo; +Cc: ecos-discuss

On Wed, 2003-10-15 at 12:25, Michael Trozzo wrote:
> Hi,
> 
> I wrote last week about my problems creating a floppy boot image, and
> have fortunately managed to work it out. Apparently, the dd command
> doesn´t like it when you try to output to a network share...either that
> or use rawrite (thanks, Denis).
> 
> Anyway, onto the next step of my journey.  I attempted to boot through
> the floppy on a pentium 150, with the floppy set as first in the boot
> sequence.  It appears not to be completing the boot process. I get a
> series of dots on the screen, then a blinking cursor. After that stops,
> nothing else happens.  I´ve tested this box with a Win98 boot floppy,
> the Windows CDROM, and on the hard drive (which had been freshly
> formatted before installing 98), and everything boots up normally. 
> 
> I then attempted to boot on a 1.4 GHz Pentium III with thw same floppy,
> and after a few seconds, I got the RedBoot welcome message on screen.
> Does anyone know why this would be happening? I´d really like to avoid
> having to use the PIII box, since my wife uses that for her work, and
> obviously my having Redboot up would take her out of action.
> 

I've seen this before - not all PC hardware works the same :-)  The 
problem I observed had to do with resetting the IDE hardware.

Try disabling the IDE interface like this:
  % ecosconfig import no_IDE
  % ecosconfig tree
  % make

Where the file "no_IDE" looks like this (sans "---" lines):
------------------------------------------
cdl_component CYGPKG_REDBOOT_DISK {
    user_value 0
};
------------------------------------------

If that doesn't help, try adding some messages during the initialization
of RedBoot (in .../redboot/current/src/main.c)

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

* RE: [ECOS] Processor Issue with i386/Redboot?
  2003-10-16 14:45 ` Eric Doenges
@ 2003-10-18 20:06   ` Michael Trozzo
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Trozzo @ 2003-10-18 20:06 UTC (permalink / raw)
  To: 'Eric Doenges'; +Cc: ecos-discuss

Eric,

Thanks a million. I`m slowly but surely getting there...I'm getting a
crash course on eCos architecture :-)

I downloaded your drivers, set up the packages, and after a bit of
aggravation trying to get the rest of the network to see the card (no
matter the OS) everything sees each other, and can successfully ping,
etc.

Mike



================hyperterminal screen dump=================
+Ethernet eth0: MAC address ff:ff:ff:ff:ff:ff

IP: 192.168.0.10/255.255.255.0, Gateway: 0.0.0.0

Default server: 0.0.0.0, DNS server IP: 0.0.0.0


RedBoot(tm) bootstrap and debug environment [FLOPPY]

Non-certified release, version v2_0 - built 22:13:14, Oct 16 2003


Platform: PC (I386)                   
Copyright (C) 2000, 2001, 2002, Red Hat, Inc.


RAM: 0x00000000-0x000a0000, 0x0008d290-0x000a0000 available


RedBoot> ping -v -n 4 -h 192.168.0.12
PING: Cannot reach server '192.168.0.12' (192.168.0.12)
RedBoot> ping -v -n 4 -h 192.168.0.1
PING: Cannot reach server '192.168.0.1' (192.168.0.1)
RedBoot>

-----Original Message-----
From: Eric Doenges [mailto:Eric.Doenges@DynaPel.com] 
Sent: Donnerstag, 16. Oktober 2003 16:46
To: Michael Trozzo
Cc: ecos-discuss@sources.redhat.com
Subject: Re: [ECOS] Processor Issue with i386/Redboot?


Michael Trozzo wrote:

> I've been doing some googling on this, and believe that I can use the
> NS DP83902A package for the RTL8139 chip.

I've just looked at the DP83902A driver for eCos, and I would be really
surprised if it works with the RTL8139. For a 'real' 8139 driver, check
the ecos-patches archives at
<http://sources.redhat.com/ml/ecos-patches/2003-08/msg00040.html>.
-- 
--------------------------------------------------------------------
|     Eric Doenges              |     DynaPel Laboratories GmbH    |
|     Tel: +49 89 962428 23     |     Fraunhoferstrasse 9/2        |
|     Fax: +49 89 962428 90     |     D - 85737 Ismaning, Germany  |
--------------------------------------------------------------------




-- 
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] Processor Issue with i386/Redboot?
  2003-10-16 13:26 Michael Trozzo
  2003-10-16 13:32 ` Gary Thomas
@ 2003-10-16 14:45 ` Eric Doenges
  2003-10-18 20:06   ` Michael Trozzo
  1 sibling, 1 reply; 6+ messages in thread
From: Eric Doenges @ 2003-10-16 14:45 UTC (permalink / raw)
  To: Michael Trozzo; +Cc: ecos-discuss

Michael Trozzo wrote:

> I've been doing some googling on this, and believe that I can use the NS
> DP83902A package for the RTL8139 chip. 

I've just looked at the DP83902A driver for eCos, and I would be really
surprised if it works with the RTL8139. For a 'real' 8139 driver, check
the ecos-patches archives at
<http://sources.redhat.com/ml/ecos-patches/2003-08/msg00040.html>.
-- 
--------------------------------------------------------------------
|     Eric Doenges              |     DynaPel Laboratories GmbH    |
|     Tel: +49 89 962428 23     |     Fraunhoferstrasse 9/2        |
|     Fax: +49 89 962428 90     |     D - 85737 Ismaning, Germany  |
--------------------------------------------------------------------


-- 
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] Processor Issue with i386/Redboot?
  2003-10-16 13:26 Michael Trozzo
@ 2003-10-16 13:32 ` Gary Thomas
  2003-10-16 14:45 ` Eric Doenges
  1 sibling, 0 replies; 6+ messages in thread
From: Gary Thomas @ 2003-10-16 13:32 UTC (permalink / raw)
  To: Michael Trozzo; +Cc: ecos-discuss

On Thu, 2003-10-16 at 07:26, Michael Trozzo wrote:
> Kevin,
> 
> Thanks for your help...here´s what I have:
> 
> P150 box: Allied Telesyn AT-2500TX Fast Ethernet (has an RTL8139 chip
> onboard) 1.4 gig P3 box: 3com 3C920
> 
> Both are networked (along with the host machine) on a Netgear DS104
> 4-port hub.
> 
> I also have a spare Netgear FA311 lying around.
> 
> I've been doing some googling on this, and believe that I can use the NS
> DP83902A package for the RTL8139 chip. 
> 
> Here´s what´s currently happening:
> When I boot with the P3 box, the boot message and prompt come up on
> screen. When I boot with the P150 box, I only get the series of dots on
> that box's monitor; however, when I'm connected with HyperTerminal
> through COM1 from my laptop, I see the boot message and prompt.
> 
> The next problem is this:
> When I´ve attempted to ping (using EITHER box), I only end up getting
> gibberish characters on screen and more are added every time I press any
> key. Here is what happens on screen:
> 
> With P150 box (note: I took out the Intel 82559 package and added the NS
> DP83902A package here):
> 
> +No network interfaces found
   ***************************
   ***************************
> 
> RedBoot(tm) bootstrap and debug environment [FLOPPY]
> 
> Non-certified release, version v2_0 - built 14:14:45, Oct 16 2003
> 
> Platform: PC (I386)
> Copyright (C) 2000, 2001, 2002, Red Hat, Inc.
> 
> RAM: 0x00000000-0x000a0000, 0x00087e50-0x000a0000 available
> RedBoot> ping -v -n 3 -h 192.168.0.12
> Network PING - from 0.0.0.0 to 192.168.0.12
> $T0b08:ffffffff;04:6c9d0100;#c3$T0b08:ffffffff;04:6c9d0100;#c3$T0b08:fff
> fffff;04
> :6c9d0100;#c3
> 

Of course - there's no network to talk to.

Try turning on (or adding) some debug messages in the network driver
code to see what's happening (or why not).  In particular, for that
driver, you'll need not only to add in the generic driver, but also
a platform specific file (which I doubt you did) that describes the
environment.  Look at some other platforms (targets) which use this
chip to see how it's done.  Examples are the FRV400 and SE77X9

> 
> With 1.4G P3 box:
> 
> +Non-CDROM ATAPI device #1 - skipped                                    
> No network interfaces found                           
> 
> RedBoot(tm) bootstrap and debug environment [FLOPPY]
> 
> Non-certified release, version v2_0 - built 23:09:29, Oct 15 2003
> 
> 
> Platform: PC (I386)                   
> Copyright (C) 2000, 2001, 2002, Red Hat, Inc.
> 
> 
> RedBoot> ping -v -n 3 -h 192.168.0.12
> Network PING - from 0.0.0.0 to 192.168.0.12
> $T0408:ffffffff;04:6c9d0100;#95$T0408:ffffffff;04:6c9d0100;#95$T0408:fff
> fffff;04
> :6c9d0100;#95$T0408:ffffffff;04:6c9d0100;#95$T0408:ffffffff;04:6c9d0100;
> #95$T040
> 8:ffffffff;04:6c9d0100;#95$T0408:ffffffff;04:6c9d0100;#95$T0408:ffffffff
> ;04:6c9d
> 0100;#95$T0408:ffffffff;04:6c9d0100;#95
> 
> 
> One concern is that both say "from 0.0.0.0".  I have the default IP set
> as 192.168.0.10, and "Do not try to use BOOTP" is checked.  I also
> noticed that I was able to add and remove the relevant Ethernet packages
> through ecosconfig, but not through the configuration tool GUI. 
> 
> Mike
> 
> 
> 
> -----Original Message-----
> From: kevin_lemay@agilent.com [mailto:kevin_lemay@agilent.com] 
> Sent: Mittwoch, 15. Oktober 2003 20:34
> To: trozzo@arcor.de
> Subject: RE: [ECOS] Processor Issue with i386/Redboot?
> 
> 
> Mike,
> 
> What kind of network interface card do you have on both systems?
> 
> The redboot image is built with a single ethernet driver (intel 825xx).
> Perhaps this stops it from booting.
> 
> I have only used Pentium III and Xeons here.
> 
> Kevin
> 
> -----Original Message-----
> From: ecos-discuss-owner@sources.redhat.com
> [mailto:ecos-discuss-owner@sources.redhat.com]On Behalf Of Michael
> Trozzo
> Sent: Wednesday, October 15, 2003 11:26 AM
> To: ecos-discuss@sources.redhat.com
> Subject: [ECOS] Processor Issue with i386/Redboot?
> 
> 
> Hi,
> 
> I wrote last week about my problems creating a floppy boot image, and
> have fortunately managed to work it out. Apparently, the dd command
> doesn´t like it when you try to output to a network share...either that
> or use rawrite (thanks, Denis).
> 
> Anyway, onto the next step of my journey.  I attempted to boot through
> the floppy on a pentium 150, with the floppy set as first in the boot
> sequence.  It appears not to be completing the boot process. I get a
> series of dots on the screen, then a blinking cursor. After that stops,
> nothing else happens.  I´ve tested this box with a Win98 boot floppy,
> the Windows CDROM, and on the hard drive (which had been freshly
> formatted before installing 98), and everything boots up normally. 
> 
> I then attempted to boot on a 1.4 GHz Pentium III with thw same floppy,
> and after a few seconds, I got the RedBoot welcome message on screen.
> Does anyone know why this would be happening? I´d really like to avoid
> having to use the PIII box, since my wife uses that for her work, and
> obviously my having Redboot up would take her out of action.
> 
> Mike Trozzo
-- 
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] 6+ messages in thread

* RE: [ECOS] Processor Issue with i386/Redboot?
@ 2003-10-16 13:26 Michael Trozzo
  2003-10-16 13:32 ` Gary Thomas
  2003-10-16 14:45 ` Eric Doenges
  0 siblings, 2 replies; 6+ messages in thread
From: Michael Trozzo @ 2003-10-16 13:26 UTC (permalink / raw)
  To: ecos-discuss

Kevin,

Thanks for your help...here´s what I have:

P150 box: Allied Telesyn AT-2500TX Fast Ethernet (has an RTL8139 chip
onboard) 1.4 gig P3 box: 3com 3C920

Both are networked (along with the host machine) on a Netgear DS104
4-port hub.

I also have a spare Netgear FA311 lying around.

I've been doing some googling on this, and believe that I can use the NS
DP83902A package for the RTL8139 chip. 

Here´s what´s currently happening:
When I boot with the P3 box, the boot message and prompt come up on
screen. When I boot with the P150 box, I only get the series of dots on
that box's monitor; however, when I'm connected with HyperTerminal
through COM1 from my laptop, I see the boot message and prompt.

The next problem is this:
When I´ve attempted to ping (using EITHER box), I only end up getting
gibberish characters on screen and more are added every time I press any
key. Here is what happens on screen:

With P150 box (note: I took out the Intel 82559 package and added the NS
DP83902A package here):

+No network interfaces found

RedBoot(tm) bootstrap and debug environment [FLOPPY]

Non-certified release, version v2_0 - built 14:14:45, Oct 16 2003

Platform: PC (I386)
Copyright (C) 2000, 2001, 2002, Red Hat, Inc.

RAM: 0x00000000-0x000a0000, 0x00087e50-0x000a0000 available
RedBoot> ping -v -n 3 -h 192.168.0.12
Network PING - from 0.0.0.0 to 192.168.0.12
$T0b08:ffffffff;04:6c9d0100;#c3$T0b08:ffffffff;04:6c9d0100;#c3$T0b08:fff
fffff;04
:6c9d0100;#c3


With 1.4G P3 box:

+Non-CDROM ATAPI device #1 - skipped                                    
No network interfaces found                           

RedBoot(tm) bootstrap and debug environment [FLOPPY]

Non-certified release, version v2_0 - built 23:09:29, Oct 15 2003


Platform: PC (I386)                   
Copyright (C) 2000, 2001, 2002, Red Hat, Inc.


RedBoot> ping -v -n 3 -h 192.168.0.12
Network PING - from 0.0.0.0 to 192.168.0.12
$T0408:ffffffff;04:6c9d0100;#95$T0408:ffffffff;04:6c9d0100;#95$T0408:fff
fffff;04
:6c9d0100;#95$T0408:ffffffff;04:6c9d0100;#95$T0408:ffffffff;04:6c9d0100;
#95$T040
8:ffffffff;04:6c9d0100;#95$T0408:ffffffff;04:6c9d0100;#95$T0408:ffffffff
;04:6c9d
0100;#95$T0408:ffffffff;04:6c9d0100;#95


One concern is that both say "from 0.0.0.0".  I have the default IP set
as 192.168.0.10, and "Do not try to use BOOTP" is checked.  I also
noticed that I was able to add and remove the relevant Ethernet packages
through ecosconfig, but not through the configuration tool GUI. 

Mike



-----Original Message-----
From: kevin_lemay@agilent.com [mailto:kevin_lemay@agilent.com] 
Sent: Mittwoch, 15. Oktober 2003 20:34
To: trozzo@arcor.de
Subject: RE: [ECOS] Processor Issue with i386/Redboot?


Mike,

What kind of network interface card do you have on both systems?

The redboot image is built with a single ethernet driver (intel 825xx).
Perhaps this stops it from booting.

I have only used Pentium III and Xeons here.

Kevin

-----Original Message-----
From: ecos-discuss-owner@sources.redhat.com
[mailto:ecos-discuss-owner@sources.redhat.com]On Behalf Of Michael
Trozzo
Sent: Wednesday, October 15, 2003 11:26 AM
To: ecos-discuss@sources.redhat.com
Subject: [ECOS] Processor Issue with i386/Redboot?


Hi,

I wrote last week about my problems creating a floppy boot image, and
have fortunately managed to work it out. Apparently, the dd command
doesn´t like it when you try to output to a network share...either that
or use rawrite (thanks, Denis).

Anyway, onto the next step of my journey.  I attempted to boot through
the floppy on a pentium 150, with the floppy set as first in the boot
sequence.  It appears not to be completing the boot process. I get a
series of dots on the screen, then a blinking cursor. After that stops,
nothing else happens.  I´ve tested this box with a Win98 boot floppy,
the Windows CDROM, and on the hard drive (which had been freshly
formatted before installing 98), and everything boots up normally. 

I then attempted to boot on a 1.4 GHz Pentium III with thw same floppy,
and after a few seconds, I got the RedBoot welcome message on screen.
Does anyone know why this would be happening? I´d really like to avoid
having to use the PIII box, since my wife uses that for her work, and
obviously my having Redboot up would take her out of action.

Mike Trozzo



--
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:[~2003-10-18 20:06 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-10-15 18:25 [ECOS] Processor Issue with i386/Redboot? Michael Trozzo
2003-10-15 18:37 ` Gary Thomas
2003-10-16 13:26 Michael Trozzo
2003-10-16 13:32 ` Gary Thomas
2003-10-16 14:45 ` Eric Doenges
2003-10-18 20:06   ` Michael Trozzo

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