Use new bootloader names.

This commit is contained in:
sekiya 2003-11-13 08:03:03 +00:00
parent 1ba2b99e3e
commit 32b29fc3c8
2 changed files with 10 additions and 7 deletions

View File

@ -1,5 +1,5 @@
# $NetBSD: md.sgimips,v 1.4 2002/12/30 14:51:15 pooka Exp $
./usr/mdec/boot base-sysutil-bin
./usr/mdec/boot.elf base-sysutil-bin
./usr/mdec/boot.ip32 base-sysutil-bin
# $NetBSD: md.sgimips,v 1.5 2003/11/13 08:03:03 sekiya Exp $
./usr/mdec/aoutboot base-sysutil-bin
./usr/mdec/ip2xboot base-sysutil-bin
./usr/mdec/ip3xboot base-sysutil-bin
./usr/mdec/sgivol base-sysutil-bin

View File

@ -1,4 +1,4 @@
/* $NetBSD: md.c,v 1.12 2003/11/13 02:33:39 sekiya Exp $ */
/* $NetBSD: md.c,v 1.13 2003/11/13 08:03:03 sekiya Exp $ */
/*
* Copyright 1997 Piermont Information Systems Inc.
@ -115,11 +115,14 @@ md_post_disklabel(void)
set_swap(diskdev, bsdlabel);
if (strstr(instsys.version, "(INSTALL32_IP3x)"))
return run_prog(RUN_DISPLAY, MSG_cmdfail,
"%s %s", "/usr/mdec/sgivol -f -w boot /usr/mdec/boot.ip32",
"%s %s", "/usr/mdec/sgivol -f -w boot /usr/mdec/ip3xboot",
diskdev);
else
run_prog(RUN_DISPLAY, MSG_cmdfail,
"%s %s", "/usr/mdec/sgivol -f -w aoutboot /usr/mdec/aoutboot",
diskdev);
return run_prog(RUN_DISPLAY, MSG_cmdfail,
"%s %s", "/usr/mdec/sgivol -f -w boot /usr/mdec/boot",
"%s %s", "/usr/mdec/sgivol -f -w boot /usr/mdec/ip2xboot",
diskdev);
}