mirror of
https://git.yoctoproject.org/poky
synced 2026-05-30 00:20:08 +00:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
7817d91970
commit
bfa0fcdce9
@@ -24,6 +24,8 @@ PID = "${@os.getpid()}"
|
|||||||
|
|
||||||
EXCLUDE_FROM_WORLD = "1"
|
EXCLUDE_FROM_WORLD = "1"
|
||||||
|
|
||||||
|
SDK_PACKAGING_FUNC ?= "create_shar"
|
||||||
|
|
||||||
python () {
|
python () {
|
||||||
# If we don't do this we try and run the mapping hooks while parsing which is slow
|
# 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...
|
# 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("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() {
|
fakeroot populate_sdk_image() {
|
||||||
|
|||||||
Reference in New Issue
Block a user