From 7dceb5fbf9bebe818c8f72e003e49993a46b636b Mon Sep 17 00:00:00 2001 From: pk Date: Wed, 15 Oct 2003 11:51:48 +0000 Subject: [PATCH] obp_v2_getbootfile: we might as well be complete by also considering the PROM environment variables `diag-switch?' and `diag-file'. --- sys/arch/sparc/sparc/promlib.c | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/sys/arch/sparc/sparc/promlib.c b/sys/arch/sparc/sparc/promlib.c index e64d8bcea83a..45bb75c10e72 100644 --- a/sys/arch/sparc/sparc/promlib.c +++ b/sys/arch/sparc/sparc/promlib.c @@ -1,4 +1,4 @@ -/* $NetBSD: promlib.c,v 1.23 2003/10/13 17:59:19 pk Exp $ */ +/* $NetBSD: promlib.c,v 1.24 2003/10/15 11:51:48 pk Exp $ */ /*- * Copyright (c) 1998 The NetBSD Foundation, Inc. @@ -42,7 +42,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: promlib.c,v 1.23 2003/10/13 17:59:19 pk Exp $"); +__KERNEL_RCSID(0, "$NetBSD: promlib.c,v 1.24 2003/10/15 11:51:48 pk Exp $"); #if defined(_KERNEL_OPT) #include "opt_sparc_arch.h" @@ -690,7 +690,7 @@ obp_v2_getbootfile() { struct v2bootargs *ba = promops.po_bootcookie; char *kernel = parse_bootfile(*ba->v2_bootargs); - int optionsnode; + int diagmode, optionsnode; if (kernel[0] != '\0') return kernel; @@ -700,10 +700,16 @@ obp_v2_getbootfile() * was given to the `boot' command (e.g `boot -s'). If we determine * in parse_bootfile() above, that boot args contain only switches * then get the `boot-file' value (if any) ourselves. + * If the `diag-switch?' PROM variable is set to true, we use + * `diag-file' instead. + * * Note: PROM_getpropstring() imposes a 31 char size limit. */ optionsnode = findnode(firstchild(findroot()), "options"); - return PROM_getpropstring(optionsnode, "boot-file"); + diagmode = strcmp(PROM_getpropstring(optionsnode, "diag-switch?"), + "true") == 0; + return PROM_getpropstring(optionsnode, + diagmode ? "diag-file" : "boot-file"); } void