summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-09-13 15:12:37 +0000
committerJeremy Katz <katzj@redhat.com>2004-09-13 15:12:37 +0000
commit010819b761d5ff458ec0b075bff3ea80e20d21c9 (patch)
tree09a66aaafb18581d342d19ed804fbf8febc70de7 /textw
parent01308c1183ca820a00dab84b0c11e3b29f97bf4b (diff)
downloadanaconda-010819b761d5ff458ec0b075bff3ea80e20d21c9.tar.gz
anaconda-010819b761d5ff458ec0b075bff3ea80e20d21c9.tar.xz
anaconda-010819b761d5ff458ec0b075bff3ea80e20d21c9.zip
add flags.virtpconsole to be used with virtual physical consoles like
hvc (ppc), hvsi (ppc), and altix (ia64). set up in init and carried throughout. (#131091, #130906, #131301)
Diffstat (limited to 'textw')
-rw-r--r--textw/keyboard_text.py2
-rw-r--r--textw/language_text.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/textw/keyboard_text.py b/textw/keyboard_text.py
index 0e65068ff..dd7fa0327 100644
--- a/textw/keyboard_text.py
+++ b/textw/keyboard_text.py
@@ -22,7 +22,7 @@ from rhpl.translate import _
class KeyboardWindow:
def __call__(self, screen, defaultByLang, kbd):
- if flags.serial:
+ if flags.serial or flags.virtpconsole:
return INSTALL_NOOP
keyboards = kbd.modelDict.keys()
keyboards.sort ()
diff --git a/textw/language_text.py b/textw/language_text.py
index 1b68057df..19ffd9934 100644
--- a/textw/language_text.py
+++ b/textw/language_text.py
@@ -56,8 +56,8 @@ class LanguageWindow:
if (flags.setupFilesystems and
instLanguage.getFontFile(choice) == "bterm"
+ and not flags.serial and not flags.virtpconsole
and not isys.isPsudoTTY(0)
- and not flags.serial
and not isys.isVioConsole()):
# bterm to the rescue... have to shut down the screen and
# create a new one, though (and do a sleep)