Eldan Shachar has uploaded a new change for review. Change subject: vm payload: Add Joliet FS support ......................................................................
vm payload: Add Joliet FS support Current payload ISO only uses Rock Ridge extension, as a result Windows VMs can't use payloads with long filenames. This fix adds the Joliet extension to the generated ISO. Change-Id: I45a48e53b93aa36aaf43100cdb8cdf00bbf18263 Bug-Url: https://bugzilla.redhat.com/1205058 Signed-off-by: Eldan Shachar <[email protected]> --- M vdsm/mkimage.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/34/40534/1 diff --git a/vdsm/mkimage.py b/vdsm/mkimage.py index 2b69a18..7633662 100644 --- a/vdsm/mkimage.py +++ b/vdsm/mkimage.py @@ -123,7 +123,7 @@ _decodeFilesIntoDir(files, dirname) isopath = _getFileName(vmId, files) - command = [EXT_MKISOFS, '-R', '-o', isopath] + command = [EXT_MKISOFS, '-R', '-J', '-o', isopath] if volumeName is not None: command.extend(['-V', volumeName]) command.extend([dirname]) -- To view, visit https://gerrit.ovirt.org/40534 To unsubscribe, visit https://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I45a48e53b93aa36aaf43100cdb8cdf00bbf18263 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: ovirt-3.5 Gerrit-Owner: Eldan Shachar <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
