Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/utils/sysinst Do not tell the user we've newfs'd his...



details:   https://anonhg.NetBSD.org/src/rev/a2ed79dde094
branches:  trunk
changeset: 500761:a2ed79dde094
user:      hubertf <hubertf%NetBSD.org@localhost>
date:      Mon Dec 18 09:18:46 2000 +0000

description:
Do not tell the user we've newfs'd his disks when upgrading.
May safe him a heart attack or two.

Fixes PR 9655 and some others.

diffstat:

 distrib/utils/sysinst/msg.mi.en |  11 ++++++++++-
 distrib/utils/sysinst/msg.mi.fr |  11 ++++++++++-
 distrib/utils/sysinst/upgrade.c |   4 ++--
 3 files changed, 22 insertions(+), 4 deletions(-)

diffs (68 lines):

diff -r 1c68f55c2cde -r a2ed79dde094 distrib/utils/sysinst/msg.mi.en
--- a/distrib/utils/sysinst/msg.mi.en   Mon Dec 18 08:53:39 2000 +0000
+++ b/distrib/utils/sysinst/msg.mi.en   Mon Dec 18 09:18:46 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg.mi.en,v 1.77 2000/12/03 01:54:46 minoura Exp $     */
+/*     $NetBSD: msg.mi.en,v 1.78 2000/12/18 09:18:46 hubertf Exp $     */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -271,6 +271,15 @@
 Press <return> to proceed.
 }
 
+message disksetupdoneupdate
+{Okay, the first part of the procedure is finished.  Sysinst has
+written a disklabel to the target disk, and fsck'ed the new
+partitions you specified for the target disk.
+
+The next step is to fetch and unpack the distribution filesets.
+Press <return> to proceed.
+}
+
 message openfail
 {Could not open %s, error message was: %s.
 }
diff -r 1c68f55c2cde -r a2ed79dde094 distrib/utils/sysinst/msg.mi.fr
--- a/distrib/utils/sysinst/msg.mi.fr   Mon Dec 18 08:53:39 2000 +0000
+++ b/distrib/utils/sysinst/msg.mi.fr   Mon Dec 18 09:18:46 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg.mi.fr,v 1.37 2000/12/03 01:54:46 minoura Exp $     */
+/*     $NetBSD: msg.mi.fr,v 1.38 2000/12/18 09:18:46 hubertf Exp $     */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -271,6 +271,15 @@
 Appuyer sur <entrée> pour continuer.
 }
 
+message disksetupdoneupdate
+{Bien, la première partie de la procédure est terminée.
+Sysinst a écrit, sur votre disque de destination, un disklabel
+et testé (fsck) vos nouvelles partitions.
+
+L'étape suivant consiste a recopier les différents composants.
+Appuyer sur <entrée> pour continuer.
+}
+
 message openfail
 {Je n'ai pas pu ouvrir %s, le message d'erreur était: %s.
 }
diff -r 1c68f55c2cde -r a2ed79dde094 distrib/utils/sysinst/upgrade.c
--- a/distrib/utils/sysinst/upgrade.c   Mon Dec 18 08:53:39 2000 +0000
+++ b/distrib/utils/sysinst/upgrade.c   Mon Dec 18 09:18:46 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: upgrade.c,v 1.25 2000/12/04 22:47:02 wiz Exp $ */
+/*     $NetBSD: upgrade.c,v 1.26 2000/12/18 09:18:46 hubertf Exp $     */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -107,7 +107,7 @@
                return;
 
        /* Done with disks. Ready to get and unpack tarballs. */
-       msg_display(MSG_disksetupdone);
+       msg_display(MSG_disksetupdoneupdate);
        getchar();
        puts(CL);               /* XXX */
        wclear(stdscr);



Home | Main Index | Thread Index | Old Index