From: Michael Prokop Date: Sun, 18 Oct 2009 22:50:45 +0000 (+0200) Subject: Search for isolinux files in /boot/isolinux/ so the correct grml.png is used X-Git-Tag: v0.9.13~28 X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=94a97c69103e01c079ce139540f8e4051aee074d Search for isolinux files in /boot/isolinux/ so the correct grml.png is used --- diff --git a/grml2usb b/grml2usb index 2bb5439..7df0f97 100755 --- a/grml2usb +++ b/grml2usb @@ -1102,8 +1102,10 @@ def copy_bootloader_files(iso_mount, target): bootsplash = search_file(ffile, iso_mount) exec_rsync(bootsplash, syslinux_target + ffile) - for filename in 'addons.cfg', 'default.cfg', 'distri.cfg', 'hidden.cfg', 'grml.cfg', 'grml.png', 'hd.cfg', 'isoprompt.cfg', 'options.cfg','vesamenu.c32', 'vesamenu.cfg', 'grml.png': - path = search_file(filename, iso_mount) + for filename in 'addons.cfg', 'default.cfg', 'distri.cfg', 'hidden.cfg', \ + 'grml.cfg', 'grml.png', 'hd.cfg', 'isoprompt.cfg', 'options.cfg', \ + 'vesamenu.c32', 'vesamenu.cfg', 'grml.png': + path = search_file(filename, iso_mount + '/boot/isolinux/') exec_rsync(path, syslinux_target + filename) grub_target = target + '/boot/grub/'