1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-15 15:06:42 +00:00

One last alpha seat belt - never ask for an MBR boot manager.

This commit is contained in:
Jordan K. Hubbard 1998-09-30 21:58:36 +00:00
parent b6d288b2c2
commit 767df892d7
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=39848
3 changed files with 9 additions and 3 deletions

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: disks.c,v 1.101 1998/09/30 21:48:11 jkh Exp $
* $Id: disks.c,v 1.102 1998/09/30 21:55:33 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -140,6 +140,7 @@ getBootMgr(char *dname)
char *cp;
int i = 0;
#ifndef __alpha__ /* only meaningful on x86 */
cp = variable_get(VAR_BOOTMGR);
if (!cp) {
/* Figure out what kind of MBR the user wants */
@ -168,6 +169,7 @@ getBootMgr(char *dname)
break;
}
}
#endif
return NULL;
}

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: disks.c,v 1.101 1998/09/30 21:48:11 jkh Exp $
* $Id: disks.c,v 1.102 1998/09/30 21:55:33 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -140,6 +140,7 @@ getBootMgr(char *dname)
char *cp;
int i = 0;
#ifndef __alpha__ /* only meaningful on x86 */
cp = variable_get(VAR_BOOTMGR);
if (!cp) {
/* Figure out what kind of MBR the user wants */
@ -168,6 +169,7 @@ getBootMgr(char *dname)
break;
}
}
#endif
return NULL;
}

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: disks.c,v 1.101 1998/09/30 21:48:11 jkh Exp $
* $Id: disks.c,v 1.102 1998/09/30 21:55:33 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -140,6 +140,7 @@ getBootMgr(char *dname)
char *cp;
int i = 0;
#ifndef __alpha__ /* only meaningful on x86 */
cp = variable_get(VAR_BOOTMGR);
if (!cp) {
/* Figure out what kind of MBR the user wants */
@ -168,6 +169,7 @@ getBootMgr(char *dname)
break;
}
}
#endif
return NULL;
}