From 6f2e36279a44b7c43e6de63cfb5d161fc1706b59 Mon Sep 17 00:00:00 2001 From: Christian Helmuth Date: Mon, 4 Mar 2013 17:09:16 +0100 Subject: [PATCH] Use mkisofs to create ISO images mkisofs is the original ISO creation tool from cdrtools available on many UNIX systems. genisoimage on the other hand is part of a mostly unmaintained fork of cdrtools very specific to Debian Linux and its derivates (e.g., Ubuntu). Fortunately, genisoimage (as we used it) is completely invocation-compatible to mkisofs. Fixes #627. --- tool/create_iso | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/create_iso b/tool/create_iso index 3d1bb7f60..0b11b4ef0 100755 --- a/tool/create_iso +++ b/tool/create_iso @@ -31,7 +31,7 @@ default help: # parameter 1 filename of ISO image # parameter 2 path of directory containing file tree for the ISO image # -gen_iso_image = genisoimage -f -l -R -hide-rr-moved -jcharset utf8 \ +gen_iso_image = mkisofs -f -l -R -hide-rr-moved -jcharset utf-8 \ -no-emul-boot -boot-load-size 4 -boot-info-table \ -b boot/isolinux/isolinux.bin \ -o $(1) $(2)