From 94a97c69103e01c079ce139540f8e4051aee074d Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Mon, 19 Oct 2009 00:50:45 +0200 Subject: [PATCH] Search for isolinux files in /boot/isolinux/ so the correct grml.png is used --- grml2usb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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/' -- 2.1.4