summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake/bttv.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-07-08 07:45:08 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-07-08 07:45:08 +0000
commit9555bb791920e8feace953f90cf908e864451b59 (patch)
treeecabc98ad8cb1019c81cf321ea5418d679950482 /perl-install/harddrake/bttv.pm
parent71c714077ded40469aa5887b939a60723308dba5 (diff)
downloaddrakx-backup-do-not-use-9555bb791920e8feace953f90cf908e864451b59.tar
drakx-backup-do-not-use-9555bb791920e8feace953f90cf908e864451b59.tar.gz
drakx-backup-do-not-use-9555bb791920e8feace953f90cf908e864451b59.tar.bz2
drakx-backup-do-not-use-9555bb791920e8feace953f90cf908e864451b59.tar.xz
drakx-backup-do-not-use-9555bb791920e8feace953f90cf908e864451b59.zip
various cleanups:
- move all harddrake modules to harddrake namespace - replace two use by require so that it's not done at compil time but at runtime - there was a missing $ in harddrake::ui.pm
Diffstat (limited to 'perl-install/harddrake/bttv.pm')
-rw-r--r--perl-install/harddrake/bttv.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/harddrake/bttv.pm b/perl-install/harddrake/bttv.pm
index c9464158e..3c3802609 100644
--- a/perl-install/harddrake/bttv.pm
+++ b/perl-install/harddrake/bttv.pm
@@ -1,4 +1,4 @@
-package bttv;
+package harddrake::bttv;
use strict;
@@ -204,7 +204,7 @@ If your card is misdetected, you can force the right tuner and card types here.
my $options =
'radio=' . ($conf{radio} ? 1 : 0) . ' '.
join(' ', map { if_($conf{$_} ne -1, "$_=$conf{$_}") } qw(card pll tuner gbuffers));
- log::l("[harddrake::tv] $options");
+ log::l("[harddrake::bttv] $options");
standalone::explanations("modified file /etc/modules.conf ($options)");
modules::set_options("bttv", $options) if $options;
}