summaryrefslogtreecommitdiffstats
path: root/meta/classes/populate_sdk_ext.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2015-11-12 15:24:29 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-12-01 21:32:00 +0000
commit29481692919da42a424c7a971b2669174134ad96 (patch)
treebdc240b0eb152d3c20c83e9d92618260c82f9255 /meta/classes/populate_sdk_ext.bbclass
parent28a2ea701c97bd2d68a211af3aedb4d70ae7852c (diff)
downloadpoky-29481692919da42a424c7a971b2669174134ad96.tar.gz
classes/populate_sdk_ext: tweak reporting of workspace exclusion
If you have a local workspace layer enabled when building the extensible SDK, we explicitly exclude that from the SDK (mostly because the SDK has its own for the user to use). Adjust the message we print notifying the user of this so it's clear that we're excluding it from the SDK, and scale it back from a warning to a note printed with bb.plain(). (From OE-Core rev: 90f46f74a088a7b965d2205eceb9eff6f276dd38) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk_ext.bbclass')
-rw-r--r--meta/classes/populate_sdk_ext.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_ext.bbclass b/meta/classes/populate_sdk_ext.bbclass
index e806d32a54..736f17f489 100644
--- a/meta/classes/populate_sdk_ext.bbclass
+++ b/meta/classes/populate_sdk_ext.bbclass
@@ -51,7 +51,7 @@ python copy_buildsystem () {
51 core_meta_subdir = '' 51 core_meta_subdir = ''
52 52
53 # Copy in all metadata layers + bitbake (as repositories) 53 # Copy in all metadata layers + bitbake (as repositories)
54 buildsystem = oe.copy_buildsystem.BuildSystem(d) 54 buildsystem = oe.copy_buildsystem.BuildSystem('extensible SDK', d)
55 baseoutpath = d.getVar('SDK_OUTPUT', True) + '/' + d.getVar('SDKPATH', True) 55 baseoutpath = d.getVar('SDK_OUTPUT', True) + '/' + d.getVar('SDKPATH', True)
56 layers_copied = buildsystem.copy_bitbake_and_layers(baseoutpath + '/layers') 56 layers_copied = buildsystem.copy_bitbake_and_layers(baseoutpath + '/layers')
57 57