X-Git-Url: http://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;h=6a2190336afa23a224a828ecca108680951183f2;hp=34ea78af75b5dd51ba881b37884293114bef85e6;hb=b80799ee34a0ebf718836b65820ab549a58779db;hpb=59cfda4bf945512eb8a592b8e00d5e799c17ef5b diff --git a/grml2usb b/grml2usb index 34ea78a..6a21903 100755 --- a/grml2usb +++ b/grml2usb @@ -17,6 +17,7 @@ from optparse import OptionParser from inspect import isroutine, isclass import datetime, logging, os, re, subprocess, sys, tempfile, time, os.path import fileinput +import glob # global variables PROG_VERSION = "0.9.14" @@ -1147,11 +1148,12 @@ def copy_bootloader_files(iso_mount, target): 'isoprompt.cfg', 'options.cfg', \ 'prompt.cfg', 'vesamenu.c32', 'vesamenu.cfg', 'grml.png': path = search_file(filename, iso_mount + '/boot/isolinux/') - if not path: - print filename - continue exec_rsync(path, syslinux_target + filename) + # copy the addons_*.cfg file to the new syslinux directory + for filename in glob.glob(iso_mount + '/boot/isolinux/' + 'addon_*.cfg'): + exec_rsync(filename, syslinux_target) + path = search_file('hidden.cfg', iso_mount + '/boot/isolinux/') exec_rsync(path, syslinux_target + "new_" + 'hidden.cfg') @@ -1254,11 +1256,14 @@ def modify_grub_config(filename): if options.removeoption: regexe = [] for regex in options.removeoption: - regexe.append(re.compile(r'(.*/boot/release/.*linux26.*)(%s)(.*)' % regex)) + regexe.append(re.compile(r'%s' % regex)) + + option_re = re.compile(r'(.*/boot/release/.*linux26.*)') for line in fileinput.input(filename, inplace=1): - for regex in regexe: - line = regex.sub( r'\1 \3', line) + if regexe and option_re.search(line): + for regex in regexe: + line = regex.sub(' ', line) sys.stdout.write(line) @@ -1439,9 +1444,12 @@ def adjust_syslinux_bootoptions(src, flavour): bootopt = options.bootoptions regexe = [] + option_re = None if options.removeoption: + option_re = re.compile(r'/boot/release/.*/initrd.gz') + for regex in options.removeoption: - regexe.append(re.compile(r'(.*/boot/release/.*/initrd.gz.*)(%s)(.*)' % regex)) + regexe.append(re.compile(r'%s' % regex)) for line in fileinput.input(src, inplace=1): line = boot_re.sub(r'/boot/release/%s/\2 ' % flavour.replace('-', ''), line) @@ -1449,8 +1457,9 @@ def adjust_syslinux_bootoptions(src, flavour): line = default_re.sub(r'%s-\1' % flavour, line) line = append_re.sub(r'\1 live-media-path=/live/%s/ ' % flavour, line) line = append_re.sub(r'\1 boot=live %s ' % bootopt, line) - for regex in regexe: - line = regex.sub( r'\1 \3', line) + if option_re and option_re.search(line): + for regex in regexe: + line = regex.sub(' ', line) sys.stdout.write(line) fileinput.close()