summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sysinstall/devices.c
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1995-05-06 09:34:24 +0000
committerjkh <jkh@FreeBSD.org>1995-05-06 09:34:24 +0000
commit370e7434c73c9695fba43a15fcdb2e1d640fea6e (patch)
tree71f9887a978b7f631a093d04c9fcbb976bbb6206 /usr.sbin/sysinstall/devices.c
parentdb62fdd3485bf81f00ceb2dde0c646287afcb44a (diff)
downloadFreeBSD-src-370e7434c73c9695fba43a15fcdb2e1d640fea6e.zip
FreeBSD-src-370e7434c73c9695fba43a15fcdb2e1d640fea6e.tar.gz
Some fairly serious cleanup. The proper offset should now be used in
creating partitions. Still need to get the mount points displaying carefully, but I need to get this into my tree on time so that I can work on that.
Diffstat (limited to 'usr.sbin/sysinstall/devices.c')
-rw-r--r--usr.sbin/sysinstall/devices.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/usr.sbin/sysinstall/devices.c b/usr.sbin/sysinstall/devices.c
index 69e1be2..6260b78 100644
--- a/usr.sbin/sysinstall/devices.c
+++ b/usr.sbin/sysinstall/devices.c
@@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
- * $Id: devices.c,v 1.2 1995/05/04 03:51:14 jkh Exp $
+ * $Id: devices.c,v 1.5 1995/05/05 23:47:38 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -133,11 +133,10 @@ print_command_summary()
int b_attr = ColorDisplay ? A_BOLD : A_UNDERLINE;
mvprintw(14, 0, "The following commands are supported (in upper or lower case):");
- mvprintw(16, 0, "A = Use Entire Disk B = Scan For Bad Blocks");
- mvprintw(17, 0, "C = Create New Partition D = Delete Partition");
- mvprintw(18, 0, "G = Set BIOS Geometry U = Undo All Changes");
- mvprintw(19, 0, "W = `Wizard' Mode ESC = Proceed to next screen");
- mvprintw(21, 0, "The currently selected partition is displayed in ");
+ mvprintw(16, 0, "A = Use Entire Disk B = Bad Block Scan C = Create Partition");
+ mvprintw(17, 0, "D = Delete Partition G = Set BIOS Geometry S = Set Bootable");
+ mvprintw(18, 0, "U = Undo All Changes W = `Wizard' Mode ESC = Proceed to next screen");
+ mvprintw(20, 0, "The currently selected partition is displayed in ");
attrset(b_attr); addstr(ColorDisplay ? "bold" : "underline"); attrset(A_NORMAL);
move(0, 0);
}
@@ -245,6 +244,10 @@ device_slice_disk(struct disk *d)
/* Set geometry */
break;
+ case 'S':
+ /* Set Bootable */
+ break;
+
case 'U':
Free_Disk(d);
d = Open_Disk(name);
OpenPOWER on IntegriCloud