summaryrefslogtreecommitdiffstats
path: root/anaconda
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 /anaconda
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 'anaconda')
-rwxr-xr-xanaconda5
1 files changed, 4 insertions, 1 deletions
diff --git a/anaconda b/anaconda
index e492d2aef..2b5370385 100755
--- a/anaconda
+++ b/anaconda
@@ -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'):