* [PATCH v2] populate_sdk_base.bbclass: Make it possible to overrise the create_shar method of populate_sdk_base.
@ 2012-10-19 6:16 Martin Ertsaas
2012-10-24 15:51 ` Saul Wold
0 siblings, 1 reply; 2+ messages in thread
From: Martin Ertsaas @ 2012-10-19 6:16 UTC (permalink / raw)
To: openembedded-core; +Cc: Thomas Kristensen
From: Thomas Kristensen <thkriste@cisco.com>
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_PACKAGAING_FUNC variable to your
new create_shar function.
Signed-off-by: Thomas Kristensen <thkriste@cisco.com>
---
meta/classes/populate_sdk_base.bbclass | 4 +++-
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() {
--
1.7.8.6
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v2] populate_sdk_base.bbclass: Make it possible to overrise the create_shar method of populate_sdk_base.
2012-10-19 6:16 [PATCH v2] populate_sdk_base.bbclass: Make it possible to overrise the create_shar method of populate_sdk_base Martin Ertsaas
@ 2012-10-24 15:51 ` Saul Wold
0 siblings, 0 replies; 2+ messages in thread
From: Saul Wold @ 2012-10-24 15:51 UTC (permalink / raw)
To: Martin Ertsaas; +Cc: Thomas Kristensen, openembedded-core
On 10/18/2012 11:16 PM, Martin Ertsaas wrote:
> From: Thomas Kristensen <thkriste@cisco.com>
>
> 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_PACKAGAING_FUNC variable to your
> new create_shar function.
>
> Signed-off-by: Thomas Kristensen <thkriste@cisco.com>
> ---
> meta/classes/populate_sdk_base.bbclass | 4 +++-
> 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() {
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-10-24 16:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-19 6:16 [PATCH v2] populate_sdk_base.bbclass: Make it possible to overrise the create_shar method of populate_sdk_base Martin Ertsaas
2012-10-24 15:51 ` Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox