* Booting UltraLinux on UlatraSPARC-IIi system
@ 1998-08-08 10:53 Felix Schmidt
1998-08-08 15:29 ` David S. Miller
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Felix Schmidt @ 1998-08-08 10:53 UTC (permalink / raw)
To: ultralinux
Hi,
i'm currently trying to install UltraLinux 1.0.9 on one of our UltraSPARC-IIi
based systems (not a Sun Board).
I'm trying to boot via network using the tftpboot.img. When the image is loaded
it terminates with the message
27a800 TILO
No serial devices found, bailing out.
Program terminated
I have no frame buffer and keyboard, just a pure serial connection.
When loading the same image on an Ultra-10, also via serial, it works a little
bit better (it boots until it gets a panic while attaching an Adapdec 2940UF/OW
SCSI controller).
The only difference between our board and the Ultra-10 with respect to the
serial device is the lack of Sun's PCI-to-PCI bridge and different
addresses. This shouldn't be a problem if the OpenBoot tree is evaluated
properly.
I'd like to have a look at the sources, but i only have it in rpm format, which
is of no use under Solaris. Is the source tree available as tar archive?
Cheers,
Felix.
_____________________________________________________________
Felix Schmidt FORCE COMPUTERS GmbH
Software Engineer http://www.forcecomputers.com
tel: +49-89-60814-0
mailto:fesc@force.de fax: +49-89-60814-376
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Booting UltraLinux on UlatraSPARC-IIi system
1998-08-08 10:53 Booting UltraLinux on UlatraSPARC-IIi system Felix Schmidt
@ 1998-08-08 15:29 ` David S. Miller
1998-08-08 19:46 ` djb
1998-08-10 9:56 ` Felix Schmidt
2 siblings, 0 replies; 4+ messages in thread
From: David S. Miller @ 1998-08-08 15:29 UTC (permalink / raw)
To: ultralinux
Date: Sat, 8 Aug 1998 12:53:12 +0200 (MET DST)
From: Felix Schmidt <fesc@force.de>
I'd like to have a look at the sources, but i only have it in rpm format, which
is of no use under Solaris.
Says who? The RPM package tools compile and work just fine under
Solaris just like any other program you can get the source to.
Is the source tree available as tar archive?
Another option is:
ftp://vger.rutgers.edu/pub/linux/README.CVS
But this option will be of no use to you either. :-)
Later,
David S. Miller
davem@dm.cobaltmicro.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Booting UltraLinux on UlatraSPARC-IIi system
1998-08-08 10:53 Booting UltraLinux on UlatraSPARC-IIi system Felix Schmidt
1998-08-08 15:29 ` David S. Miller
@ 1998-08-08 19:46 ` djb
1998-08-10 9:56 ` Felix Schmidt
2 siblings, 0 replies; 4+ messages in thread
From: djb @ 1998-08-08 19:46 UTC (permalink / raw)
To: ultralinux
> I'd like to have a look at the sources, but i only have it in rpm format, which
> is of no use under Solaris.
>
> Says who? The RPM package tools compile and work just fine under
> Solaris just like any other program you can get the source to.
In fact, you can find binaries of them at www.solaris.rpm.org.
--Donnie
--
Donnie Barnes http://www.redhat.com/~djb djb@redhat.com "Bah."
Challenge Diversity. Ignore People. Live Life. Use Linux. 879.
My Dad used to say I have deceptive quickness. I'm slower than I look.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Booting UltraLinux on UlatraSPARC-IIi system
1998-08-08 10:53 Booting UltraLinux on UlatraSPARC-IIi system Felix Schmidt
1998-08-08 15:29 ` David S. Miller
1998-08-08 19:46 ` djb
@ 1998-08-10 9:56 ` Felix Schmidt
2 siblings, 0 replies; 4+ messages in thread
From: Felix Schmidt @ 1998-08-10 9:56 UTC (permalink / raw)
To: ultralinux
>
> Date: Sat, 8 Aug 1998 12:53:12 +0200 (MET DST)
> From: Felix Schmidt <fesc@force.de>
>
> I'd like to have a look at the sources, but i only have it in rpm format, which
> is of no use under Solaris.
>
> Says who? The RPM package tools compile and work just fine under
> Solaris just like any other program you can get the source to.
>
Ok, ok, i got it now.
Looking at the sources, it seems that my original assumption turned out to be true.
The serial driver probe routine (sab82532.c:sab82532_probe()) assumes that there is
a Simba PCI-to-PCI bridge at the primary PCI bus of the Sabre. While this may
be correct for current (Sun) hardware, it may not for others (it's not for our
hardware, and maybe not for future Sun HW). Therefore i'd suggest a more generic
approach to search the OBP tree.
Until i have set up my system so that i can compile the source by myself, here's a
code fragment i use in my drivers for searching the PROM tree (2.x and 3.x) for a
specific node. From what i have seen, it should be usable under Linux as well.
Cheers,
Felix.
P.S.: From the FAQ i read that the only non-linux environment to compile the kernel
with is SunOS 4. Is this still correct? Are there hints on what has to be obeyed
for SunOS 5?
-------------
/*******************************************************************************
**
** Function vhi_prom_getnodebyname
**
** Description: This function searches the device tree for a node of the given
** name (based on "name" property) and returns the node id if
** found.
** The returned node id can be used for the prom_XXX() functions
** declared in sys/promif.h
**
** Function's prototype ( ANSI-C ):
**
** dnode_t vhi_prom_getnodebyname (char *name, int inst);
**
** Description of the argument(s):
**
** name Name of device node to look for, or "/" for root node.
** inst Instance of node to search if there are more than one node with
** the given name. If set to 0 or 1, the first occurence is returned,
** if "2" the second one and so on.
**
** Description of the return value(s):
** 0 if the device node could not be found
** node-id else
**
** Description of global variable(s):
** nstack_size
**
** Uses function(s):
**
** Remarks:
**
*******************************************************************************/
static int nstack_size = 64;
dnode_t
vhi_prom_getnodebyname (name, inst)
char *name;
int inst;
{
dnode_t tmp_id, id;
dnode_t *n_stack;
int sp = 0;
char prop_buf[32];
int cur_inst;
int found;
if (!strcmp( name, "/" ))
{
return prom_rootnode();
}
n_stack = (dnode_t*)kmem_zalloc( sizeof(dnode_t) * nstack_size, KM_SLEEP );
n_stack[sp++] = prom_rootnode();
if (inst < 1)
{
inst = 1;
}
cur_inst = 0;
found = 0;
/* This searches the device tree (depth-search) for a given node whose
* name property matches the "name" argument.
* We use a non-recursive algorithm so save stack space.
*/
while (sp > 0)
{
tmp_id = n_stack[--sp];
prop_buf[0] = 0;
/* Check if this the node we are looking for
*/
prom_getprop( tmp_id, "name", (caddr_t)prop_buf );
if (!strcmp( name, prop_buf ))
{
cur_inst++;
if (inst = cur_inst)
{
found = 1;
break;
}
}
/* No. Put all child nodes on the stack and continue searching
*/
for (id = prom_childnode( tmp_id );
id != 0;
id = prom_nextnode( id ))
{
n_stack[sp++] = id;
if (sp >= nstack_size)
{
cmn_err( CE_PANIC, "VME: OBP node stack overflow. "
"Increase VME:nstack_size in /etc/system "
"(cur=%d)",
nstack_size );
}
}
}
kmem_free( n_stack, sizeof(dnode_t) * nstack_size );
if (!found)
return 0;
return tmp_id;
}
_____________________________________________________________
Felix Schmidt FORCE COMPUTERS GmbH
Software Engineer http://www.forcecomputers.com
tel: +49-89-60814-0
mailto:fesc@force.de fax: +49-89-60814-376
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~1998-08-10 9:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
1998-08-08 10:53 Booting UltraLinux on UlatraSPARC-IIi system Felix Schmidt
1998-08-08 15:29 ` David S. Miller
1998-08-08 19:46 ` djb
1998-08-10 9:56 ` Felix Schmidt
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.