* bitbake core-image-sato fails:
@ 2011-12-07 16:29 Ulf Samuelsson
2011-12-07 16:39 ` Martin Jansa
2011-12-08 21:14 ` McClintock Matthew-B29882
0 siblings, 2 replies; 4+ messages in thread
From: Ulf Samuelsson @ 2011-12-07 16:29 UTC (permalink / raw)
To: openembedded-core
Got the following error message when building core-image-sato:
| Collected errors:
| * satisfy_dependencies_for: Cannot satisfy the following dependencies
for task-core-x11-sato:
| * ofono *
| * opkg_install_cmd: Cannot install package task-core-x11-sato.
NOTE: package core-image-sato-1.0-r0: task do_rootfs: Failed
ERROR: Task 8
(/home/ulf/projects/OE_atmel/sources/openembedded-core/meta/recipes-sato/images/core-image-sato.bb,
do_rootfs) failed with exit code '1'
I then did
$ bitbake ofono
which built without problem.
Repeated
$ bitbake core-image-sato
which then succeeded.
--
Best Regards
Ulf Samuelsson
eMagii
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bitbake core-image-sato fails:
2011-12-07 16:29 bitbake core-image-sato fails: Ulf Samuelsson
@ 2011-12-07 16:39 ` Martin Jansa
2011-12-08 21:14 ` McClintock Matthew-B29882
1 sibling, 0 replies; 4+ messages in thread
From: Martin Jansa @ 2011-12-07 16:39 UTC (permalink / raw)
To: ulf, Patches and discussions about the oe-core layer
[-- Attachment #1: Type: text/plain, Size: 852 bytes --]
On Wed, Dec 07, 2011 at 05:29:28PM +0100, Ulf Samuelsson wrote:
> Got the following error message when building core-image-sato:
>
> | Collected errors:
> | * satisfy_dependencies_for: Cannot satisfy the following dependencies
> for task-core-x11-sato:
> | * ofono *
> | * opkg_install_cmd: Cannot install package task-core-x11-sato.
> NOTE: package core-image-sato-1.0-r0: task do_rootfs: Failed
> ERROR: Task 8
> (/home/ulf/projects/OE_atmel/sources/openembedded-core/meta/recipes-sato/images/core-image-sato.bb,
> do_rootfs) failed with exit code '1'
>
> I then did
>
> $ bitbake ofono
>
> which built without problem.
>
> Repeated
>
> $ bitbake core-image-sato
>
> which then succeeded.
I can confirm, the same here (every time).
Cheers,
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bitbake core-image-sato fails:
2011-12-07 16:29 bitbake core-image-sato fails: Ulf Samuelsson
2011-12-07 16:39 ` Martin Jansa
@ 2011-12-08 21:14 ` McClintock Matthew-B29882
2011-12-08 23:24 ` Ulf Samuelsson
1 sibling, 1 reply; 4+ messages in thread
From: McClintock Matthew-B29882 @ 2011-12-08 21:14 UTC (permalink / raw)
To: ulf@emagii.com, Patches and discussions about the oe-core layer
On Wed, Dec 7, 2011 at 10:29 AM, Ulf Samuelsson
<openembedded-core@emagii.com> wrote:
> Got the following error message when building core-image-sato:
>
> | Collected errors:
> | * satisfy_dependencies_for: Cannot satisfy the following dependencies for
> task-core-x11-sato:
> | * ofono *
> | * opkg_install_cmd: Cannot install package task-core-x11-sato.
> NOTE: package core-image-sato-1.0-r0: task do_rootfs: Failed
> ERROR: Task 8
> (/home/ulf/projects/OE_atmel/sources/openembedded-core/meta/recipes-sato/images/core-image-sato.bb,
> do_rootfs) failed with exit code '1'
The rpm for ofono was not generated, and something in
task-core-x11-sato depends on it. So rpm goes and tries to resolve its
dependency (which adds other packages) and it can't find one for
ofono. Some recipe in this task needs a DEPENDS += "ofono"
-M
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: bitbake core-image-sato fails:
2011-12-08 21:14 ` McClintock Matthew-B29882
@ 2011-12-08 23:24 ` Ulf Samuelsson
0 siblings, 0 replies; 4+ messages in thread
From: Ulf Samuelsson @ 2011-12-08 23:24 UTC (permalink / raw)
To: McClintock Matthew-B29882; +Cc: Patches and discussions about the oe-core layer
On 2011-12-08 22:14, McClintock Matthew-B29882 wrote:
> On Wed, Dec 7, 2011 at 10:29 AM, Ulf Samuelsson
> <openembedded-core@emagii.com> wrote:
>> Got the following error message when building core-image-sato:
>>
>> | Collected errors:
>> | * satisfy_dependencies_for: Cannot satisfy the following dependencies for
>> task-core-x11-sato:
>> | * ofono *
>> | * opkg_install_cmd: Cannot install package task-core-x11-sato.
>> NOTE: package core-image-sato-1.0-r0: task do_rootfs: Failed
>> ERROR: Task 8
>> (/home/ulf/projects/OE_atmel/sources/openembedded-core/meta/recipes-sato/images/core-image-sato.bb,
>> do_rootfs) failed with exit code '1'
> The rpm for ofono was not generated, and something in
> task-core-x11-sato depends on it. So rpm goes and tries to resolve its
> dependency (which adds other packages) and it can't find one for
> ofono. Some recipe in this task needs a DEPENDS += "ofono"
>
> -M
task-core-x11-sato contains:
NETWORK_MANAGER ?= "connman-gnome"
and connman-gnome contains references to ofono,
so this is probably a good candidate.
connman-gnome is not building at the moment, due
to the empty repo at kernel.org so I am going to
try adding it in the debug layer I have on top of OE.
BR
Ulf
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-12-08 23:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-07 16:29 bitbake core-image-sato fails: Ulf Samuelsson
2011-12-07 16:39 ` Martin Jansa
2011-12-08 21:14 ` McClintock Matthew-B29882
2011-12-08 23:24 ` Ulf Samuelsson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox