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.
Signed-off-by: Thomas Kristensen <thkriste@cisco.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
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...
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() {