From cc1be9f96854de780208ef670689b85739168d34 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Tue, 29 Mar 2005 13:02:17 +0000 Subject: if i686-up-4GB is not there we don't have pae, fallback on i586-up-1GB --- perl-install/pkgs.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm index 3bd80fdd7..c18755d81 100644 --- a/perl-install/pkgs.pm +++ b/perl-install/pkgs.pm @@ -207,7 +207,7 @@ sub bestKernelPackage { my @prefered_exts = is_xbox() ? '-xbox' : detect_devices::is_i586() ? '-i586-up-1GB' : - !detect_devices::has_cpu_flag('pae') ? '-i686-up-4GB' : + !detect_devices::has_cpu_flag('pae') ? ('-i686-up-4GB', '-i586-up-1GB') : detect_devices::BIGMEM() ? ('-enterprise', '-smp') : detect_devices::hasSMP() ? '-smp' : ''; -- cgit v1.2.1