diff options
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
| -rw-r--r-- | meta/classes/populate_sdk_ext.bbclass | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass index 6f35b612c2..e6bf27cf38 100644 --- a/meta/classes/populate_sdk_ext.bbclass +++ b/meta/classes/populate_sdk_ext.bbclass | |||
| @@ -24,6 +24,7 @@ SDK_INCLUDE_NATIVESDK ?= "0" | |||
| 24 | SDK_INCLUDE_BUILDTOOLS ?= '1' | 24 | SDK_INCLUDE_BUILDTOOLS ?= '1' |
| 25 | 25 | ||
| 26 | SDK_RECRDEP_TASKS ?= "" | 26 | SDK_RECRDEP_TASKS ?= "" |
| 27 | SDK_CUSTOM_TEMPLATECONF ?= "0" | ||
| 27 | 28 | ||
| 28 | SDK_LOCAL_CONF_WHITELIST ?= "" | 29 | SDK_LOCAL_CONF_WHITELIST ?= "" |
| 29 | SDK_LOCAL_CONF_BLACKLIST ?= "CONF_VERSION \ | 30 | SDK_LOCAL_CONF_BLACKLIST ?= "CONF_VERSION \ |
| @@ -199,6 +200,9 @@ python copy_buildsystem () { | |||
| 199 | buildsystem = oe.copy_buildsystem.BuildSystem('extensible SDK', d) | 200 | buildsystem = oe.copy_buildsystem.BuildSystem('extensible SDK', d) |
| 200 | baseoutpath = d.getVar('SDK_OUTPUT') + '/' + d.getVar('SDKPATH') | 201 | baseoutpath = d.getVar('SDK_OUTPUT') + '/' + d.getVar('SDKPATH') |
| 201 | 202 | ||
| 203 | #check if custome templateconf path is set | ||
| 204 | use_custom_templateconf = d.getVar('SDK_CUSTOM_TEMPLATECONF') | ||
| 205 | |||
| 202 | # Determine if we're building a derivative extensible SDK (from devtool build-sdk) | 206 | # Determine if we're building a derivative extensible SDK (from devtool build-sdk) |
| 203 | derivative = (d.getVar('SDK_DERIVATIVE') or '') == '1' | 207 | derivative = (d.getVar('SDK_DERIVATIVE') or '') == '1' |
| 204 | if derivative: | 208 | if derivative: |
| @@ -390,7 +394,7 @@ python copy_buildsystem () { | |||
| 390 | shutil.copyfile(builddir + '/cache/bb_unihashes.dat', baseoutpath + '/cache/bb_unihashes.dat') | 394 | shutil.copyfile(builddir + '/cache/bb_unihashes.dat', baseoutpath + '/cache/bb_unihashes.dat') |
| 391 | 395 | ||
| 392 | # Use templateconf.cfg file from builddir if exists | 396 | # Use templateconf.cfg file from builddir if exists |
| 393 | if os.path.exists(builddir + '/conf/templateconf.cfg'): | 397 | if os.path.exists(builddir + '/conf/templateconf.cfg') and use_custom_templateconf == '1': |
| 394 | shutil.copyfile(builddir + '/conf/templateconf.cfg', baseoutpath + '/conf/templateconf.cfg') | 398 | shutil.copyfile(builddir + '/conf/templateconf.cfg', baseoutpath + '/conf/templateconf.cfg') |
| 395 | else: | 399 | else: |
| 396 | # Write a templateconf.cfg | 400 | # Write a templateconf.cfg |
