| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
| |
install_steps_interactive.pm and drakxtv which both have already
tested that a bttv managed tv card is there.
|
|
|
|
|
|
|
|
|
| |
- enable users to select number of buffers for mmap()
- better description for pll setting
- add tooltips help for some entries
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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;
|
|
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());
|