summaryrefslogtreecommitdiff
path: root/release/sysinstall/disks.c
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-03-18 15:28:10 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-03-18 15:28:10 +0000
commit40ae4689df125baf0fdf2894e11e1037a4136f40 (patch)
treebbbb1da098bedb9748f8fa6faa46c10cb2c30d4a /release/sysinstall/disks.c
parent198c323e44f1d23aacd7d28f28b6b9af3b4d3300 (diff)
Notes
Diffstat (limited to 'release/sysinstall/disks.c')
-rw-r--r--release/sysinstall/disks.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/sysinstall/disks.c b/release/sysinstall/disks.c
index 8b9096c61f3f..94e99992e562 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.34 1995/12/11 16:32:31 jkh Exp $
+ * $Id: disks.c,v 1.35 1996/01/23 21:05:22 joerg Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@@ -126,7 +126,9 @@ print_command_summary()
mvprintw(14, 0, "The following commands are supported (in upper or lower case):");
mvprintw(16, 0, "A = Use Entire Disk B = Bad Block Scan C = Create Partition");
mvprintw(17, 0, "D = Delete Partition G = Set Drive Geometry S = Set Bootable");
- mvprintw(18, 0, "U = Undo All Changes Q = Finish W = Write Changes");
+ mvprintw(18, 0, "U = Undo All Changes Q = Finish");
+ if (!RunningAsInit)
+ mvprintw(18, 48, "W = Write Changes");
mvprintw(20, 0, "The currently selected partition is displayed in ");
attrset(A_REVERSE); addstr("reverse"); attrset(A_NORMAL); addstr(" video.");
mvprintw(21, 0, "Use F1 or ? to get more help, arrow keys to move.");