diff options
author | Thierry Vignaud <tv@mageia.org> | 2012-03-20 23:13:04 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2012-03-20 23:13:04 +0000 |
commit | 5ba23491653c4b5bf1f87eb3603cd03d6033e5d6 (patch) | |
tree | a2d08dbe1e99c09b0a9e74101b943076c2f8cdfb | |
parent | a0ac8bd123e23a08285c9e470c79c8228e691371 (diff) | |
download | drakx-5ba23491653c4b5bf1f87eb3603cd03d6033e5d6.tar drakx-5ba23491653c4b5bf1f87eb3603cd03d6033e5d6.tar.gz drakx-5ba23491653c4b5bf1f87eb3603cd03d6033e5d6.tar.bz2 drakx-5ba23491653c4b5bf1f87eb3603cd03d6033e5d6.tar.xz drakx-5ba23491653c4b5bf1f87eb3603cd03d6033e5d6.zip |
step column: hide so called "bootlader" step since we do _not_ actually
install bootloader at this stage but later in summary (mga#484)
-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") ], |