From 9a35df42e39ac4e63867fdaa337d222fdf108630 Mon Sep 17 00:00:00 2001 From: zer0def Date: Tue, 31 Oct 2017 11:06:23 +0100 Subject: [PATCH] Reapplied upstream PR #26 --- scripts/syslinux.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/syslinux.py b/scripts/syslinux.py index 96cc950..7cd0075 100644 --- a/scripts/syslinux.py +++ b/scripts/syslinux.py @@ -16,8 +16,8 @@ from . import config extlinux_path = os.path.join(multibootusb_host_dir(), "syslinux", "bin", "extlinux4") syslinux_path = os.path.join(multibootusb_host_dir(), "syslinux", "bin", "syslinux4") -extlinux_fs = ["ext2", "ext3", "ext4", "Btrfs"] -syslinux_fs = ["vfat", "ntfs", "FAT32", "NTFS"] +extlinux_fs = ["ext2", "ext3", "ext4", "Btrfs", "ntfs", "NTFS"] +syslinux_fs = ["vfat", "FAT32"] mbr_bin = resource_path(os.path.join("data", "tools", "mbr.bin"))