| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|