From: Luis R. Rodriguez Date: Tue, 11 Nov 2014 07:51:19 +0000 (-0800) Subject: backports: keep track of original backported source symbols early on X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=f40d37099b9bf60b9e7214f28bd30007d2961d3d;p=openwrt%2Fstaging%2Fblogic.git backports: keep track of original backported source symbols early on We'll later want to do some modifications of symbols we backport when integrating, but before we do any modification on kconfig files we should keep track of the original source symbols. This commit introduces no functional changes right now, it will become more useful after we start adjusting kconfig entries for integration. Signed-off-by: Luis R. Rodriguez --- diff --git a/gentree.py b/gentree.py index 7a6deef80c2a..cb39a3f122c4 100755 --- a/gentree.py +++ b/gentree.py @@ -768,6 +768,7 @@ def process(kerneldir, outdir, copy_list_file, git_revision=None, # some post-processing is required configtree = kconfig.ConfigTree(os.path.join(args.outdir, 'Kconfig')) + orig_symbols = configtree.symbols() logwrite('Modify Kconfig tree ...') configtree.prune_sources(ignore=['Kconfig.kernel', 'Kconfig.versions']) git_debug_snapshot(args, "prune Kconfig tree") @@ -829,7 +830,7 @@ def process(kerneldir, outdir, copy_list_file, git_revision=None, # rewrite Makefile and source symbols regexes = [] - for some_symbols in [symbols[i:i + 50] for i in range(0, len(symbols), 50)]: + for some_symbols in [orig_symbols[i:i + 50] for i in range(0, len(orig_symbols), 50)]: r = 'CONFIG_((' + '|'.join([s + '(_MODULE)?' for s in some_symbols]) + ')([^A-Za-z0-9_]|$))' regexes.append(re.compile(r, re.MULTILINE)) for root, dirs, files in os.walk(args.outdir):