diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-02-12 20:38:51 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-02-12 20:38:51 +0000 |
commit | 50bdbd03aeb42f3cc96b1aa9edeb53b549401bac (patch) | |
tree | 8915ee6a072e123fef96dc00a57f7aba77a20500 /perl-install/install_steps_interactive.pm | |
parent | 9f8040ddd852bf82d0ad1d71ee4e6ef5a8fa0d10 (diff) | |
download | drakx-50bdbd03aeb42f3cc96b1aa9edeb53b549401bac.tar drakx-50bdbd03aeb42f3cc96b1aa9edeb53b549401bac.tar.gz drakx-50bdbd03aeb42f3cc96b1aa9edeb53b549401bac.tar.bz2 drakx-50bdbd03aeb42f3cc96b1aa9edeb53b549401bac.tar.xz drakx-50bdbd03aeb42f3cc96b1aa9edeb53b549401bac.zip |
warn that selecting LSB means having 2.4 by default
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 41aead125..37f7cf09e 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -527,6 +527,14 @@ sub chooseGroups { } $o->reallyChooseGroups($size_to_display, $individual, \%val) or return; + + if ($val{LSB}) { + $o->ask_okcancel('', +N("Due to incompatibilities of the 2.6 series kernel with the LSB runtime +tests, the 2.4 series kernel will be installed as the default to insure +compliance under the \"LSB\" group selection."), 1) or next; + } + last if $::testing || pkgs::correctSize($size / sqr(1024)) < $available_size; $o->ask_warn('', N("Selected size is larger than available space")); |