summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorThomas Kristensen <thkriste@cisco.com>2012-10-08 12:43:50 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-18 12:13:40 +0100
commitbfa0fcdce944d521153e027f0ca0996fcee5b40f (patch)
tree648fb75f866d78c1370ce6c58484b2799d882aa1 /meta
parent7817d91970e204b8bc1b733b8a6dd86a48aa27be (diff)
downloadast2050-yocto-poky-bfa0fcdce944d521153e027f0ca0996fcee5b40f.zip
ast2050-yocto-poky-bfa0fcdce944d521153e027f0ca0996fcee5b40f.tar.gz
populate_sdk_base.bbclass: Make it possible to override the create_shar method of populate_sdk_base.
If you wish to change the install/unpack method of the sdk, this can now be done by making your own create_shar method, and setting a SDK_PACKAGING_FUNC variable to your new create_shar function. (From OE-Core rev: 3955c8eced352226bb4c9ceb710dbe02474b9024) Signed-off-by: Thomas Kristensen <thkriste@cisco.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/populate_sdk_base.bbclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass
index 6eb6726..a914a2c 100644
--- a/meta/classes/populate_sdk_base.bbclass
+++ b/meta/classes/populate_sdk_base.bbclass
@@ -24,6 +24,8 @@ PID = "${@os.getpid()}"
EXCLUDE_FROM_WORLD = "1"
+SDK_PACKAGING_FUNC ?= "create_shar"
+
python () {
# If we don't do this we try and run the mapping hooks while parsing which is slow
# bitbake should really provide something to let us know this...
@@ -56,7 +58,7 @@ fakeroot python do_populate_sdk() {
bb.build.exec_func("tar_sdk", d)
- bb.build.exec_func("create_shar", d)
+ bb.build.exec_func(d.getVar("SDK_PACKAGING_FUNC", True), d)
}
fakeroot populate_sdk_image() {
OpenPOWER on IntegriCloud