summaryrefslogtreecommitdiffstats
path: root/installclass.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2005-10-07 14:58:20 +0000
committerChris Lumens <clumens@redhat.com>2005-10-07 14:58:20 +0000
commit886d53e771fef48afce4709b14c66313169bcbee (patch)
treeb1bfb343d23ebfd7bb1c134409d379c373ea7475 /installclass.py
parent456dccd51dda3905ec0ff528fced45d8f40367e6 (diff)
downloadanaconda-886d53e771fef48afce4709b14c66313169bcbee.tar.gz
anaconda-886d53e771fef48afce4709b14c66313169bcbee.tar.xz
anaconda-886d53e771fef48afce4709b14c66313169bcbee.zip
Use rhpxl instead of rhpl for X configuration.
Diffstat (limited to 'installclass.py')
-rw-r--r--installclass.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/installclass.py b/installclass.py
index 93d1ca173..cd920c958 100644
--- a/installclass.py
+++ b/installclass.py
@@ -397,11 +397,11 @@ class BaseInstallClass:
id.xsetup.xhwstate.recalc_mode()
def setVideoCard(self, id, driver = None, videoRam = None):
- import rhpl.videocard
+ import rhpxl.videocard
primary = id.videocard.primaryCard()
if driver:
- db = rhpl.videocard.drivers
+ db = rhpxl.videocard.drivers
if db.has_key(driver):
primary.setDriver(driver)
id.xsetup.xhwstate.set_videocard_name(primary.getDescription())
@@ -426,7 +426,7 @@ class BaseInstallClass:
self.setMiscXSettings(id, depth, resolution, runlevel = rl)
def setMouse(self, id, mouseType, device = None, emulThree = -1):
- import rhpl.mouse as mouse
+ import rhpxl.mouse as mouse
# blindly trust what we're told
mouse = mouse.Mouse(skipProbe = 1)