All of lore.kernel.org
 help / color / mirror / Atom feed
* poky: Bitbake nothing provides error
@ 2013-04-29  9:01 Zafrullah Syed
  2013-04-29  9:09 ` Paul Eggleton
  0 siblings, 1 reply; 15+ messages in thread
From: Zafrullah Syed @ 2013-04-29  9:01 UTC (permalink / raw)
  To: yocto

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

Hi all,

I am trying to build<http://gumstix.org/software-development/yocto-project.html>a
bitbake target for my Overo
Series RobOvero board(PCB 30019-R3277). In poky build directory when i give
the command *bitbake gumstix-console-image* i get an error:* **
ERROR: Nothing PROVIDES 'gumstix-console-image'.
**
 *

Previously when i built core-image-minimal. it successfully runs and i am
able to run with qemu emulator.

I do not know why poky throws *Nothing Provides* error.

Any Ideas where i am doing wrong?

-- 
Regards,
Zafrullah Syed

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

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

* Re: poky: Bitbake nothing provides error
  2013-04-29  9:01 poky: Bitbake nothing provides error Zafrullah Syed
@ 2013-04-29  9:09 ` Paul Eggleton
  2013-04-29  9:28   ` Zafrullah Syed
  0 siblings, 1 reply; 15+ messages in thread
From: Paul Eggleton @ 2013-04-29  9:09 UTC (permalink / raw)
  To: yocto; +Cc: Zafrullah Syed

On Monday 29 April 2013 11:01:54 Zafrullah Syed wrote:
> I am trying to
> build<http://gumstix.org/software-development/yocto-project.html>a bitbake
> target for my Overo
> Series RobOvero board(PCB 30019-R3277). In poky build directory when i give
> the command *bitbake gumstix-console-image* i get an error:* **
> ERROR: Nothing PROVIDES 'gumstix-console-image'.
> **
>  *
> 
> Previously when i built core-image-minimal. it successfully runs and i am
> able to run with qemu emulator.
> 
> I do not know why poky throws *Nothing Provides* error.

gumstix-console-image would need to be provided by a layer enabled in your 
configuration; apparently this image recipe comes from meta-gumstix [1], so you 
would need to have that layer cloned and its directory added to your 
conf/bblayers.conf file under your build directory for that image to be 
available.

Cheers,
Paul

[1] http://layers.openembedded.org/layerindex/layer/meta-gumstix/

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: poky: Bitbake nothing provides error
  2013-04-29  9:09 ` Paul Eggleton
@ 2013-04-29  9:28   ` Zafrullah Syed
  2013-04-29  9:50     ` Paul Eggleton
  0 siblings, 1 reply; 15+ messages in thread
From: Zafrullah Syed @ 2013-04-29  9:28 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto

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

Hi Paul,

I cloned meta-gumstix[1] and meta-gumstix-extras[2] into poky folder and i
tried to add these values of my machine in the local.conf file

MACHINE_KERNEL_PR = "r1"

KERNEL_IMAGETYPE = "uImage"

UBOOT_ENTRYPOINT = "0x80008000"
UBOOT_LOADADDRESS = "0x80008000"

TARGET_ARCH = "arm"

[1] https://github.com/gumstix/meta-gumstix
[2] https://github.com/gumstix/meta-gumstix-extras

When I give the command '*bitbake u-boot'* or '*bitbake
gumstix-console-image'* it throws again *ERROR: Nothing PROVIDES 'u-boot'*or
*ERROR: Nothing PROVIDES '**gumstix-console-image'*

Regards,
Zafrullah Syed




On Mon, Apr 29, 2013 at 11:09 AM, Paul Eggleton <
paul.eggleton@linux.intel.com> wrote:

> On Monday 29 April 2013 11:01:54 Zafrullah Syed wrote:
> > I am trying to
> > build<http://gumstix.org/software-development/yocto-project.html>a
> bitbake
> > target for my Overo
> > Series RobOvero board(PCB 30019-R3277). In poky build directory when i
> give
> > the command *bitbake gumstix-console-image* i get an error:* **
> > ERROR: Nothing PROVIDES 'gumstix-console-image'.
> > **
> >  *
> >
> > Previously when i built core-image-minimal. it successfully runs and i am
> > able to run with qemu emulator.
> >
> > I do not know why poky throws *Nothing Provides* error.
>
> gumstix-console-image would need to be provided by a layer enabled in your
> configuration; apparently this image recipe comes from meta-gumstix [1],
> so you
> would need to have that layer cloned and its directory added to your
> conf/bblayers.conf file under your build directory for that image to be
> available.
>
> Cheers,
> Paul
>
> [1] http://layers.openembedded.org/layerindex/layer/meta-gumstix/
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
>



-- 
Regards,
Zafrullah Syed

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

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

* Re: poky: Bitbake nothing provides error
  2013-04-29  9:28   ` Zafrullah Syed
@ 2013-04-29  9:50     ` Paul Eggleton
  2013-04-29 10:21       ` Zafrullah Syed
  0 siblings, 1 reply; 15+ messages in thread
From: Paul Eggleton @ 2013-04-29  9:50 UTC (permalink / raw)
  To: yocto; +Cc: Zafrullah Syed

On Monday 29 April 2013 11:28:22 Zafrullah Syed wrote:
> I cloned meta-gumstix[1] and meta-gumstix-extras[2] into poky folder and i
> tried to add these values of my machine in the local.conf file
> 
> MACHINE_KERNEL_PR = "r1"
> 
> KERNEL_IMAGETYPE = "uImage"
> 
> UBOOT_ENTRYPOINT = "0x80008000"
> UBOOT_LOADADDRESS = "0x80008000"
> 
> TARGET_ARCH = "arm"

Couple of things:

1) You should not be adding the above to conf/local.conf. Instead, you should 
set MACHINE in conf/local.conf to point to the appropriate machine (in this 
case "overo")

2) You must add at least the path to the directory where meta-gumstix is 
located on your build machine (and possibly meta-gumstix-extras) to 
conf/bblayers.conf.

If you don't do both of these you will continue to get the errors above.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: poky: Bitbake nothing provides error
  2013-04-29  9:50     ` Paul Eggleton
@ 2013-04-29 10:21       ` Zafrullah Syed
  2013-04-29 11:04         ` Satya Swaroop Damarla
  2013-04-29 11:26         ` Anders Darander
  0 siblings, 2 replies; 15+ messages in thread
From: Zafrullah Syed @ 2013-04-29 10:21 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto

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

After setting MACHINE and adding the meta-gumstix and meta-gumstix-extras
path to conf/bblayers.conf and when building again, i get the following:

WARNING: gumstix-repo-task: task.bbclass is deprecated, please inherit
packagegroup instead
| ETA:  00:00:30
Parsing recipes: 100%
|###########################################################################################################################|
Time: 00:00:37
Parsing of 889 .bb files complete (0 cached, 889 parsed). 1196 targets, 44
skipped, 0 masked, 0 errors.
ERROR: No recipes available for:

/home/zaif/poky-danny-8.0/meta-gumstix/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/systemd/systemd_git.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-core/systemd/systemd_git.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix/recipes-xfce/libxfce4ui/libxfce4ui_4.8.1.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/base-passwd/base-passwd_3.5.24.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/rfkill/rfkill_0.4.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/netbase/netbase_4.47.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-support/vim/vim_7.2.446.bbappend

/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/gawk/gawk_4.0.0.bbappend
ERROR: Command execution failed: Exited with 1

i hope i am not annoying you. Thank You for your time and patience.


On Mon, Apr 29, 2013 at 11:50 AM, Paul Eggleton <
paul.eggleton@linux.intel.com> wrote:

> On Monday 29 April 2013 11:28:22 Zafrullah Syed wrote:
> > I cloned meta-gumstix[1] and meta-gumstix-extras[2] into poky folder and
> i
> > tried to add these values of my machine in the local.conf file
> >
> > MACHINE_KERNEL_PR = "r1"
> >
> > KERNEL_IMAGETYPE = "uImage"
> >
> > UBOOT_ENTRYPOINT = "0x80008000"
> > UBOOT_LOADADDRESS = "0x80008000"
> >
> > TARGET_ARCH = "arm"
>
> Couple of things:
>
> 1) You should not be adding the above to conf/local.conf. Instead, you
> should
> set MACHINE in conf/local.conf to point to the appropriate machine (in this
> case "overo")
>
> 2) You must add at least the path to the directory where meta-gumstix is
> located on your build machine (and possibly meta-gumstix-extras) to
> conf/bblayers.conf.
>
> If you don't do both of these you will continue to get the errors above.
>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
>



-- 
Regards,
Zafrullah Syed

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

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

* Re: poky: Bitbake nothing provides error
  2013-04-29 10:21       ` Zafrullah Syed
@ 2013-04-29 11:04         ` Satya Swaroop Damarla
  2013-04-29 11:06           ` Zafrullah Syed
  2013-04-29 11:26         ` Anders Darander
  1 sibling, 1 reply; 15+ messages in thread
From: Satya Swaroop Damarla @ 2013-04-29 11:04 UTC (permalink / raw)
  To: Zafrullah Syed, yocto@yoctoproject.org

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

Hey,

Please post your bblayers.conf file..


On Mon, Apr 29, 2013 at 12:21 PM, Zafrullah Syed
<zafrullahmehdi@gmail.com>wrote:

> After setting MACHINE and adding the meta-gumstix and meta-gumstix-extras
> path to conf/bblayers.conf and when building again, i get the following:
>
> WARNING: gumstix-repo-task: task.bbclass is deprecated, please inherit
> packagegroup instead
> | ETA:  00:00:30
> Parsing recipes: 100%
> |###########################################################################################################################|
> Time: 00:00:37
> Parsing of 889 .bb files complete (0 cached, 889 parsed). 1196 targets, 44
> skipped, 0 masked, 0 errors.
> ERROR: No recipes available for:
>
> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/systemd/systemd_git.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-core/systemd/systemd_git.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-xfce/libxfce4ui/libxfce4ui_4.8.1.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/base-passwd/base-passwd_3.5.24.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/rfkill/rfkill_0.4.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/netbase/netbase_4.47.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-support/vim/vim_7.2.446.bbappend
>
> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/gawk/gawk_4.0.0.bbappend
> ERROR: Command execution failed: Exited with 1
>
> i hope i am not annoying you. Thank You for your time and patience.
>
>
> On Mon, Apr 29, 2013 at 11:50 AM, Paul Eggleton <
> paul.eggleton@linux.intel.com> wrote:
>
>> On Monday 29 April 2013 11:28:22 Zafrullah Syed wrote:
>> > I cloned meta-gumstix[1] and meta-gumstix-extras[2] into poky folder
>> and i
>> > tried to add these values of my machine in the local.conf file
>> >
>> > MACHINE_KERNEL_PR = "r1"
>> >
>> > KERNEL_IMAGETYPE = "uImage"
>> >
>> > UBOOT_ENTRYPOINT = "0x80008000"
>> > UBOOT_LOADADDRESS = "0x80008000"
>> >
>> > TARGET_ARCH = "arm"
>>
>> Couple of things:
>>
>> 1) You should not be adding the above to conf/local.conf. Instead, you
>> should
>> set MACHINE in conf/local.conf to point to the appropriate machine (in
>> this
>> case "overo")
>>
>> 2) You must add at least the path to the directory where meta-gumstix is
>> located on your build machine (and possibly meta-gumstix-extras) to
>> conf/bblayers.conf.
>>
>> If you don't do both of these you will continue to get the errors above.
>>
>> Cheers,
>> Paul
>>
>> --
>>
>> Paul Eggleton
>> Intel Open Source Technology Centre
>>
>
>
>
> --
> Regards,
> Zafrullah Syed
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
>

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

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

* Re: poky: Bitbake nothing provides error
  2013-04-29 11:04         ` Satya Swaroop Damarla
@ 2013-04-29 11:06           ` Zafrullah Syed
  0 siblings, 0 replies; 15+ messages in thread
From: Zafrullah Syed @ 2013-04-29 11:06 UTC (permalink / raw)
  To: Satya Swaroop Damarla; +Cc: yocto@yoctoproject.org

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

bblayers.conf file:
I have added meta-gumstix and meta-gumstix-extras directory path to this
file.

# LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
# changes incompatibly
LCONF_VERSION = "6"

BBPATH = "${TOPDIR}"
BBFILES ?= ""

BBLAYERS ?= " \
  /home/zaif/poky-danny-8.0/meta \
  /home/zaif/poky-danny-8.0/meta-yocto \
  /home/zaif/poky-danny-8.0/meta-yocto-bsp \
  /home/zaif/poky-danny-8.0/meta-gumstix \
  /home/zaif/poky-danny-8.0/meta-gumstix-extras \
  "


On Mon, Apr 29, 2013 at 1:04 PM, Satya Swaroop Damarla <
swaroop.damarla@gmail.com> wrote:

> Hey,
>
> Please post your bblayers.conf file..
>
>
> On Mon, Apr 29, 2013 at 12:21 PM, Zafrullah Syed <zafrullahmehdi@gmail.com
> > wrote:
>
>> After setting MACHINE and adding the meta-gumstix and meta-gumstix-extras
>> path to conf/bblayers.conf and when building again, i get the following:
>>
>> WARNING: gumstix-repo-task: task.bbclass is deprecated, please inherit
>> packagegroup instead
>> | ETA:  00:00:30
>> Parsing recipes: 100%
>> |###########################################################################################################################|
>> Time: 00:00:37
>> Parsing of 889 .bb files complete (0 cached, 889 parsed). 1196 targets,
>> 44 skipped, 0 masked, 0 errors.
>> ERROR: No recipes available for:
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/systemd/systemd_git.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-core/systemd/systemd_git.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-xfce/libxfce4ui/libxfce4ui_4.8.1.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/base-passwd/base-passwd_3.5.24.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/rfkill/rfkill_0.4.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/netbase/netbase_4.47.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-support/vim/vim_7.2.446.bbappend
>>
>> /home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/gawk/gawk_4.0.0.bbappend
>> ERROR: Command execution failed: Exited with 1
>>
>> i hope i am not annoying you. Thank You for your time and patience.
>>
>>
>> On Mon, Apr 29, 2013 at 11:50 AM, Paul Eggleton <
>> paul.eggleton@linux.intel.com> wrote:
>>
>>> On Monday 29 April 2013 11:28:22 Zafrullah Syed wrote:
>>> > I cloned meta-gumstix[1] and meta-gumstix-extras[2] into poky folder
>>> and i
>>> > tried to add these values of my machine in the local.conf file
>>> >
>>> > MACHINE_KERNEL_PR = "r1"
>>> >
>>> > KERNEL_IMAGETYPE = "uImage"
>>> >
>>> > UBOOT_ENTRYPOINT = "0x80008000"
>>> > UBOOT_LOADADDRESS = "0x80008000"
>>> >
>>> > TARGET_ARCH = "arm"
>>>
>>> Couple of things:
>>>
>>> 1) You should not be adding the above to conf/local.conf. Instead, you
>>> should
>>> set MACHINE in conf/local.conf to point to the appropriate machine (in
>>> this
>>> case "overo")
>>>
>>> 2) You must add at least the path to the directory where meta-gumstix is
>>> located on your build machine (and possibly meta-gumstix-extras) to
>>> conf/bblayers.conf.
>>>
>>> If you don't do both of these you will continue to get the errors above.
>>>
>>> Cheers,
>>> Paul
>>>
>>> --
>>>
>>> Paul Eggleton
>>> Intel Open Source Technology Centre
>>>
>>
>>
>>
>> --
>> Regards,
>> Zafrullah Syed
>>
>>
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
>>
>>
>


-- 
Regards,
Zafrullah Syed

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

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

* Re: poky: Bitbake nothing provides error
  2013-04-29 10:21       ` Zafrullah Syed
  2013-04-29 11:04         ` Satya Swaroop Damarla
@ 2013-04-29 11:26         ` Anders Darander
  2013-04-29 12:17           ` Paul Eggleton
  1 sibling, 1 reply; 15+ messages in thread
From: Anders Darander @ 2013-04-29 11:26 UTC (permalink / raw)
  To: Zafrullah Syed, Paul Eggleton; +Cc: yocto@yoctoproject.org



Zafrullah Syed <zafrullahmehdi@gmail.com> wrote:

>After setting MACHINE and adding the meta-gumstix and
>meta-gumstix-extras path to conf/bblayers.conf and when building again,
>i get the following:
>
>
>WARNING: gumstix-repo-task: task.bbclass is deprecated, please inherit
>packagegroup instead                                                   
>   | ETA:  00:00:30
>
>Parsing recipes: 100%
>|###########################################################################################################################|
>Time: 00:00:37
>
>Parsing of 889 .bb files complete (0 cached, 889 parsed). 1196 targets,
>44 skipped, 0 masked, 0 errors.
>
>ERROR: No recipes available for:
>
>/home/zaif/poky-danny-8.0/meta-gumstix/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/networkmanager/networkmanager_0.9.2.0.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/systemd/systemd_git.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-core/systemd/systemd_git.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix/recipes-xfce/libxfce4ui/libxfce4ui_4.8.1.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/base-passwd/base-passwd_3.5.24.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/rfkill/rfkill_0.4.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/netbase/netbase_4.47.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-support/vim/vim_7.2.446.bbappend
>
>/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/gawk/gawk_4.0.0.bbappend
>
>ERROR: Command execution failed: Exited with 1


These are applications whose versions have been upgraded in either OE-Core or meta-oe. Thus, you need to update the bbappends in meta-gumstix to match the current versions. 
Cheers, 
Anders 

>
>i hope i am not annoying you. Thank You for your time and patience.

-- 
Anders Darander
ChargeStorm AB          Tel: +46 702 44 84 36
Laxholmstorget 3        Email: anders@chargestorm.se
602 21 Norrköping       Web: www.chargestorm.se

Sent from my Android phone with K-9 Mail. Please excuse my brevity.


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

* Re: poky: Bitbake nothing provides error
  2013-04-29 11:26         ` Anders Darander
@ 2013-04-29 12:17           ` Paul Eggleton
  2013-04-29 12:44             ` Trevor Woerner
                               ` (2 more replies)
  0 siblings, 3 replies; 15+ messages in thread
From: Paul Eggleton @ 2013-04-29 12:17 UTC (permalink / raw)
  To: Zafrullah Syed; +Cc: yocto

On Monday 29 April 2013 13:26:37 Anders Darander wrote:
> Zafrullah Syed <zafrullahmehdi@gmail.com> wrote:
> >After setting MACHINE and adding the meta-gumstix and
> >meta-gumstix-extras path to conf/bblayers.conf and when building again,
> >i get the following:
> >
> >
> >WARNING: gumstix-repo-task: task.bbclass is deprecated, please inherit
> >packagegroup instead
> >
> >   | ETA:  00:00:30
> >
> >Parsing recipes: 100%
> >
> >|##########################################################################
> >|#################################################|>
> >Time: 00:00:37
> >
> >Parsing of 889 .bb files complete (0 cached, 889 parsed). 1196 targets,
> >44 skipped, 0 masked, 0 errors.
> >
> >ERROR: No recipes available for:
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-connectivity/networkmanager/
> >networkmanager_0.9.2.0.bbappend
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/networkm
> >anager/networkmanager_0.9.2.0.bbappend
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/systemd/systemd_git.bba
> >ppend
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-core/systemd/systemd_
> >git.bbappend
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-xfce/libxfce4ui/libxfce4ui_4
> >.8.1.bbappend
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/base-passwd/base-passwd
> >_3.5.24.bbappend
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/rfkill/r
> >fkill_0.4.bbappend
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/netbase/netbase_4.47.bb
> >append
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-support/vim/vim_7.2.4
> >46.bbappend
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/gawk/gawk_4.0.0.bbappen
> >d
> >
> >ERROR: Command execution failed: Exited with 1
> 
> These are applications whose versions have been upgraded in either OE-Core
> or meta-oe. Thus, you need to update the bbappends in meta-gumstix to match
> the current versions.

Or, use the danny branch of meta-gumstix (if one exists) or poke the meta-
gumstix maintainer to update the bbappends there.

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: poky: Bitbake nothing provides error
  2013-04-29 12:17           ` Paul Eggleton
@ 2013-04-29 12:44             ` Trevor Woerner
       [not found]             ` <CAFMfyzL+CvD4Y5gg-j7zSqCV45CGzLFzJAQR_ZbHepqhAOnMNQ@mail.gmail.com>
  2013-04-29 14:24             ` Zafrullah Syed
  2 siblings, 0 replies; 15+ messages in thread
From: Trevor Woerner @ 2013-04-29 12:44 UTC (permalink / raw)
  To: Zafrullah Syed; +Cc: yocto@yoctoproject.org

Another option is to start over again following these instructions:

https://github.com/gumstix/Gumstix-YoctoProject-Repo/blob/master/README.md


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

* Re: poky: Bitbake nothing provides error
       [not found]             ` <CAFMfyzL+CvD4Y5gg-j7zSqCV45CGzLFzJAQR_ZbHepqhAOnMNQ@mail.gmail.com>
@ 2013-04-29 12:48               ` Paul Eggleton
  2013-04-29 14:07                 ` Katu Txakur
  0 siblings, 1 reply; 15+ messages in thread
From: Paul Eggleton @ 2013-04-29 12:48 UTC (permalink / raw)
  To: Satya Swaroop Damarla, Zafrullah Syed; +Cc: yocto@yoctoproject.org

On Monday 29 April 2013 14:39:23 Satya Swaroop Damarla wrote:
> For example consider the recipe "networkmanager"... First check if there is
> a basic recipe "networkmanager" in any of the layers becuase if there is no
> basic recipe then it makes no sense in appending the recipe in your BSP
> layer..
> 
> Try the following command
> 
> find  /home/zaif/ -name "networkmanager*"
> 
> If there is none then you have to create one but if there is one already
> then possibly chnage the version number in meta-gumstix layer to the one
> which is already present in the other layer or viceversa...

If you use the following command instead it will confirm whether your build 
system configuration knows anything about the named recipe:

 bitbake-layers show-recipes "networkmanager*"

If you want to find recipes that exist anywhere in publicly available layers, 
use the recipe search function within the OE layer index:

 http://layers.openembedded.org/layerindex/recipes/

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: poky: Bitbake nothing provides error
  2013-04-29 12:48               ` Paul Eggleton
@ 2013-04-29 14:07                 ` Katu Txakur
  2013-04-29 14:27                   ` Paul Eggleton
  0 siblings, 1 reply; 15+ messages in thread
From: Katu Txakur @ 2013-04-29 14:07 UTC (permalink / raw)
  To: Paul Eggleton
  Cc: Zafrullah Syed, Satya Swaroop Damarla, yocto@yoctoproject.org

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

The instructions in
https://github.com/gumstix/Gumstix-YoctoProject-Repo/blob/master/README.md
worked
for me, at least you can get them and have a look at the
build/conf/local.conf file.

Paul, how can get the recipes and related files that I find in the
layerindex?
Thanks


2013/4/29 Paul Eggleton <paul.eggleton@linux.intel.com>

> On Monday 29 April 2013 14:39:23 Satya Swaroop Damarla wrote:
> > For example consider the recipe "networkmanager"... First check if there
> is
> > a basic recipe "networkmanager" in any of the layers becuase if there is
> no
> > basic recipe then it makes no sense in appending the recipe in your BSP
> > layer..
> >
> > Try the following command
> >
> > find  /home/zaif/ -name "networkmanager*"
> >
> > If there is none then you have to create one but if there is one already
> > then possibly chnage the version number in meta-gumstix layer to the one
> > which is already present in the other layer or viceversa...
>
> If you use the following command instead it will confirm whether your build
> system configuration knows anything about the named recipe:
>
>  bitbake-layers show-recipes "networkmanager*"
>
> If you want to find recipes that exist anywhere in publicly available
> layers,
> use the recipe search function within the OE layer index:
>
>  http://layers.openembedded.org/layerindex/recipes/
>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>

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

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

* Re: poky: Bitbake nothing provides error
  2013-04-29 12:17           ` Paul Eggleton
  2013-04-29 12:44             ` Trevor Woerner
       [not found]             ` <CAFMfyzL+CvD4Y5gg-j7zSqCV45CGzLFzJAQR_ZbHepqhAOnMNQ@mail.gmail.com>
@ 2013-04-29 14:24             ` Zafrullah Syed
  2 siblings, 0 replies; 15+ messages in thread
From: Zafrullah Syed @ 2013-04-29 14:24 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto

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

I am using danny branch of meta-gumstix and also requested gumstix
maintainer to update the files. I will again make a clean install again and
hopefully it should work.


On Mon, Apr 29, 2013 at 2:17 PM, Paul Eggleton <
paul.eggleton@linux.intel.com> wrote:

> On Monday 29 April 2013 13:26:37 Anders Darander wrote:
> > Zafrullah Syed <zafrullahmehdi@gmail.com> wrote:
> > >After setting MACHINE and adding the meta-gumstix and
> > >meta-gumstix-extras path to conf/bblayers.conf and when building again,
> > >i get the following:
> > >
> > >
> > >WARNING: gumstix-repo-task: task.bbclass is deprecated, please inherit
> > >packagegroup instead
> > >
> > >   | ETA:  00:00:30
> > >
> > >Parsing recipes: 100%
> > >
> >
> >|##########################################################################
> > >|#################################################|>
> > >Time: 00:00:37
> > >
> > >Parsing of 889 .bb files complete (0 cached, 889 parsed). 1196 targets,
> > >44 skipped, 0 masked, 0 errors.
> > >
> > >ERROR: No recipes available for:
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-connectivity/networkmanager/
> > >networkmanager_0.9.2.0.bbappend
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/networkm
> > >anager/networkmanager_0.9.2.0.bbappend
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/systemd/systemd_git.bba
> > >ppend
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-core/systemd/systemd_
> > >git.bbappend
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-xfce/libxfce4ui/libxfce4ui_4
> > >.8.1.bbappend
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/base-passwd/base-passwd
> > >_3.5.24.bbappend
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-connectivity/rfkill/r
> > >fkill_0.4.bbappend
> > >
> > >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/netbase/
> netbase_4.47.bb
> > >append
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix-extras/recipes-support/vim/vim_7.2.4
> > >46.bbappend
> > >
> >
> >/home/zaif/poky-danny-8.0/meta-gumstix/recipes-core/gawk/gawk_4.0.0.bbappen
> > >d
> > >
> > >ERROR: Command execution failed: Exited with 1
> >
> > These are applications whose versions have been upgraded in either
> OE-Core
> > or meta-oe. Thus, you need to update the bbappends in meta-gumstix to
> match
> > the current versions.
>
> Or, use the danny branch of meta-gumstix (if one exists) or poke the meta-
> gumstix maintainer to update the bbappends there.
>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
>



-- 
Regards,
Zafrullah Syed

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

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

* Re: poky: Bitbake nothing provides error
  2013-04-29 14:07                 ` Katu Txakur
@ 2013-04-29 14:27                   ` Paul Eggleton
  2013-04-30 10:43                     ` Katu Txakur
  0 siblings, 1 reply; 15+ messages in thread
From: Paul Eggleton @ 2013-04-29 14:27 UTC (permalink / raw)
  To: Katu Txakur; +Cc: Zafrullah Syed, Satya Swaroop Damarla, yocto@yoctoproject.org

On Monday 29 April 2013 15:07:27 Katu Txakur wrote:
> The instructions in
> https://github.com/gumstix/Gumstix-YoctoProject-Repo/blob/master/README.md
> worked
> for me, at least you can get them and have a look at the
> build/conf/local.conf file.
> 
> Paul, how can get the recipes and related files that I find in the
> layerindex?

Typically, if you find a recipe in the layer index, assuming it isn't a 
distribution layer, you would add the layer it is contained in to your 
conf/bblayers.conf rather than trying to extract the single recipe and all the 
files it needs. To do this:

1) Click on the layer link on the right hand side of the recipe list or within 
the page for the recipe

2) Grab the git URL for the layer repository (assuming JavaScript is enabled 
in your browser you can click once on the arrow on the left to select the text 
and then you can copy it easily)

3) Clone that repository somewhere on your machine

4) Add the path to the layer (including the subdirectory if specified on the 
layer index page for the layer) to conf/bblayers.conf

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


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

* Re: poky: Bitbake nothing provides error
  2013-04-29 14:27                   ` Paul Eggleton
@ 2013-04-30 10:43                     ` Katu Txakur
  0 siblings, 0 replies; 15+ messages in thread
From: Katu Txakur @ 2013-04-30 10:43 UTC (permalink / raw)
  To: Paul Eggleton
  Cc: Zafrullah Syed, Satya Swaroop Damarla, yocto@yoctoproject.org

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

Thank you Paul


2013/4/29 Paul Eggleton <paul.eggleton@linux.intel.com>

> On Monday 29 April 2013 15:07:27 Katu Txakur wrote:
> > The instructions in
> >
> https://github.com/gumstix/Gumstix-YoctoProject-Repo/blob/master/README.md
> > worked
> > for me, at least you can get them and have a look at the
> > build/conf/local.conf file.
> >
> > Paul, how can get the recipes and related files that I find in the
> > layerindex?
>
> Typically, if you find a recipe in the layer index, assuming it isn't a
> distribution layer, you would add the layer it is contained in to your
> conf/bblayers.conf rather than trying to extract the single recipe and all
> the
> files it needs. To do this:
>
> 1) Click on the layer link on the right hand side of the recipe list or
> within
> the page for the recipe
>
> 2) Grab the git URL for the layer repository (assuming JavaScript is
> enabled
> in your browser you can click once on the arrow on the left to select the
> text
> and then you can copy it easily)
>
> 3) Clone that repository somewhere on your machine
>
> 4) Add the path to the layer (including the subdirectory if specified on
> the
> layer index page for the layer) to conf/bblayers.conf
>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
>

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

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

end of thread, other threads:[~2013-04-30 10:43 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-29  9:01 poky: Bitbake nothing provides error Zafrullah Syed
2013-04-29  9:09 ` Paul Eggleton
2013-04-29  9:28   ` Zafrullah Syed
2013-04-29  9:50     ` Paul Eggleton
2013-04-29 10:21       ` Zafrullah Syed
2013-04-29 11:04         ` Satya Swaroop Damarla
2013-04-29 11:06           ` Zafrullah Syed
2013-04-29 11:26         ` Anders Darander
2013-04-29 12:17           ` Paul Eggleton
2013-04-29 12:44             ` Trevor Woerner
     [not found]             ` <CAFMfyzL+CvD4Y5gg-j7zSqCV45CGzLFzJAQR_ZbHepqhAOnMNQ@mail.gmail.com>
2013-04-29 12:48               ` Paul Eggleton
2013-04-29 14:07                 ` Katu Txakur
2013-04-29 14:27                   ` Paul Eggleton
2013-04-30 10:43                     ` Katu Txakur
2013-04-29 14:24             ` Zafrullah Syed

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.