summaryrefslogtreecommitdiffstats
path: root/loader2/driverselect.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-11-09 23:38:21 +0000
committerJeremy Katz <katzj@redhat.com>2005-11-09 23:38:21 +0000
commita659f5539068d19d419f113eb12c5ebaf61a4154 (patch)
treeb988fa12d7484873e8093e430c5ef2d93caa98ce /loader2/driverselect.c
parent7cba8af90e8a637fd44cf9fe238a193f391653f9 (diff)
downloadanaconda-a659f5539068d19d419f113eb12c5ebaf61a4154.tar.gz
anaconda-a659f5539068d19d419f113eb12c5ebaf61a4154.tar.xz
anaconda-a659f5539068d19d419f113eb12c5ebaf61a4154.zip
2005-11-09 Jeremy Katz <katzj@redhat.com>
* loader2/driverselect.c (getManualModuleArgs): We don't have help about the args, don't pretend that we do.
Diffstat (limited to 'loader2/driverselect.c')
-rw-r--r--loader2/driverselect.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/loader2/driverselect.c b/loader2/driverselect.c
index 9f0977b3f..66614f377 100644
--- a/loader2/driverselect.c
+++ b/loader2/driverselect.c
@@ -60,14 +60,11 @@ static int getManualModuleArgs(struct moduleInfo * mod, char *** moduleArgs) {
buf = sdupprintf(_("Please enter any parameters which you wish to pass "
"to the %s module separated by spaces. If you don't "
"know what parameters to supply, skip this screen "
- "by pressing the \"OK\" button. A list of available "
- "options can be obtained by pressing the F1 key."),
- mod->moduleName);
+ "by pressing the \"OK\" button."), mod->moduleName);
text = newtTextboxReflowed(-1, -1, buf, 60, 0, 10, 0);
entry = newtEntry(-1, -1, argsEntry, 50, (const char **) &argsEntry,
NEWT_ENTRY_SCROLL);
- newtFormAddHotKey(f, NEWT_KEY_F1);
newtFormAddHotKey(f, NEWT_KEY_F12);
buttons = newtButtonBar(_("OK"), &ok, _("Back"), &back, NULL);
@@ -88,9 +85,6 @@ static int getManualModuleArgs(struct moduleInfo * mod, char *** moduleArgs) {
if (es.reason == NEWT_EXIT_COMPONENT && es.u.co == back) {
done = -1;
- } else if (es.reason == NEWT_EXIT_HOTKEY && es.u.key == NEWT_KEY_F1) {
- logMessage(WARNING, "need to pop up 'help' with module options here");
- /* JKFIXME: ^^^ */
} else {
done = 1;
}