From aea301d0c07941086679150dab27cc5b5273b43d Mon Sep 17 00:00:00 2001 From: gwr Date: Mon, 13 Oct 1997 22:18:52 +0000 Subject: [PATCH] Add a call to idprom_init(). --- sys/arch/sun3x/stand/netboot/boot.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/arch/sun3x/stand/netboot/boot.c b/sys/arch/sun3x/stand/netboot/boot.c index 92bc76e52a30..d9477ec04957 100644 --- a/sys/arch/sun3x/stand/netboot/boot.c +++ b/sys/arch/sun3x/stand/netboot/boot.c @@ -1,4 +1,4 @@ -/* $NetBSD: boot.c,v 1.1.1.1 1997/03/13 16:27:28 gwr Exp $ */ +/* $NetBSD: boot.c,v 1.2 1997/10/13 22:18:52 gwr Exp $ */ /*- * Copyright (c) 1982, 1986, 1990, 1993 @@ -60,8 +60,9 @@ main() printf(">> NetBSD netboot [%s]\n", version); prom_get_boot_info(); - file = defname; + idprom_init(); + file = defname; cp = prom_bootfile; if (cp && *cp) file = cp;