X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=075029e5bb2a631e3f49ab7463414f9e2f1bbc48;hp=0a34583c9b17e3b9074c9cbb1936a93e34f0627a;hb=f3a85acbbab6bd1f0140bdf8e7496d983a8a7c15;hpb=9b5a5195ba1343ba9ee9d2e20be81e9c25565701 diff --git a/grml2usb b/grml2usb index 0a34583..075029e 100755 --- a/grml2usb +++ b/grml2usb @@ -902,22 +902,15 @@ def copy_addons(iso_mount, target): # grub all-in-one image handle_addon_copy('allinone.img', addons, iso_mount) - # bsd imag + # bsd image handle_addon_copy('bsd4grml', addons, iso_mount) + # DOS image handle_addon_copy('balder10.imz', addons, iso_mount) - # install hdt and pci.ids only when using syslinux (grub doesn't support it) - if options.syslinux: - # hdt (hardware detection tool) image - hdtimg = search_file('hdt.c32', iso_mount) - if hdtimg: - exec_rsync(hdtimg, addons + '/hdt.c32') - - # pci.ids file - picids = search_file('pci.ids', iso_mount) - if picids: - exec_rsync(picids, addons + '/pci.ids') + # syslinux + pci.ids for hdt + for expr in '*.c32', 'pci.ids': + glob_and_copy(iso_mount + '/boot/addons/' + expr, addons) # memdisk image handle_addon_copy('memdisk', addons, iso_mount)