diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-03-08 16:17:49 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-03-08 16:17:49 +0000 |
| commit | 15d8c5b5a3002a29168b49e3fcb54862079e020e (patch) | |
| tree | 7087fab934390541f2a40cba1c8d6dab83cc3993 /release/sysinstall | |
| parent | 2a31d924ab766db36e3c8170d9954d1052552674 (diff) | |
Notes
Diffstat (limited to 'release/sysinstall')
| -rw-r--r-- | release/sysinstall/install.c | 6 | ||||
| -rw-r--r-- | release/sysinstall/label.c | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/release/sysinstall/install.c b/release/sysinstall/install.c index 7f5f6d708c93..1eeafe9953b2 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.173 1997/03/07 16:39:15 jkh Exp $ + * $Id: install.c,v 1.174 1997/03/08 12:57:43 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -561,6 +561,10 @@ installNovice(dialogMenuItem *self) restorescr(w); } + /* Now would be a good time to checkpoint the configuration data */ + configSysconfig("/etc/sysconfig"); + sync(); + if (directory_exists("/usr/X11R6")) { dialog_clear_norefresh(); if (!msgYesNo("Would you like to configure your X server at this time?")) diff --git a/release/sysinstall/label.c b/release/sysinstall/label.c index 0854ab81c8b8..6449cd88fc5b 100644 --- a/release/sysinstall/label.c +++ b/release/sysinstall/label.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id$ + * $Id: label.c,v 1.68 1997/02/22 14:11:50 peter Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -427,6 +427,8 @@ print_label_chunks(void) if (label_chunk_info[i].c->private_data && (label_chunk_info[i].type == PART_FILESYSTEM || label_chunk_info[i].type == PART_FAT)) mountpoint = ((PartInfo *)label_chunk_info[i].c->private_data)->mountpoint; + else if (label_chunk_info[i].type == PART_SWAP) + mountpoint = "swap"; else mountpoint = "<none>"; |
