diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-04-02 16:23:07 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-04-02 16:23:07 +0000 |
commit | fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa (patch) | |
tree | ce0f8e2ea0c69b236a2c044e330f3dc2f6d20c00 /perl-install/patch/9.1/patch-detectSMP-K6.pl | |
parent | 96232ae5c9b026f54b81555e8c0724edc1b48805 (diff) | |
download | drakx-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.tar drakx-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.tar.gz drakx-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.tar.bz2 drakx-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.tar.xz drakx-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.zip |
Error scenario: On a AMD-K6, install fails after the formatting partitions steps with a strange "type read" error
Why: in some cases, the SMP detection code fails and force the install to exit
Solution: Use patch.pl which disables SMP detection
(thanks to Angela Bayley)
Diffstat (limited to 'perl-install/patch/9.1/patch-detectSMP-K6.pl')
-rw-r--r-- | perl-install/patch/9.1/patch-detectSMP-K6.pl | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/perl-install/patch/9.1/patch-detectSMP-K6.pl b/perl-install/patch/9.1/patch-detectSMP-K6.pl new file mode 100644 index 000000000..acf5821f6 --- /dev/null +++ b/perl-install/patch/9.1/patch-detectSMP-K6.pl @@ -0,0 +1,5 @@ +use detect_devices; +package detect_devices; + +undef *hasSMP; +*hasSMP = sub { 0 }; |