1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-11 09:50:12 +00:00

Merge 1.33.2.12 from 2.2

This commit is contained in:
Jordan K. Hubbard 1997-05-09 07:44:19 +00:00
parent adf3c1f997
commit 98e24c476f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=25601
2 changed files with 10 additions and 2 deletions

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next * This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite. * generation being essentially a complete rewrite.
* *
* $Id: installUpgrade.c,v 1.47 1997/04/02 12:07:37 jkh Exp $ * $Id: installUpgrade.c,v 1.48 1997/04/28 10:31:14 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -230,6 +230,10 @@ installUpgrade(dialogMenuItem *self)
return DITEM_FAILURE | DITEM_RESTORE; return DITEM_FAILURE | DITEM_RESTORE;
} }
if (extractingBin) {
msgNotify("chflags'ing old binaries - please wait.");
(void)vsystem("chflags -R noschg /mnt/");
}
msgNotify("Updating /stand on root filesystem"); msgNotify("Updating /stand on root filesystem");
(void)vsystem("find -x /stand | cpio %s -pdum /mnt", cpioVerbosity()); (void)vsystem("find -x /stand | cpio %s -pdum /mnt", cpioVerbosity());

View File

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next * This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite. * generation being essentially a complete rewrite.
* *
* $Id: installUpgrade.c,v 1.47 1997/04/02 12:07:37 jkh Exp $ * $Id: installUpgrade.c,v 1.48 1997/04/28 10:31:14 jkh Exp $
* *
* Copyright (c) 1995 * Copyright (c) 1995
* Jordan Hubbard. All rights reserved. * Jordan Hubbard. All rights reserved.
@ -230,6 +230,10 @@ installUpgrade(dialogMenuItem *self)
return DITEM_FAILURE | DITEM_RESTORE; return DITEM_FAILURE | DITEM_RESTORE;
} }
if (extractingBin) {
msgNotify("chflags'ing old binaries - please wait.");
(void)vsystem("chflags -R noschg /mnt/");
}
msgNotify("Updating /stand on root filesystem"); msgNotify("Updating /stand on root filesystem");
(void)vsystem("find -x /stand | cpio %s -pdum /mnt", cpioVerbosity()); (void)vsystem("find -x /stand | cpio %s -pdum /mnt", cpioVerbosity());