From fd88d964bbeee723dc2a7ecf60e33aec95dfcfaa Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 2 Apr 2003 16:23:07 +0000 Subject: 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) --- perl-install/patch/9.1/patch-detectSMP-K6.pl | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 perl-install/patch/9.1/patch-detectSMP-K6.pl 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 }; -- cgit v1.2.1