diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-09 21:31:56 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-09 21:31:56 +0000 |
commit | 344284a416955482b3a0a75ab6677842c6e97169 (patch) | |
tree | 7304eb04d644edea7cb73f6045d815666b93b093 | |
parent | 04f5aa31f328bfcb47901e6c7214d40c57e73536 (diff) | |
download | drakx-backup-do-not-use-344284a416955482b3a0a75ab6677842c6e97169.tar drakx-backup-do-not-use-344284a416955482b3a0a75ab6677842c6e97169.tar.gz drakx-backup-do-not-use-344284a416955482b3a0a75ab6677842c6e97169.tar.bz2 drakx-backup-do-not-use-344284a416955482b3a0a75ab6677842c6e97169.tar.xz drakx-backup-do-not-use-344284a416955482b3a0a75ab6677842c6e97169.zip |
have BusID's on MULTI_HEAD, otherwise G450 & G550 go crazy
-rw-r--r-- | perl-install/Xconfig/card.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/Xconfig/card.pm b/perl-install/Xconfig/card.pm index d4146af92..d889a73c8 100644 --- a/perl-install/Xconfig/card.pm +++ b/perl-install/Xconfig/card.pm @@ -165,7 +165,7 @@ sub probe() { #- in case of only one cards, remove all BusID reference, this will avoid #- need of change of it if the card is moved. #- on many PPC machines, card is on-board, BusID is important, leave? - if (@cards == 1 && arch() !~ /ppc/) { + if (@cards == 1 && !$cards[0]{MULTI_HEAD} && arch() !~ /ppc/) { delete $cards[0]{BusID}; } |