summaryrefslogtreecommitdiffstats
path: root/dispatch.py
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2002-11-12 16:50:41 +0000
committerMike Fulbright <msf@redhat.com>2002-11-12 16:50:41 +0000
commitb25fb5e80f8034b964f31030320c658b8be3ef86 (patch)
treee631f8c590f51003a13118233b6f62e92b5ca522 /dispatch.py
parenta1d21620790fd4b31a9d006145c18b19ab083f48 (diff)
downloadanaconda-b25fb5e80f8034b964f31030320c658b8be3ef86.tar.gz
anaconda-b25fb5e80f8034b964f31030320c658b8be3ef86.tar.xz
anaconda-b25fb5e80f8034b964f31030320c658b8be3ef86.zip
changes to work with new xsetup object
Diffstat (limited to 'dispatch.py')
-rw-r--r--dispatch.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/dispatch.py b/dispatch.py
index de77aec42..37578d07c 100644
--- a/dispatch.py
+++ b/dispatch.py
@@ -52,7 +52,7 @@ installSteps = [
("welcome", ("id.configFileData",)),
("betanag", betaNagScreen, ("intf", "dir")),
("language", ("intf", "id.instLanguage")),
- ("keyboard", ("id.instLanguage.getDefaultKeyboard()", "id.keyboard", "id.xconfig")),
+ ("keyboard", ("id.instLanguage.getDefaultKeyboard()", "id.keyboard", "id.xsetup")),
("mouse", ("id.mouse",)),
("findrootparts", findRootParts, ("intf", "id", "dispatch", "dir", "instPath")),
("findinstall", ("dispatch", "intf", "id", "instPath")),
@@ -129,9 +129,9 @@ installSteps = [
("bootdisk", ("dir", "dispatch", "id.fsset")),
("makebootdisk", makeBootdisk, ("intf", "dir", "id.floppyDevice",
"id.hdList", "instPath", "id.bootloader")),
- ("videocard", ("dispatch", "id.xconfig", "id.videocard", "intf")),
- ("monitor", ("id.xconfig", "id.monitor")),
- ("xcustom", ("id.xconfig", "id.monitor", "id.videocard",
+ ("videocard", ("dispatch", "id.xsetup", "id.videocard", "intf")),
+ ("monitor", ("id.xsetup", "id.monitor")),
+ ("xcustom", ("id.xsetup", "id.monitor", "id.videocard",
"id.desktop", "id.comps", "instPath")),
("writexconfig", writeXConfiguration, ("id", "instPath")),
("writeksconfig", writeKSConfiguration, ("id", "instPath")),