summaryrefslogtreecommitdiffstats
path: root/perl-install/patch
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2003-04-02 16:23:07 +0000
committerPascal Rigaux <pixel@mandriva.com>2003-04-02 16:23:07 +0000
commitfd88d964bbeee723dc2a7ecf60e33aec95dfcfaa (patch)
treece0f8e2ea0c69b236a2c044e330f3dc2f6d20c00 /perl-install/patch
parent96232ae5c9b026f54b81555e8c0724edc1b48805 (diff)
downloaddrakx-backup-do-not-use-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.tar
drakx-backup-do-not-use-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.tar.gz
drakx-backup-do-not-use-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.tar.bz2
drakx-backup-do-not-use-fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa.tar.xz
drakx-backup-do-not-use-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')
-rw-r--r--perl-install/patch/9.1/patch-detectSMP-K6.pl5
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 };