summaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorjoerg <joerg@FreeBSD.org>1996-01-29 20:17:27 +0000
committerjoerg <joerg@FreeBSD.org>1996-01-29 20:17:27 +0000
commit0d78e1e9023eeb6c4384791728bdf7efa722e8e3 (patch)
tree3186fe9f86110e0fe7ffb49f71024315096fee74 /release
parentbc3d519a691dae27cb75aacccb78a04639023aed (diff)
downloadFreeBSD-src-0d78e1e9023eeb6c4384791728bdf7efa722e8e3.zip
FreeBSD-src-0d78e1e9023eeb6c4384791728bdf7efa722e8e3.tar.gz
Add the -u flag to the cpio's used to install the initial files, just
to make sure they will be overwritten even in cases where the've bogusly got more recent timestamps.
Diffstat (limited to 'release')
-rw-r--r--release/sysinstall/install.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c
index db17d91..db8de7e 100644
--- a/release/sysinstall/install.c
+++ b/release/sysinstall/install.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: install.c,v 1.73 1995/12/07 10:33:52 peter Exp $
+ * $Id: install.c,v 1.74 1996/01/14 11:45:05 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -766,7 +766,7 @@ installFilesystems(char *str)
msgNotify("Copying initial device files..");
/* Copy the boot floppy's dev files */
- if ((root->newfs || upgrade) && vsystem("find -x /dev | cpio -pdmv /mnt")) {
+ if ((root->newfs || upgrade) && vsystem("find -x /dev | cpio -pdumv /mnt")) {
dialog_clear();
msgConfirm("Couldn't clone the /dev files!");
return RET_FAIL;
@@ -806,7 +806,7 @@ copySelf(void)
int i;
msgWeHaveOutput("Copying the boot floppy to /stand on root filesystem");
- i = vsystem("find -x /stand | cpio -pdmv /mnt");
+ i = vsystem("find -x /stand | cpio -pdumv /mnt");
if (i) {
dialog_clear();
msgConfirm("Copy returned error status of %d!", i);
@@ -814,7 +814,7 @@ copySelf(void)
}
/* Copy the /etc files into their rightful place */
- if (vsystem("cd /mnt/stand; find etc | cpio -pdmv /mnt")) {
+ if (vsystem("cd /mnt/stand; find etc | cpio -pdumv /mnt")) {
dialog_clear();
msgConfirm("Couldn't copy up the /etc files!");
return TRUE;
OpenPOWER on IntegriCloud