aboutsummaryrefslogtreecommitdiffstats
path: root/BCD/Genisoimage.pm
diff options
context:
space:
mode:
authorAnne Nicolas <ennael@mageia.org>2011-10-31 09:46:13 +0000
committerAnne Nicolas <ennael@mageia.org>2011-10-31 09:46:13 +0000
commit3e58c1ee79532469f4e7d1b0084f5f791a31c7ca (patch)
tree412a6c53d972d28705af3d629cf342a6cc270a4c /BCD/Genisoimage.pm
parentdf535a121225f56f65396b80150e7622fea6b9ae (diff)
downloadbcd-3e58c1ee79532469f4e7d1b0084f5f791a31c7ca.tar
bcd-3e58c1ee79532469f4e7d1b0084f5f791a31c7ca.tar.gz
bcd-3e58c1ee79532469f4e7d1b0084f5f791a31c7ca.tar.bz2
bcd-3e58c1ee79532469f4e7d1b0084f5f791a31c7ca.tar.xz
bcd-3e58c1ee79532469f4e7d1b0084f5f791a31c7ca.zip
- update isos configuration files
- switch to trunk version of bcd - update Media.pm
Diffstat (limited to 'BCD/Genisoimage.pm')
-rw-r--r--BCD/Genisoimage.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/BCD/Genisoimage.pm b/BCD/Genisoimage.pm
index 2f031d7..4a5cc42 100644
--- a/BCD/Genisoimage.pm
+++ b/BCD/Genisoimage.pm
@@ -56,6 +56,7 @@ sub create_idx {
open my $idx_file, ">$idx";
foreach (keys %hrpms) {
$_ or next;
+ print $_;
my @table = @{ $hrpms{$_} };
# print "$isoconf->{iso}{header}{volumeid} $_-$table[0]-$table[1]\n";
print $idx_file "$isoconf->{iso}{header}{volumeid} $_-$table[0]-$table[1]\n";
@@ -106,7 +107,7 @@ sub create_md5 {
sub isohybrid {
print_color("$LOG isohybrid the ISO", $color);
my $ISOFILE = "$isodir/$isoname.iso";
- #system("isohybrid $iso->{options}{isohybrid} $ISOFILE") == 0 or die "$LOG system isohybrid failed: $?\n";
+# system("isohybrid $iso->{options}{isohybrid} $ISOFILE") == 0 or die "$LOG system isohybrid failed: $?\n";
}
sub copy_textfiles {
@@ -124,7 +125,7 @@ sub main_iso {
print_color("$LOG skipping ISO creation", $color);
} else {
create_iso;
-# isohybrid;
+ isohybrid;
create_md5;
}