diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-16 17:01:52 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-16 17:01:52 +0000 |
commit | 917834ae3e027da1e071aa2989f8705d05acbde6 (patch) | |
tree | ab1b39c7c978e484da608752d8be4f1d5f88c265 /perl-install | |
parent | e1525b8bf2292dd69773951180f1dfb00343529a (diff) | |
download | drakx-backup-do-not-use-917834ae3e027da1e071aa2989f8705d05acbde6.tar drakx-backup-do-not-use-917834ae3e027da1e071aa2989f8705d05acbde6.tar.gz drakx-backup-do-not-use-917834ae3e027da1e071aa2989f8705d05acbde6.tar.bz2 drakx-backup-do-not-use-917834ae3e027da1e071aa2989f8705d05acbde6.tar.xz drakx-backup-do-not-use-917834ae3e027da1e071aa2989f8705d05acbde6.zip |
(setPackages): set flag "TV" when bttv hardware is there
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_any.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_any.pm b/perl-install/install_any.pm index d12523340..4c03f888d 100644 --- a/perl-install/install_any.pm +++ b/perl-install/install_any.pm @@ -320,10 +320,10 @@ sub setPackages { if ($::auto_install && !$o->{compssUsersChoice}) { $o->{compssUsersChoice}{$_} = 1 foreach map { @{$o->{compssUsers}{$_}{flags}} } @{$o->{compssUsersSorted}}; } + $o->{compssUsersChoice}{TV} = 1 if grep { $_->{driver} eq 'bttv' } detect_devices::probeall(); $o->{compssUsersChoice}{SYSTEM} = 1; $o->{compssUsersChoice}{BURNER} = 1 if detect_devices::burners(); $o->{compssUsersChoice}{PCMCIA} = 1 if detect_devices::hasPCMCIA(); - $o->{compssUsersChoice}{'3D'} = 1 if detect_devices::matching_desc('Matrox.* G[24]00') || detect_devices::matching_desc('Riva.*128') || |