diff options
author | jkh <jkh@FreeBSD.org> | 1995-05-22 14:10:25 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-05-22 14:10:25 +0000 |
commit | 102ea06d3bd47d7b7dcdaa9f1121ba3e26b1a3e7 (patch) | |
tree | 9229dd261cca0b9bdfdd8d28254004226a5b7505 /release/sysinstall/disks.c | |
parent | a93f9fc13537d35520b293f7dda9f8361a782400 (diff) | |
download | FreeBSD-src-102ea06d3bd47d7b7dcdaa9f1121ba3e26b1a3e7.zip FreeBSD-src-102ea06d3bd47d7b7dcdaa9f1121ba3e26b1a3e7.tar.gz |
Implement most of the CD extract code.
Clean up a few last display bugs.
Add sanity checking that makes sure user creates root and swap partitions.
Add swap partitions with swapon().
Diffstat (limited to 'release/sysinstall/disks.c')
-rw-r--r-- | release/sysinstall/disks.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/release/sysinstall/disks.c b/release/sysinstall/disks.c index 399c812..ba0b190 100644 --- a/release/sysinstall/disks.c +++ b/release/sysinstall/disks.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: disks.c,v 1.24 1995/05/20 19:22:18 jkh Exp $ + * $Id: disks.c,v 1.26 1995/05/21 06:12:42 phk Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -276,7 +276,6 @@ diskPartition(Disk *d) free(p); } dialog_clear(); - refresh(); variable_set2(DISK_PARTITIONED, "yes"); return d; } |