* u-boot_git recipe
@ 2010-03-22 18:55 Murat Karadeniz
2010-03-22 19:10 ` Denys Dmytriyenko
0 siblings, 1 reply; 5+ messages in thread
From: Murat Karadeniz @ 2010-03-22 18:55 UTC (permalink / raw)
To: openembedded-devel
i m the newbie on using oe. i m getting this message from shell. i dont know
why it is. bitbake version is 1.19, Machine is dm6446-evm and DISTRO is
angstrom-2008.1
Thanks for taking your time
ERROR: '[]' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity 'u-
boot_git' but it wasn't found in any PACKAGE or RPROVIDES variables
Unknown Event: <bb.event.NoProvider instance at 0xf3241ac>
NOTE: Resolving any missing task queue dependencies
ERROR: '[]' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity 'u-
boot_git' but it wasn't found in any PACKAGE or RPROVIDES variables
Unknown Event: <bb.event.NoProvider instance at 0x1159792c>
NOTE: Runtime target 'u-boot_git' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['u-boot_git']
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: u-boot_git recipe
2010-03-22 18:55 u-boot_git recipe Murat Karadeniz
@ 2010-03-22 19:10 ` Denys Dmytriyenko
2010-03-22 19:43 ` Murat Karadeniz
0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2010-03-22 19:10 UTC (permalink / raw)
To: openembedded-devel
On Mon, Mar 22, 2010 at 08:55:23PM +0200, Murat Karadeniz wrote:
> i m the newbie on using oe. i m getting this message from shell. i dont know
> why it is. bitbake version is 1.19, Machine is dm6446-evm and DISTRO is
> angstrom-2008.1
>
> Thanks for taking your time
>
>
> ERROR: '[]' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity 'u-
> boot_git' but it wasn't found in any PACKAGE or RPROVIDES variables
> Unknown Event: <bb.event.NoProvider instance at 0xf3241ac>
> NOTE: Resolving any missing task queue dependencies
> ERROR: '[]' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity 'u-
> boot_git' but it wasn't found in any PACKAGE or RPROVIDES variables
> Unknown Event: <bb.event.NoProvider instance at 0x1159792c>
> NOTE: Runtime target 'u-boot_git' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['u-boot_git']
Which branch you are using and what are you trying to build in the above
command?
--
Denys
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: u-boot_git recipe
2010-03-22 19:10 ` Denys Dmytriyenko
@ 2010-03-22 19:43 ` Murat Karadeniz
2010-03-22 20:18 ` Denys Dmytriyenko
0 siblings, 1 reply; 5+ messages in thread
From: Murat Karadeniz @ 2010-03-22 19:43 UTC (permalink / raw)
To: openembedded-devel
murat@linux-dm4x:~/system/oe/build> bitbake -k u-boot_git
NOTE: Handling BitBake files: \ (8095/8095) [100 %]
Parsing of 8095 .bb files complete (7785 cached, 310 parsed). 7917 targets,
331 skipped, 0 masked, 0 errors.
ERROR: '[]' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity 'u-
boot_git' but it wasn't found in any PACKAGE or RPROVIDES variables
Unknown Event: <bb.event.NoProvider instance at 0xf38524c>
NOTE: Resolving any missing task queue dependencies
ERROR: '[]' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity 'u-
boot_git' but it wasn't found in any PACKAGE or RPROVIDES variables
Unknown Event: <bb.event.NoProvider instance at 0x1012e8ec>
NOTE: Runtime target 'u-boot_git' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['u-boot_git']
And i m sorry, i could not understand "which branch you are using". i git
clone openembedded from repository. And same way i get bitbake from git repo.
And i made a few conf as told as openembedded getting started. i m trying only
build u-boot with oe and bitbake.
Thanks Denys and list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: u-boot_git recipe
2010-03-22 19:43 ` Murat Karadeniz
@ 2010-03-22 20:18 ` Denys Dmytriyenko
2010-03-23 8:27 ` Murat Karadeniz
0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2010-03-22 20:18 UTC (permalink / raw)
To: openembedded-devel
On Mon, Mar 22, 2010 at 09:43:00PM +0200, Murat Karadeniz wrote:
> murat@linux-dm4x:~/system/oe/build> bitbake -k u-boot_git
You call bitbake to build a package by its name w/o a version (unless you use
-b option for a specific recipe), hence:
$ bitbake -k u-boot
> NOTE: Handling BitBake files: \ (8095/8095) [100 %]
> Parsing of 8095 .bb files complete (7785 cached, 310 parsed). 7917 targets,
> 331 skipped, 0 masked, 0 errors.
> ERROR: '[]' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity 'u-
> boot_git' but it wasn't found in any PACKAGE or RPROVIDES variables
> Unknown Event: <bb.event.NoProvider instance at 0xf38524c>
> NOTE: Resolving any missing task queue dependencies
> ERROR: '[]' RDEPENDS/RRECOMMENDS or otherwise requires the runtime entity 'u-
> boot_git' but it wasn't found in any PACKAGE or RPROVIDES variables
> Unknown Event: <bb.event.NoProvider instance at 0x1012e8ec>
> NOTE: Runtime target 'u-boot_git' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['u-boot_git']
>
> And i m sorry, i could not understand "which branch you are using". i git
> clone openembedded from repository. And same way i get bitbake from git repo.
> And i made a few conf as told as openembedded getting started. i m trying only
> build u-boot with oe and bitbake.
The default branch being org.openembedded.dev, which is a development branch,
unlike a stable branch, which you can checkout specifically.
--
Denys
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: u-boot_git recipe
2010-03-22 20:18 ` Denys Dmytriyenko
@ 2010-03-23 8:27 ` Murat Karadeniz
0 siblings, 0 replies; 5+ messages in thread
From: Murat Karadeniz @ 2010-03-23 8:27 UTC (permalink / raw)
To: openembedded-devel
it is ok now. I understood that -b option must be pass for a specific recipe
but for a package by its name not with its version or release.
Thank you for the time and consideration...
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-03-23 8:30 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-22 18:55 u-boot_git recipe Murat Karadeniz
2010-03-22 19:10 ` Denys Dmytriyenko
2010-03-22 19:43 ` Murat Karadeniz
2010-03-22 20:18 ` Denys Dmytriyenko
2010-03-23 8:27 ` Murat Karadeniz
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.