summaryrefslogtreecommitdiff
path: root/gentree.py
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2014-11-18 21:41:59 +0100
committerLuis R. Rodriguez <mcgrof@do-not-panic.com>2014-11-18 12:45:55 -0800
commit6be85de08b7fa532d8077914281a339ec717d741 (patch)
tree9cc2162823690e048b9c0ab73d31a57bbd8ad1d6 /gentree.py
parentded96b268ba59530f82f6c475fa1be3b295b6cdd (diff)
backports: fix breakage from integration patchset
Various small things broken in the integration patchset, fix them to actually make backports useful again. For example, a driver using devcoredump wouldn't have worked without these changes as it would depend on devcoredump, and that wasn't backported due to the bugs, despite being in the backport Kconfig file. Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Luis R. Rodriguez <mcgrof@do-not-panic.com>
Diffstat (limited to 'gentree.py')
-rwxr-xr-xgentree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gentree.py b/gentree.py
index 00e2d46f..8df39063 100755
--- a/gentree.py
+++ b/gentree.py
@@ -240,7 +240,7 @@ def add_automatic_backports(args):
all_selects = configtree.all_selects()
for sym, vals in bpi.items():
if sym.startswith('BPAUTO_BUILD_'):
- if not sym[15:] in all_selects:
+ if not sym[13:] in all_selects:
disable_list.append(sym)
continue
symtype, module_name, c_files, h_files = vals