diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2008-03-04 22:23:06 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2008-03-04 22:23:06 +0000 |
commit | 04571a4cb0717dcf469d68a8d5e2f9587b42ce52 (patch) | |
tree | 559bbcba09067202deecb4151e323a30459a22ff /perl-install/detect_devices.pm | |
parent | aa600f53e86e940ab49e83805e6bc8a6fad5be1c (diff) | |
download | drakx-04571a4cb0717dcf469d68a8d5e2f9587b42ce52.tar drakx-04571a4cb0717dcf469d68a8d5e2f9587b42ce52.tar.gz drakx-04571a4cb0717dcf469d68a8d5e2f9587b42ce52.tar.bz2 drakx-04571a4cb0717dcf469d68a8d5e2f9587b42ce52.tar.xz drakx-04571a4cb0717dcf469d68a8d5e2f9587b42ce52.zip |
install kernel586 on Transmeta Crusoe TM5800 (#37866)
Diffstat (limited to 'perl-install/detect_devices.pm')
-rw-r--r-- | perl-install/detect_devices.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/detect_devices.pm b/perl-install/detect_devices.pm index 6e9f21ce1..5f5d25e19 100644 --- a/perl-install/detect_devices.pm +++ b/perl-install/detect_devices.pm @@ -1062,6 +1062,7 @@ sub BIGMEM() { sub is_i586() { my $cpuinfo = cat_('/proc/cpuinfo'); $cpuinfo =~ /^cpu family\s*:\s*(\d+)/m && $1 < 6 || + $cpuinfo =~ /^model name\s*:\s*Transmeta.* TM5800/m || # mdvbz#37866 !has_cpu_flag('cmov'); } |