27 lines
403 B
C
27 lines
403 B
C
/* @(#)prom_bootpath.c 1.1 94/10/31 SMI */
|
|
|
|
/*
|
|
* Copyright (c) 1990 by Sun Microsystems, Inc.
|
|
*/
|
|
|
|
#include <promcommon.h>
|
|
|
|
char *
|
|
prom_bootpath()
|
|
{
|
|
switch (obp_romvec_version) {
|
|
|
|
case OBP_V0_ROMVEC_VERSION:
|
|
return ((char *)0);
|
|
|
|
default:
|
|
{
|
|
#ifdef DPRINTF
|
|
char *p = OBP_V2_BOOTPATH;
|
|
DPRINTF("prom_bootpath: <%s>\n", p ? p : "unknown!");
|
|
#endif DPRINTF
|
|
}
|
|
return (OBP_V2_BOOTPATH);
|
|
}
|
|
}
|