diff options
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/devtool/standard.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 68d6eb98c5..a4f3da4d14 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -457,6 +457,14 @@ def _extract_source(srctree, keep_temp, devbranch, sync, d): | |||
457 | if haspatches: | 457 | if haspatches: |
458 | bb.process.run('git checkout patches', cwd=srcsubdir) | 458 | bb.process.run('git checkout patches', cwd=srcsubdir) |
459 | 459 | ||
460 | if bb.data.inherits_class('kernel-yocto', d): | ||
461 | # Store generate and store kernel config | ||
462 | logger.info('Generating kernel config') | ||
463 | task_executor.exec_func('do_configure', False) | ||
464 | kconfig = os.path.join(d.getVar('B', True), '.config') | ||
465 | shutil.copy2(kconfig, srcsubdir) | ||
466 | |||
467 | |||
460 | tempdir_localdir = os.path.join(tempdir, 'oe-local-files') | 468 | tempdir_localdir = os.path.join(tempdir, 'oe-local-files') |
461 | srctree_localdir = os.path.join(srctree, 'oe-local-files') | 469 | srctree_localdir = os.path.join(srctree, 'oe-local-files') |
462 | 470 | ||