Merge pull request #349 from shinji-s/devel

Always add -f when syslinuxing in syslinux_distro_dir().
pull/338/merge
multibootusb 6 years ago committed by GitHub
commit b36e20317a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -285,9 +285,7 @@ def syslinux_distro_dir(usb_disk, iso_link, distro):
# log(distro_syslinux_install_dir)
if usb_fs in syslinux_fs:
options = []
if getattr(config, 'allow_syslinux_on_fixed_drive', None):
options.append('-f')
options = ['-f']
if config.syslinux_version != '3':
options.append('-i')
if not (distro == "generic" and iso_linux_bin_dir == "/"):

Loading…
Cancel
Save