diff options
author | Andreas Loibl <andreas@andreas-loibl.de> | 2013-08-25 10:13:45 +0200 |
---|---|---|
committer | Andreas Loibl <andreas@andreas-loibl.de> | 2013-08-25 10:13:45 +0200 |
commit | e8135dde3779d85a05dbe1ca65766a01dec5e820 (patch) | |
tree | 884348d54e6ba083878c3879bc157eb152809001 /isohybrid-acritox | |
parent | 97685e70eb99edaea1a9a420460ef05fd2b19dcd (diff) | |
download | kanotix-e8135dde3779d85a05dbe1ca65766a01dec5e820.zip kanotix-e8135dde3779d85a05dbe1ca65766a01dec5e820.tar.gz |
added xorriso-support
Diffstat (limited to 'isohybrid-acritox')
-rwxr-xr-x | isohybrid-acritox | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/isohybrid-acritox b/isohybrid-acritox index 42abe6c..23f53ee 100755 --- a/isohybrid-acritox +++ b/isohybrid-acritox @@ -465,8 +465,13 @@ do $bytes = unpack("C", $bytes) - 1; printf("SUSP Entry - %u bytes (0x%X)\n", $bytes+1, $bytes+1) if($debug); } while $bytes > 0; - $sector_blk++; - seek(FIMG, $iso_pos+$first_sector_blk*$bs+$sector_blk*$bs, SEEK_SET) or die "$0: $file: $!\n"; + do { + $sector_blk++; + seek(FIMG, $iso_pos+$first_sector_blk*$bs+$sector_blk*$bs, SEEK_SET) or die "$0: $file: $!\n"; + read(FIMG, $sua_head, 4) > 0 or break; + seek(FIMG, tell(FIMG)-4, SEEK_SET) or die "$0: $file: $!\n"; + ($sig, $len, $version) = unpack("a[2]CC", $sua_head); + } while($sig eq "ER"); # skip ER(Extensions Reference)-SUA, xorriso intersperses this somehow printf("\ndirectory entry at 0x%X:\n", tell(FIMG)) if($debug); read(FIMG, $bytes, 1) > 0 or break; $bytes = unpack("C", $bytes) - 1; |