From: Christian Hofstaedtler Date: Sun, 15 May 2011 22:33:32 +0000 (+0200) Subject: Don't nag users about gpxe.lkrn X-Git-Tag: v0.9.33~1 X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=commitdiff_plain;h=c021230b57ee91d9b44f42e97ec7c28404ce77c1 Don't nag users about gpxe.lkrn --- diff --git a/grml2usb b/grml2usb index 3fbf2c7..8987450 100755 --- a/grml2usb +++ b/grml2usb @@ -1230,16 +1230,18 @@ def copy_grml_files(iso_mount, target): exec_rsync(grml_file, grml_webimg_target + myfile) -def handle_addon_copy(filename, dst, iso_mount): +def handle_addon_copy(filename, dst, iso_mount, ignore_errors=False): """handle copy of optional addons @filename: filename of the addon @dst: destination directory @iso_mount: location of the iso mount + @ignore_errors: don't report missing files """ file_location = search_file(filename, iso_mount) if file_location is None: - logging.warn("Warning: %s not found (that's fine if you don't need it)", filename) + if not ignore_errors: + logging.warn("Warning: %s not found (that's fine if you don't need it)", filename) else: exec_rsync(file_location, dst) @@ -1280,7 +1282,7 @@ def copy_addons(iso_mount, target): handle_addon_copy('memtest', addons, iso_mount) # gpxe.lkrn: got replaced by ipxe - handle_addon_copy('gpxe.lkrn', addons, iso_mount) + handle_addon_copy('gpxe.lkrn', addons, iso_mount, ignore_errors=True) # ipxe.lkrn handle_addon_copy('ipxe.lkrn', addons, iso_mount)