X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=89874503f4ba2456dd59d7f336b201a35dc828e2;hp=3fbf2c77612ba337057ef6e50046881dec4baecc;hb=c021230b57ee91d9b44f42e97ec7c28404ce77c1;hpb=0b0763c1f3ad0b90ab01286e4fef183de8214571 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)