| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
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;
|
|
|
|
|
| |
POSIX is no more used too.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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());
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
- better GUI reactivity: don't wait for config tool to complete, just
"fork and forget" [(c) us air force] and refuse to run another
config tool until the first one to complete
|
|
|
|
|
| |
tool
|
|
|
|
|
|
|
|
|
|
|
|
| |
- move strict and standalone require at top
- c is unused
- comment exceptions in devices loop (ie skip classes without any
devices or any detector
- optimize away $pid
|
|
|
|
|
|
|
| |
- menu does appear
- information fields are translated from raw to english again
|
|
- harddrake/data.pm: the data structure
- harddrake/ui.pm: the ui code
- standalone/service_harddrake: the init.d service (which need a few polishing (timeout, ...)
- standalone/harddrake2: the ui caller which need to be dadou/ln -fied
|