summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-06-09 00:21:36 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-06-14 23:18:24 +0200
commit818fe5e596a027781eed154d2556d669634a0182 (patch)
treea2d931924e06bbfdb7c864c33b88b93c52fa3b6f /fs
parent41f0688d9113dd33a5971c5654c7efd022727ed2 (diff)
fs/iso9660: enable Joliet extension
We already enable the Rockridge extension by default when building ISO9660, so let's also enable the Joliet extension which allows to support Unicode file names and long file names. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Samuel Martin <s.martin49@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'fs')
-rw-r--r--fs/iso9660/iso9660.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/iso9660/iso9660.mk b/fs/iso9660/iso9660.mk
index 35b0fe589..b2f00fdfa 100644
--- a/fs/iso9660/iso9660.mk
+++ b/fs/iso9660/iso9660.mk
@@ -46,7 +46,7 @@ endef
ROOTFS_ISO9660_PRE_GEN_HOOKS += ROOTFS_ISO9660_PREPARATION
define ROOTFS_ISO9660_CMD
- $(HOST_DIR)/usr/bin/genisoimage -R -b boot/grub/stage2_eltorito \
+ $(HOST_DIR)/usr/bin/genisoimage -J -R -b boot/grub/stage2_eltorito \
-no-emul-boot -boot-load-size 4 -boot-info-table \
-o $@ $(ISO9660_TARGET_DIR)
endef