summaryrefslogtreecommitdiffstats
path: root/text.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-10-22 19:32:38 +0000
committerMatt Wilson <msw@redhat.com>1999-10-22 19:32:38 +0000
commit1fd6585406744fec328b38bd62957ec063b2452f (patch)
tree745ba23bd7c4d8abfbaa51b6bf9e1585532c478b /text.py
parenta29f74c35f97793fe68ce93387a97051890243b4 (diff)
downloadanaconda-1fd6585406744fec328b38bd62957ec063b2452f.tar.gz
anaconda-1fd6585406744fec328b38bd62957ec063b2452f.tar.xz
anaconda-1fd6585406744fec328b38bd62957ec063b2452f.zip
merge from 6.1 branch
Diffstat (limited to 'text.py')
-rw-r--r--text.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/text.py b/text.py
index 56ba7199e..ea6e09239 100644
--- a/text.py
+++ b/text.py
@@ -1003,9 +1003,18 @@ class InstallInterface:
self.upgradeSteps = [
[_("Examine System"), UpgradeExamineWindow, (self.screen, todo)],
+ [_("LILO Configuration"), LiloAppendWindow,
+ (self.screen, todo), "lilo"],
+ [_("LILO Configuration"), LiloWindow,
+ (self.screen, todo), "lilo"],
+ [_("LILO Configuration"), LiloImagesWindow,
+ (self.screen, todo), "lilo"],
[_("Customize Upgrade"), CustomizeUpgradeWindow, (self.screen, todo, self.individual)],
[_("Individual Packages"), IndividualPackageWindow, (self.screen, todo, self.individual)],
+ [_("Boot Disk"), BootDiskWindow, (self.screen, todo),
+ "bootdisk" ],
[_("Upgrade System"), InstallWindow, (self.screen, todo)],
+ [_("Boot Disk"), BootdiskWindow, (self.screen, todo), "bootdisk"],
[_("Upgrade Complete"), FinishedWindow, (self.screen,)]
]