diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-09-13 15:12:37 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-09-13 15:12:37 +0000 |
commit | 010819b761d5ff458ec0b075bff3ea80e20d21c9 (patch) | |
tree | 09a66aaafb18581d342d19ed804fbf8febc70de7 /anaconda | |
parent | 01308c1183ca820a00dab84b0c11e3b29f97bf4b (diff) | |
download | anaconda-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 'anaconda')
-rwxr-xr-x | anaconda | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -395,7 +395,8 @@ try: 'lang=', 'keymap=', 'kbdtype=', 'module=', 'class=', 'expert', 'serial', 'lowres', 'nofb', 'rescue', 'nomount', 'autostep', 'resolution=', 'skipddc', 'noselinux', 'selinux', - 'vnc', 'vncconnect=', 'vnc=', 'cmdline', 'headless']) + 'vnc', 'vncconnect=', 'vnc=', 'cmdline', 'headless', + 'virtpconsole=']) except TypeError, msg: sys.stderr.write("Error %s\n:" % msg) sys.exit(-1) @@ -538,6 +539,8 @@ for n in args: display_mode = 'c' elif (str == '--kbdtype'): kbdtype = arg + elif (str == '--virtpconsole'): + flags.virtpconsole = arg elif (str == '--headless'): isHeadless = 1 elif (str == '--vnc'): |