summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/lib/devtool/__init__.py26
-rw-r--r--scripts/lib/devtool/build.py4
2 files changed, 23 insertions, 7 deletions
diff --git a/scripts/lib/devtool/__init__.py b/scripts/lib/devtool/__init__.py
index 253e4d5e35..0405d22874 100644
--- a/scripts/lib/devtool/__init__.py
+++ b/scripts/lib/devtool/__init__.py
@@ -146,19 +146,35 @@ def parse_recipe(config, tinfoil, pn, appends):
146 return oe.recipeutils.parse_recipe(recipefile, append_files, 146 return oe.recipeutils.parse_recipe(recipefile, append_files,
147 tinfoil.config_data) 147 tinfoil.config_data)
148 148
149def check_workspace_recipe(workspace, pn, checksrc=True): 149def check_workspace_recipe(workspace, pn, checksrc=True, bbclassextend=False):
150 """ 150 """
151 Check that a recipe is in the workspace and (optionally) that source 151 Check that a recipe is in the workspace and (optionally) that source
152 is present. 152 is present.
153 """ 153 """
154 if not pn in workspace: 154
155 workspacepn = pn
156
157 for recipe, value in workspace.iteritems():
158 if recipe == pn:
159 break
160 if bbclassextend:
161 recipefile = value['recipefile']
162 if recipefile:
163 targets = get_bbclassextend_targets(recipefile, recipe)
164 if pn in targets:
165 workspacepn = recipe
166 break
167 else:
155 raise DevtoolError("No recipe named '%s' in your workspace" % pn) 168 raise DevtoolError("No recipe named '%s' in your workspace" % pn)
169
156 if checksrc: 170 if checksrc:
157 srctree = workspace[pn]['srctree'] 171 srctree = workspace[workspacepn]['srctree']
158 if not os.path.exists(srctree): 172 if not os.path.exists(srctree):
159 raise DevtoolError("Source tree %s for recipe %s does not exist" % (srctree, pn)) 173 raise DevtoolError("Source tree %s for recipe %s does not exist" % (srctree, workspacepn))
160 if not os.listdir(srctree): 174 if not os.listdir(srctree):
161 raise DevtoolError("Source tree %s for recipe %s is empty" % (srctree, pn)) 175 raise DevtoolError("Source tree %s for recipe %s is empty" % (srctree, workspacepn))
176
177 return workspacepn
162 178
163def use_external_build(same_dir, no_same_dir, d): 179def use_external_build(same_dir, no_same_dir, d):
164 """ 180 """
diff --git a/scripts/lib/devtool/build.py b/scripts/lib/devtool/build.py
index a9a077882c..c4c0c9f50f 100644
--- a/scripts/lib/devtool/build.py
+++ b/scripts/lib/devtool/build.py
@@ -51,11 +51,11 @@ def _get_build_task(config):
51 51
52def build(args, config, basepath, workspace): 52def build(args, config, basepath, workspace):
53 """Entry point for the devtool 'build' subcommand""" 53 """Entry point for the devtool 'build' subcommand"""
54 check_workspace_recipe(workspace, args.recipename) 54 workspacepn = check_workspace_recipe(workspace, args.recipename, bbclassextend=True)
55 55
56 build_task = _get_build_task(config) 56 build_task = _get_build_task(config)
57 57
58 bbappend = workspace[args.recipename]['bbappend'] 58 bbappend = workspace[workspacepn]['bbappend']
59 if args.disable_parallel_make: 59 if args.disable_parallel_make:
60 logger.info("Disabling 'make' parallelism") 60 logger.info("Disabling 'make' parallelism")
61 _set_file_values(bbappend, {'PARALLEL_MAKE': ''}) 61 _set_file_values(bbappend, {'PARALLEL_MAKE': ''})