PR/36223: Milos Negovanovic: Don't ask if we want to install mbr_bootselect

with -f.
This commit is contained in:
christos 2007-04-26 18:51:00 +00:00
parent 5ab2832938
commit 7731d9378a
1 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: fdisk.c,v 1.103 2007/03/10 14:18:28 apb Exp $ */
/* $NetBSD: fdisk.c,v 1.104 2007/04/26 18:51:00 christos Exp $ */
/*
* Mach Operating System
@ -39,7 +39,7 @@
#include <sys/cdefs.h>
#ifndef lint
__RCSID("$NetBSD: fdisk.c,v 1.103 2007/03/10 14:18:28 apb Exp $");
__RCSID("$NetBSD: fdisk.c,v 1.104 2007/04/26 18:51:00 christos Exp $");
#endif /* not lint */
#define MBRPTYPENAMES
@ -2066,7 +2066,8 @@ change_part(int extended, int part, int sysid, daddr_t start, daddr_t size,
* somewhere to safely write the menu tag.
*/
if (boot->mbr_bootsel_magic != LE_MBR_BS_MAGIC) {
if (yesno("The bootselect code is not installed, "
if (f_flag ||
yesno("The bootselect code is not installed, "
"do you want to install it now?"))
install_bootsel(MBR_BS_ACTIVE);
}