summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2001-07-06 19:33:25 +0000
committerJeremy Katz <katzj@redhat.com>2001-07-06 19:33:25 +0000
commitae0d5c92fbc02cc310fa91aea2ea05326efb2a19 (patch)
tree4042e50ada045c218dd93702e3ae0a87f0616113 /text.py
parent5e2a048aed88094fa64981d123614d3544c5e9c2 (diff)
downloadanaconda-ae0d5c92fbc02cc310fa91aea2ea05326efb2a19.tar.gz
anaconda-ae0d5c92fbc02cc310fa91aea2ea05326efb2a19.tar.xz
anaconda-ae0d5c92fbc02cc310fa91aea2ea05326efb2a19.zip
errmm.. along with the last commit, this adds a screen for picking which
bootloader you'd prefer to use in tui mode
Diffstat (limited to 'text.py')
-rw-r--r--text.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/text.py b/text.py
index 9f2270535..05bc8028a 100644
--- a/text.py
+++ b/text.py
@@ -44,7 +44,8 @@ stepToClasses = {
"partition": ("partition_text", ("PartitionWindow") ),
"findinstall" : ( "upgrade_text", "UpgradeExamineWindow" ),
"addswap" : ( "upgrade_text", "UpgradeSwapWindow" ),
- "bootloader" : ("bootloader_text", ("BootloaderAppendWindow",
+ "bootloader" : ("bootloader_text", ("BootloaderChoiceWindow",
+ "BootloaderAppendWindow",
"BootloaderWindow",
"BootloaderImagesWindow" ) ),
"network" : ("network_text", ( "NetworkWindow", "HostnameWindow" ) ),
@@ -75,11 +76,6 @@ if iutil.getArch() == 'sparc':
stepToClasses["bootloader"] = ( "silo_text", ( "SiloAppendWindow",
"SiloWindow"
"SiloImagesWindow" ) )
-else:
- stepToClasses["bootloader"] = ( "bootloader_text", ( "BootloaderAppendWindow",
- "BootloaderWindow",
- "BootloaderImagesWindow") )
-
class InstallWindow: