Skip to content

Commit be4ef73

Browse files
authored
Use ISO 9660 format in create_iso under darwin
Currently `create_iso` in darwin produces CD image with hybrid format HFS+ISO 9660 This is less interoperable than ISO 9660 alone. In particular, CD label is not readable by the udev and breaks some automated configuration system.
1 parent 216835c commit be4ef73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/hosts/darwin/cap/fs_iso.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def self.create_iso(env, source_directory, extra_opts={})
3636
source_directory = Pathname.new(source_directory)
3737
file_destination = self.ensure_output_iso(extra_opts[:file_destination])
3838

39-
iso_command = [BUILD_ISO_CMD, "makehybrid", "-hfs", "-iso", "-joliet", "-ov"]
39+
iso_command = [BUILD_ISO_CMD, "makehybrid", "-iso", "-joliet", "-ov"]
4040
iso_command.concat(["-default-volume-name", extra_opts[:volume_id]]) if extra_opts[:volume_id]
4141
iso_command << "-o"
4242
iso_command << file_destination.to_s

0 commit comments

Comments
 (0)