All of lore.kernel.org
 help / color / mirror / Atom feed
* Re : rdepends upon non-existent task do_package_write_deb
@ 2022-07-29  6:36 poornesh.g
  2022-07-29 16:30 ` [yocto] " Khem Raj
  0 siblings, 1 reply; 3+ messages in thread
From: poornesh.g @ 2022-07-29  6:36 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 853 bytes --]

Greetings !
I am trying to add go.opentelemetry.io-proto-otlp-native package in yocto (krikstone) .

When I give : *bitbake go.opentelemetry.io-proto-otlp-native* , it is successfully compiling .  But when I trying to add in *local.conf* as *IMAGE_INSTALL:append += "go.opentelemetry.io-proto-otlp-native"* , it is giving the below error .

-------------------------------------------------

ERROR: Task do_populate_sdk in /home/user/yocto/imx_krikstone/sources/poky/meta/recipes-core/images/core-image-minimal.bb rdepends upon non-existent task do_package_write_deb in /home/user/yocto/imx_krikstone/sources/meta-sca/recipes-go/go.opentelemetry.io-proto-otlp-native_0.12.0.bb
ERROR: Command execution failed: 1

-------------------------------------------------

Requesting you to help me out to solve this issue .

Thanks in advance .

[-- Attachment #2: Type: text/html, Size: 986 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [yocto] Re : rdepends upon non-existent task do_package_write_deb
  2022-07-29  6:36 Re : rdepends upon non-existent task do_package_write_deb poornesh.g
@ 2022-07-29 16:30 ` Khem Raj
  2022-08-01  9:56   ` poornesh.g
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2022-07-29 16:30 UTC (permalink / raw)
  To: poornesh.g; +Cc: Yocto-mailing-list

On Fri, Jul 29, 2022 at 2:36 AM <poornesh.g@mindteck.com> wrote:
>
> Greetings !
> I am trying to add go.opentelemetry.io-proto-otlp-native package in yocto (krikstone) .
>
> When I give :  bitbake go.opentelemetry.io-proto-otlp-native  , it is successfully compiling .  But when I trying to add in local.conf as IMAGE_INSTALL:append += "go.opentelemetry.io-proto-otlp-native" , it is giving the below error .

you don't add native packages to image, native packages are for
supporting cross builds of target packages to avoid build host
specific issues etc. If you want opentelemetry in your image you want
to do something like

 MAGE_INSTALL:append = " go.opentelemetry.io-proto-otlp"

>
> -------------------------------------------------
>
> ERROR: Task do_populate_sdk in /home/user/yocto/imx_krikstone/sources/poky/meta/recipes-core/images/core-image-minimal.bb rdepends upon non-existent task do_package_write_deb in /home/user/yocto/imx_krikstone/sources/meta-sca/recipes-go/go.opentelemetry.io-proto-otlp-native_0.12.0.bb
> ERROR: Command execution failed: 1
>
> -------------------------------------------------
>
> Requesting you to help me out to solve this issue .
>
> Thanks in advance .
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> You automatically follow any topics you start or reply to.
> View/Reply Online (#57687): https://lists.yoctoproject.org/g/yocto/message/57687
> Mute This Topic: https://lists.yoctoproject.org/mt/92685903/1997914
> Group Owner: yocto+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Re : rdepends upon non-existent task do_package_write_deb
  2022-07-29 16:30 ` [yocto] " Khem Raj
@ 2022-08-01  9:56   ` poornesh.g
  0 siblings, 0 replies; 3+ messages in thread
From: poornesh.g @ 2022-08-01  9:56 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 2098 bytes --]

Thanks for your valuable reply .

I followed the procedure which you have mentioned i.e added *IMAGE_INSTALL:append = " go.opentelemetry.io-proto-otlp"* in local.conf file. After that I am getting this error , can you please suggest me where I need to modify .

------------------------------------------------------------------------

user@user-Latitude-3490:~/yocto/imx_krikstone/build$ bitbake core-image-minimal
WARNING: You have included the meta-virtualization layer, but 'virtualization' has not been enabled in your DISTRO_FEATURES. Some bbappend files may not take effect. See the meta-virtualization README for details on enabling virtualization support.
Loading cache: 100% |############################################################################################################| Time: 0:00:00
Loaded 5514 entries from dependency cache.
Parsing recipes: 100% |##########################################################################################################| Time: 0:00:00
Parsing of 3954 .bb files complete (3953 cached, 1 parsed). 5514 targets, 658 skipped, 5 masked, 0 errors.
Removing 1 recipes from the cortexa7t2hf-neon sysroot: 100% |####################################################################| Time: 0:00:00
Removing 1 recipes from the imx6ul_pds sysroot: 100% |###########################################################################| Time: 0:00:00
NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'go.opentelemetry.io-proto-otlp' (but /home/user/yocto/imx_krikstone/sources/poky/meta/recipes-core/images/core-image-minimal.bb RDEPENDS on or otherwise requires it)
NOTE: Runtime target 'go.opentelemetry.io-proto-otlp' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['go.opentelemetry.io-proto-otlp']
ERROR: Required build target 'core-image-minimal' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-minimal', 'go.opentelemetry.io-proto-otlp']

------------------------------------------------------------------------

Thanks in advance

[-- Attachment #2: Type: text/html, Size: 2206 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-08-01  9:56 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-29  6:36 Re : rdepends upon non-existent task do_package_write_deb poornesh.g
2022-07-29 16:30 ` [yocto] " Khem Raj
2022-08-01  9:56   ` poornesh.g

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.