iso: Support joliet long names

Without this option the names reported by joliet tree are truncated.

Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
This commit is contained in:
Lubomír Sedlář 2023-06-05 15:30:18 +02:00
parent b7adbf8a91
commit fa50eedfad
1 changed files with 3 additions and 0 deletions

View File

@ -169,6 +169,9 @@ def write_xorriso_commands(opts):
emit(f, "-volid %s" % opts.volid)
# isoinfo -J uses the Joliet tree, and it's used by virt-install
emit(f, "-joliet on")
# Support long filenames in the Joliet trees. Repodata is particularly
# likely to run into this limit.
emit(f, "-compliance joliet_long_names")
with open(opts.graft_points) as gp:
for line in gp: