summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-07-18 08:44:40 +0000
committerFrancois Pons <fpons@mandriva.com>2002-07-18 08:44:40 +0000
commit37608fad51b76a600479f1bc387deb0f2b96147b (patch)
tree2ce0354af0dfd4f400bb12bf6f2c227975f2002b /perl-install
parente7d5a1ac0d6c480988c7e6a1665b48ad6d911511 (diff)
downloaddrakx-backup-do-not-use-37608fad51b76a600479f1bc387deb0f2b96147b.tar
drakx-backup-do-not-use-37608fad51b76a600479f1bc387deb0f2b96147b.tar.gz
drakx-backup-do-not-use-37608fad51b76a600479f1bc387deb0f2b96147b.tar.bz2
drakx-backup-do-not-use-37608fad51b76a600479f1bc387deb0f2b96147b.tar.xz
drakx-backup-do-not-use-37608fad51b76a600479f1bc387deb0f2b96147b.zip
add back change CD support.
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/pkgs.pm53
1 files changed, 32 insertions, 21 deletions
diff --git a/perl-install/pkgs.pm b/perl-install/pkgs.pm
index 9ce597b27..2ac5924a6 100644
--- a/perl-install/pkgs.pm
+++ b/perl-install/pkgs.pm
@@ -1276,14 +1276,45 @@ sub allowedToUpgrade { $_[0] !~ /^(kernel|kernel22|kernel2.2|kernel-secure|kerne
sub installTransactionClosure {
my ($packages, $id2pkg) = @_;
- my ($id, %closure, @l);
+ my ($id, %closure, @l, $medium, $min_id, $max_id);
@l = sort { $a <=> $b } keys %$id2pkg;
+
+ #- search first usable medium (sorted by medium ordering).
+ foreach (sort { $a->{start} <=> $b->{start} } values %{$packages->{mediums}}) {
+ $_->{selected} or next;
+ if ($l[0]->id <= $_->{end}) {
+ #- we have a candidate medium, it could be the right one containing
+ #- the first package of @l...
+ $l[0]->id >= $_->{start} and $medium = $_, last;
+ #- ... but it could be necessary to find the first
+ #- medium containing package of @l.
+ foreach $id (@l) {
+ $id >= $_->{start} && $id <= $_->{end} and $medium = $_, last;
+ }
+ $medium and last;
+ }
+ }
+ $medium or return (); #- no more medium usable -> end of installation by returning empty list.
+ ($min_id, $max_id) = ($medium->{start}, $medium->{end});
+
+ #- it is sure at least one package will be installed according to medium chosen.
+ install_any::useMedium($medium->{medium});
+ if ($medium->{method} eq 'cdrom') {
+ my $pkg = $packages->{depslist}[$l[0]];
+
+ #- force changeCD callback to be called from main process.
+ install_any::getFile($pkg->filename, $medium->{descr});
+ #- close opened handle above.
+ install_any::getFile('XXX');
+ }
+
while (defined($id = shift @l)) {
my @l2 = ($id);
while (defined($id = shift @l2)) {
exists $closure{$id} and next;
+ $id >= $min_id && $id <= $max_id or next;
$closure{$id} = undef;
my $pkg = $packages->{depslist}[$id];
@@ -1338,7 +1369,6 @@ sub install($$$;$$) {
#- place (install_steps_gtk.pm,...).
installCallback($packages, 'user', undef, 'install', $nb, $total);
- my $medium = 1;
do {
my @transToInstall = installTransactionClosure($packages, \%packages);
$nb = values %packages;
@@ -1354,25 +1384,6 @@ sub install($$$;$$) {
#- extract headers for parent as they are used by callback.
extractHeaders($prefix, \@transToInstall, $packages->{mediums});
- if ($packages->{mediums}{$medium}{method} eq 'cdrom') {
- #- extract packages to make sure the getFile below to force
- #- accessing medium will not be redirected to updates.
- my @origin = grep { packageMedium($packages, $_) == $medium } @transToInstall;
-
- if (@origin) {
- #- reset file descriptor open for main process but
- #- make sure error trying to change from hdlist are
- #- trown from main process too.
- install_any::getFile($origin[0]->filename, packageMedium($packages, $origin[0])->{descr});
-
-# #- allow some log here to check selected status.
-# log::l("status for medium $origin[0][$MEDIUM] ($media->{$origin[0][$MEDIUM]}{descr}) is " .
-# ($media->{$origin[0][$MEDIUM]}{selected} ? "selected" : "refused"));
- }
- }
- #- and make sure there are no staling open file descriptor too (before forking)!
- install_any::getFile('XXX');
-
my ($retry_pkg, $retry_count);
while ($retry_pkg || @transToInstall) {
local (*INPUT, *OUTPUT); pipe INPUT, OUTPUT;