summaryrefslogtreecommitdiffstats
path: root/perl-install/harddrake/bttv.pm
Commit message (Collapse)AuthorAgeFilesLines
* useless standalone dependancy for pixel fscking checkerThierry Vignaud2002-07-181-0/+1
|
* log only if options setThierry Vignaud2002-07-091-3/+5
|
* typo fixThierry Vignaud2002-07-091-1/+1
|
* only log explanations in standalone modeThierry Vignaud2002-07-091-1/+1
|
* various cleanups:Thierry Vignaud2002-07-081-2/+2
| | | | | | | | - 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
* remove device test: there're only two harddrake::bttv users,Thierry Vignaud2002-07-051-1/+0
| | | | | | install_steps_interactive.pm and drakxtv which both have already tested that a bttv managed tv card is there.
* - add more tv cardsThierry Vignaud2002-07-051-4/+12
| | | | | | | | | - enable users to select number of buffers for mmap() - better description for pll setting - add tooltips help for some entries
* tv cards list:Thierry Vignaud2002-07-051-124/+158
| | | | | | | | | | | | | | | - split multi-cards entries - reverse the hash (needed since now bttv card types are not anymore unique) - complete the list from various sources - use a tree to display the list, it's clearer now since it's splitted by vendors - longer message
* - remove uneeded stuff for modules ("#!/..", "use lib..", "useThierry Vignaud2002-07-051-15/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | standalone", ...) - simplify bttv options managment: - use if_, thanks MDK::Common - s/mapn/map by using a hash at first - s/mapn{if}/map{if_} - don't read/write modules.conf here, drakx take care of that for us thus, the test program became: #!/usr/bin/perl use strict; use lib qw(/usr/lib/libDrakX); use standalone; use bttv; use interactive; use modules; modules::read_conf; bttv::config('interactive'->vnew()); modules::write_conf;
* spec29: bttv configuration part of drakxtv.Thierry Vignaud2002-07-051-0/+180
it can be used by: #!/usr/bin/perl use strict; use lib qw(/usr/lib/libDrakX); use standalone; use harddrake::bttv; use interactive; bttv::config('interactive'->vnew());