summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/dmraid.pm
Commit message (Expand)AuthorAgeFilesLines
* fix typoPascal Rigaux2005-09-161-4/+4
* during install, don't use half working dmraids (#18386)Pascal Rigaux2005-09-161-4/+26
* log what dmraid -ccs and -ccr returnsPascal Rigaux2005-09-141-0/+2
* in standalone, missing dmraid implies we don't have dmraid devices, so make i...Pascal Rigaux2005-07-011-0/+2
* call it dmraid, it's more explicitPascal Rigaux2005-06-301-1/+1
* the output of "dmraid -r" is not enough, "dmraid -s" is more important.Pascal Rigaux2005-06-291-10/+110
* try to cleanup fs.pmPascal Rigaux2005-06-281-1/+2
* handle dmraid device not there, keeping the raw hdsPascal Rigaux2005-06-241-6/+8
* initial dmraid supportPascal Rigaux2005-06-201-0/+55
k) = partition { detect_devices::isTVcardConfigurable($_) } @devices; my $modules_conf; # handle TV cards which driver needs to be configured b/c it cannot autodetect the card & tuner types: if (@devices = @$devices) { my $not_canceled = 1; # TODO: That need some work for multiples TV cards each_index { if (($< == 0 || $::testing) && (grep { detect_devices::isTVcardConfigurable($_) } @devices)) { require harddrake::v4l; require modules; $modules_conf ||= modules::any_conf->read; $not_canceled &&= harddrake::v4l::config($in, $modules_conf, $_->{driver}); $modules_conf->write; } } @devices; } # handle TV cards that do not require any driver configuration: if (@devices = @$devices_ok) { require modules; $modules_conf ||= modules::any_conf->read; $modules_conf->write; } # we failed to detect any TV card: if (is_empty_array_ref($devices) && is_empty_array_ref($devices_ok)) { $in->ask_warn(N("No TV Card detected!"), formatAlaTeX( #-PO: keep the double empty lines between sections, this is formatted a la LaTeX N("No TV Card has been detected on your machine. Please verify that a Linux-supported Video/TV Card is correctly plugged in."))); } $in->exit(0) if defined $in; # TODO: # - offer to sort channels after # - use Video-Capture-V4l-0.221 ? # - configure kwintv and zapping ? => they've already wizards :-( # - install xawtv if needed through consolhelper