summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/install/media.pm3
2 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 76cf05cd4..6224a6e57 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -5,6 +5,7 @@
- media management:
o better layout for DVD/CD copy
o drop support for parsing the "media_info/hdlists" file
+ o drop support for parsing the "media_info/hdlists" file and for getting hdlists
Version 11.80.1 - 21 January 2008
diff --git a/perl-install/install/media.pm b/perl-install/install/media.pm
index 091d93743..325cfb477 100644
--- a/perl-install/install/media.pm
+++ b/perl-install/install/media.pm
@@ -713,9 +713,6 @@ sub get_medium {
if (-s $synthesis) {
($m->{start}, $m->{end}) = $packages->parse_synthesis($synthesis, callback => $callback)
or $error = "bad synthesis $synthesis for $m->{fakemedium}";
- } elsif (-s $hdlist) {
- ($m->{start}, $m->{end}) = $packages->parse_hdlist($hdlist, callback => $callback)
- or $error = "bad hdlist $hdlist for $m->{fakemedium}";
} else {
$error = "fatal: no hdlist nor synthesis to read for $m->{fakemedium}";
}