From bfa0fcdce944d521153e027f0ca0996fcee5b40f Mon Sep 17 00:00:00 2001 From: Thomas Kristensen Date: Mon, 8 Oct 2012 12:43:50 +0200 Subject: 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 Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/classes/populate_sdk_base.bbclass | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'meta/classes/populate_sdk_base.bbclass') diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index 6eb6726033..a914a2c273 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() { -- cgit v1.2.3-54-g00ecf