Source-Changes-HG archive

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

[src/netbsd-2-0]: src/distrib/utils/sysinst Pull up revision 1.40 (requested ...



details:   https://anonhg.NetBSD.org/src/rev/e2461c00060b
branches:  netbsd-2-0
changeset: 561333:e2461c00060b
user:      tron <tron%NetBSD.org@localhost>
date:      Mon Jun 07 10:21:22 2004 +0000

description:
Pull up revision 1.40 (requested by dsl in ticket #453):
A load of usability fixes mainly to network installs.
I've made the error retry loops go back as far as the input menus.
Split all the pathname inputs into 2 pieces (base directory and set directory).
Reduced the size of some fixed strings.
Stopped the install aborting if ftp can't find a set (eg the X ones).
The French and Polish transations don't differenciate between Base_dir and
Set_dir - but that can be fixed later.

diffstat:

 distrib/utils/sysinst/install.c |  14 +++-----------
 1 files changed, 3 insertions(+), 11 deletions(-)

diffs (29 lines):

diff -r 191747558bfa -r e2461c00060b distrib/utils/sysinst/install.c
--- a/distrib/utils/sysinst/install.c   Mon Jun 07 10:21:16 2004 +0000
+++ b/distrib/utils/sysinst/install.c   Mon Jun 07 10:21:22 2004 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: install.c,v 1.38.2.1 2004/05/22 16:23:40 he Exp $      */
+/*     $NetBSD: install.c,v 1.38.2.2 2004/06/07 10:21:22 tron Exp $    */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -114,17 +114,9 @@
        if (md_post_newfs() != 0)
                return;
 
-       /* Done to here. */
-       msg_display(MSG_disksetupdone);
-
-       getchar();
-       wrefresh(curscr);
-       wmove(stdscr,0, 0);
-       wclear(stdscr);
-       wrefresh(stdscr);
-
        /* Unpack the distribution. */
-       if (get_and_unpack_sets(0, MSG_extractcomplete, MSG_abortinst) != 0)
+       if (get_and_unpack_sets(0, MSG_disksetupdone,
+           MSG_extractcomplete, MSG_abortinst) != 0)
                return;
 
        set_timezone();



Home | Main Index | Thread Index | Old Index