diff options
author | Matt Wilson <msw@redhat.com> | 1999-10-22 19:32:38 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-10-22 19:32:38 +0000 |
commit | 1fd6585406744fec328b38bd62957ec063b2452f (patch) | |
tree | 745ba23bd7c4d8abfbaa51b6bf9e1585532c478b /text.py | |
parent | a29f74c35f97793fe68ce93387a97051890243b4 (diff) | |
download | anaconda-1fd6585406744fec328b38bd62957ec063b2452f.tar.gz anaconda-1fd6585406744fec328b38bd62957ec063b2452f.tar.xz anaconda-1fd6585406744fec328b38bd62957ec063b2452f.zip |
merge from 6.1 branch
Diffstat (limited to 'text.py')
-rw-r--r-- | text.py | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -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,)] ] |