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 /flags.py | |
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 'flags.py')
-rw-r--r-- | flags.py | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -40,6 +40,11 @@ class Flags: self.__dict__['flags']['autoscreenshot'] = 0 self.__dict__['flags']['usevnc'] = 0 self.__dict__['flags']['selinux'] = SELINUX_DEFAULT + # for non-physical consoles like some ppc and sgi altix, + # we need to preserve the console device and not try to + # do things like bogl on them. this preserves what that + # device is + self.__dict__['flags']['virtpconsole'] = None # determine if selinux is enabled or not |