diff options
author | jkh <jkh@FreeBSD.org> | 1995-11-08 07:09:36 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-11-08 07:09:36 +0000 |
commit | a93e9a6a57480d65cc71ca94d32fdae704788af1 (patch) | |
tree | 8b68255eaa23c1d3e6e0b82b5d2e78df189dc694 /release | |
parent | 1b03752acf50af4805e552dd8e3752c1c9a78a8b (diff) | |
download | FreeBSD-src-a93e9a6a57480d65cc71ca94d32fdae704788af1.zip FreeBSD-src-a93e9a6a57480d65cc71ca94d32fdae704788af1.tar.gz |
o Use correct device for Wangtek tapes.
o Caution against use of `W' options in label/partition screens (dangerous!)
o Make various types of debugging dreck conditionalize on DEBUG flag
o Make a fake /var/db/mountdbtab file so new system doesn't complain
o Apply uniform permissions to entire /usr/X11R6 tree.
o Set erase character to ^H for all interactive commands.
o Don't panic if user exits upgrade shell, reboot.
o Document dangers of `W' options in help screens also.
Diffstat (limited to 'release')
-rw-r--r-- | release/sysinstall/installUpgrade.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/release/sysinstall/installUpgrade.c b/release/sysinstall/installUpgrade.c index ffb1920..85a8d28 100644 --- a/release/sysinstall/installUpgrade.c +++ b/release/sysinstall/installUpgrade.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: installUpgrade.c,v 1.15 1995/11/04 11:09:03 jkh Exp $ + * $Id: installUpgrade.c,v 1.16 1995/11/06 08:28:06 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -374,11 +374,11 @@ installUpgrade(char *str) } else msgDebug("Unable to get the terminal attributes!\n"); - printf("Well, good luck! When you're done, please type \"reboot\" to reboot\n" - "the new system.\n"); + printf("Well, good luck! When you're done, please type \"reboot\" or exit\n" + "the shell to reboot the new system.\n"); execlp("sh", "-sh", 0); msgDebug("Was unable to execute sh for post-upgrade shell!\n"); - exit(1); + reboot(0); /* NOTREACHED */ return 0; } |