summaryrefslogtreecommitdiff
path: root/sys/arch/hp300/stand/cdboot/cdboot.c
diff options
context:
space:
mode:
authorJason Downs <downsj@cvs.openbsd.org>1999-08-18 17:13:20 +0000
committerJason Downs <downsj@cvs.openbsd.org>1999-08-18 17:13:20 +0000
commitd6ad15d2356dec99eeff67d57af58ee4297fc711 (patch)
tree2c7bbb731984a5b2cd43f76844505465f4293b51 /sys/arch/hp300/stand/cdboot/cdboot.c
parent8f34c663fc59d54f7ecc897a629200cecedd5605 (diff)
Default to loading bsd.rd from $OSREV/hp300/bsd.rd.
Diffstat (limited to 'sys/arch/hp300/stand/cdboot/cdboot.c')
-rw-r--r--sys/arch/hp300/stand/cdboot/cdboot.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/hp300/stand/cdboot/cdboot.c b/sys/arch/hp300/stand/cdboot/cdboot.c
index 8d02953f286..47cd80cd8be 100644
--- a/sys/arch/hp300/stand/cdboot/cdboot.c
+++ b/sys/arch/hp300/stand/cdboot/cdboot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cdboot.c,v 1.2 1999/08/16 10:20:07 downsj Exp $ */
+/* $OpenBSD: cdboot.c,v 1.3 1999/08/18 17:13:19 downsj Exp $ */
/* $NetBSD: uboot.c,v 1.3 1997/04/27 21:17:13 thorpej Exp $ */
/*-
@@ -64,6 +64,9 @@ extern const char version[];
*/
char *name;
char *names[] = {
+#ifdef OSREV
+ OSREV "/hp300/bsd.rd",
+#endif
"bsd.rd", "bsd", "obsd", "bsd.old"
};
#define NUMNAMES (sizeof(names) / sizeof(char *))