diff options
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/steps_list.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 3969148c9..ec566848d 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,4 +1,6 @@ - disk install: handle bogus ISOs when looking for install image (mga#4919) +- step column: hide so called "bootlader" step since we do _not_ actually + install bootloader at this stage but later in summary (mga#484) Version 13.95 - 13 March 2012 diff --git a/perl-install/install/steps_list.pm b/perl-install/install/steps_list.pm index 143ffc354..3dc3de2f2 100644 --- a/perl-install/install/steps_list.pm +++ b/perl-install/install/steps_list.pm @@ -35,7 +35,7 @@ use common; N_("User management") ], configureNetwork => [ N_("_: Keep these entry short\nNetworking"), 1, 1, '1', "formatPartitions", N_("_: Keep these entry short\nNetworking") ], - setupBootloader => [ N_("_: Keep these entry short\nBootloader"), 1, 0, '', "installPackages", + setupBootloader => [ N_("_: Keep these entry short\nBootloader"), 1, 0, '1', "installPackages", N_("_: Keep these entry short\nBootloader") ], configureX => [ N_("_: Keep these entry short\nConfigure X"), 1, 1, '1', ["formatPartitions", "setupBootloader"], N_("_: Keep these entry short\nConfigure X") ], |