All of lore.kernel.org
 help / color / mirror / Atom feed
* yocto with meta-ti
@ 2013-06-04 19:41 Edward Vidal
  2013-06-05  5:55 ` Akshay Sahota
  0 siblings, 1 reply; 7+ messages in thread
From: Edward Vidal @ 2013-06-04 19:41 UTC (permalink / raw)
  To: yocto@yoctoproject.org

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

Michael wrote

Hi,

As a quick hack you can mask out recipes-misc by adding the following line
to your conf/local.conf :

BBMASK = "meta-ti/recipes-misc"

It seem to mask out everything in meta-ti/recipes-misc.

This was a suggestion I found on the net. The better way would be if
meta-ti would be split into multiple layers where one of them is a
meta-ti-bsp layer.

Best regards
Michael

I build with yocto and meta-ti for the beaglebone and pandaboard.

This is what I add to local.conf
MACHINE ?= "beaglebone"
MACHINE ?= "pandaboard"
BBMASK ?= ".*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/"

and in bblayers.conf
BBLAYERS ?= " \
  /home/vidal/POKY/build060213_dylan_panda/poky/meta \
  /home/vidal/POKY/build060213_dylan_panda/poky/meta-yocto \
  /home/vidal/POKY/build060213_dylan_panda/poky/meta-ti \
  /home/vidal/POKY/build060213_dylan_panda/poky/meta-oe/meta-oe \
  /home/vidal/POKY/build060213_dylan_panda/poky/meta-yocto-bsp \
  "
BBLAYERS_NON_REMOVABLE ?= " \
  /home/vidal/POKY/build060213_dylan_panda/poky/meta \
  /home/vidal/POKY/build060213_dylan_panda/poky/meta-yocto \

This works okay see the post
[yocto] beaglebone beagleboard pandaboard
<https://lists.yoctoproject.org/pipermail/yocto/2013-June/016393.html>
*Edward Vidal
*

*Let me know if this helps I am  using dylan branch with an older
version of meta-ti
commit d61bfa88ed3df9190ac9fd5643c27f77b34c5f01
Author: Denys Dmytriyenko <denys@ti.com>
Date:   Mon Feb 25 22:48:33 2013 -0500

    linux-omapl138: fix alignment issue of 2.6.37 kernel with gcc-4.7

    Patch by Steve Sakoman

    Signed-off-by: Denys Dmytriyenko <denys@ti.com>
*

*I hope this helps
*

*Ed Vidal
*

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

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

* Re: yocto with meta-ti
  2013-06-04 19:41 yocto with meta-ti Edward Vidal
@ 2013-06-05  5:55 ` Akshay Sahota
  2013-06-05  6:05   ` Nicolas Dechesne
  0 siblings, 1 reply; 7+ messages in thread
From: Akshay Sahota @ 2013-06-05  5:55 UTC (permalink / raw)
  To: Edward Vidal; +Cc: yocto@yoctoproject.org

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

I'm not sure where the problem is, i think we have severe version problems.

This is our local.conf file

*BBMASK ?= ".*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/"
#BBMASK = "meta-ti/recipes-misc meta-oe/recipes-graphics"
#BBMASK = "meta-oe/recipes-devtools"
#BBMASK = "meta-oe/recipes-graphics"
#
# Parallelism Options*...


and bblayers.conf

*BBLAYERS ?= " \
  /home/asahota/poky-try/poky/meta \
  /home/asahota/poky-try/poky/meta-yocto \
  /home/asahota/poky-try/poky/meta-yocto-bsp \
  /home/asahota/poky-try/poky/meta-ti \
  /home/asahota/poky-try/poky/meta-openembedded/meta-oe \
  "

BBLAYERS_NON_REMOVABLE ?= " \
  /home/asahota/poky-try/poky/meta \
  /home/asahota/poky-try/poky/meta-yocto \
  "*

and the output is :
*$ bitbake -k core-image-minimal
Pseudo is not present but is required, building this first before the main
build
WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated with
this version of the build system; you may possibly experience unexpected
failures. It is recommended that you use a tested distribution.
ERROR: ParseError at
/home/asahota/poky-try/poky/meta-openembedded/meta-oe/recipes-devtools/cloud9/
cloud9_0.6.bb:11: Could not inherit file classes/systemd.bbclass
ERROR: Command execution failed: Exited with 1

Summary: There was 1 WARNING message shown.
Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
*
What is the mistake, sounds too silly.!


On Wed, Jun 5, 2013 at 1:11 AM, Edward Vidal <vidal.develone@gmail.com>wrote:

> Michael wrote
>
> Hi,
>
> As a quick hack you can mask out recipes-misc by adding the following line
> to your conf/local.conf :
>
> BBMASK = "meta-ti/recipes-misc"
>
> It seem to mask out everything in meta-ti/recipes-misc.
>
> This was a suggestion I found on the net. The better way would be if
> meta-ti would be split into multiple layers where one of them is a
> meta-ti-bsp layer.
>
> Best regards
> Michael
>
> I build with yocto and meta-ti for the beaglebone and pandaboard.
>
> This is what I add to local.conf
> MACHINE ?= "beaglebone"
> MACHINE ?= "pandaboard"
> BBMASK ?= ".*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/"
>
> and in bblayers.conf
> BBLAYERS ?= " \
>   /home/vidal/POKY/build060213_dylan_panda/poky/meta \
>   /home/vidal/POKY/build060213_dylan_panda/poky/meta-yocto \
>   /home/vidal/POKY/build060213_dylan_panda/poky/meta-ti \
>
>   /home/vidal/POKY/build060213_dylan_panda/poky/meta-oe/meta-oe \
>   /home/vidal/POKY/build060213_dylan_panda/poky/meta-yocto-bsp \
>   "
> BBLAYERS_NON_REMOVABLE ?= " \
>   /home/vidal/POKY/build060213_dylan_panda/poky/meta \
>
>   /home/vidal/POKY/build060213_dylan_panda/poky/meta-yocto \
>
> This works okay see the post
> [yocto] beaglebone beagleboard pandaboard <https://lists.yoctoproject.org/pipermail/yocto/2013-June/016393.html> *Edward Vidal
> *
>
> *Let me know if this helps I am  using dylan branch with an older version of meta-ti
> commit d61bfa88ed3df9190ac9fd5643c27f77b34c5f01
> Author: Denys Dmytriyenko <denys@ti.com>
>
> Date:   Mon Feb 25 22:48:33 2013 -0500
>
>     linux-omapl138: fix alignment issue of 2.6.37 kernel with gcc-4.7
>
>     Patch by Steve Sakoman
>
>     Signed-off-by: Denys Dmytriyenko <denys@ti.com>
> *
>
> *I hope this helps
> *
>
> *Ed Vidal
> *
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
>


-- 
*Akshay Sahota**
*Fourth Year Undergraduate
Department of Electronics & Electrical Engineering
Indian Institute of Technology Kharagpur

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

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

* Re: yocto with meta-ti
  2013-06-05  5:55 ` Akshay Sahota
@ 2013-06-05  6:05   ` Nicolas Dechesne
  2013-06-13  9:52     ` [yocto] " Sudhangathan B S
  2013-06-13 18:23     ` Denys Dmytriyenko
  0 siblings, 2 replies; 7+ messages in thread
From: Nicolas Dechesne @ 2013-06-05  6:05 UTC (permalink / raw)
  To: Akshay Sahota; +Cc: yocto@yoctoproject.org, Edward Vidal

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

On Wed, Jun 5, 2013 at 7:55 AM, Akshay Sahota <akki.sahota@gmail.com> wrote:

> *
> BBMASK ?= ".*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/"
>  #BBMASK = "meta-ti/recipes-misc meta-oe/recipes-graphics"
> #BBMASK = "meta-oe/recipes-devtools"
> #BBMASK = "meta-oe/recipes-graphics"
> #
> # Parallelism Options*...
>
>
> and bblayers.conf
>
> *BBLAYERS ?= " \
>   /home/asahota/poky-try/poky/meta \
>   /home/asahota/poky-try/poky/meta-yocto \
>   /home/asahota/poky-try/poky/meta-yocto-bsp \
>   /home/asahota/poky-try/poky/meta-ti \
>   /home/asahota/poky-try/poky/meta-openembedded/meta-oe \
>   "
> *
>

i suspect you are using wrong combination of branch/version, but you don't
give what branch/version you are using, not cannot confirm.


> *
> BBLAYERS_NON_REMOVABLE ?= " \
>   /home/asahota/poky-try/poky/meta \
>   /home/asahota/poky-try/poky/meta-yocto \
>   "*
>
> and the output is :
> *$ bitbake -k core-image-minimal
> Pseudo is not present but is required, building this first before the main
> build
> WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated
> with this version of the build system; you may possibly experience
> unexpected failures. It is recommended that you use a tested distribution.
> ERROR: ParseError at
> /home/asahota/poky-try/poky/meta-openembedded/meta-oe/recipes-devtools/cloud9/
> cloud9_0.6.bb:11: Could not inherit file classes/systemd.bbclass
> *
>

systemd.bbclass was introduced in 'dylan' version of Yocto (aka 1.4). are
you sure this is what you are using? to be it sounds like you are using
Yocto/danny with meta-ti and meta-oe 'master' branch (or dylan branch).


*ERROR: Command execution failed: Exited with 1
>
> Summary: There was 1 WARNING message shown.
> Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
> *
> What is the mistake, sounds too silly.!

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

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

* Re: [yocto] yocto with meta-ti
  2013-06-05  6:05   ` Nicolas Dechesne
@ 2013-06-13  9:52     ` Sudhangathan B S
  2013-06-13 18:28       ` Denys Dmytriyenko
  2013-06-13 18:23     ` Denys Dmytriyenko
  1 sibling, 1 reply; 7+ messages in thread
From: Sudhangathan B S @ 2013-06-13  9:52 UTC (permalink / raw)
  To: meta-ti

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

Hello all,

I'm trying to integrate meta-ti with Yocto/poky, since I need to add the
2.6.32 kernel for the beableboard image.

Can I please know how to download the correct version, i.e. i'm using
danny-8.0, so for this, which version of the meta-ti and meta-oe should I
download, and from where.. and also after downloading where should I put
these folders (correct location for each)..

I downloaded the danny branch of yocto, meta-ti, meta-oe and also the danny
branch of openembedded-core as the dependency. Is it correct.?

Is there is weblink that I can follow..?

For now, this is the error i'm getting..

*danny-8.0/build$ bitbake -k core-image-minimal*
*Pseudo is not present but is required, building this first before the main
build*
*WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated
with this version of the build system; you may possibly experience
unexpected failures. It is recommended that you use a tested distribution.*
*Loading cache: 100%
|################################################################################################################################|
ETA:  00:00:00*
*Loaded 22 entries from dependency cache.*
*ERROR: ExpansionError during parsing
/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/
ti-local-power-manager_1.24.02.09.bb: Failure expanding variable FILESPATH,
expression was ${@base_set_filespath([
"/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_1_24_02_09-${MACHINE_KERNEL_PR}e",
"/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_24_02_09",
"/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager",
"/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_24_02_09",
"/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager",
"/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/files",
"/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager" ],
d)} which triggered exception SyntaxError: EOL while scanning string
literal (FILESPATH, line 1)*
*ERROR: Command execution failed: Exited with 1*
*
*
*Summary: There was 1 WARNING message shown.*
*Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
*

I hope this is not version mismatch problem..!! may be yes..!

---------------------------------
Sudhangathan BS
Ph:(+91) 9731-905-205
---------------------------------


On Wed, Jun 5, 2013 at 11:35 AM, Nicolas Dechesne <
nicolas.dechesne@linaro.org> wrote:

>
> On Wed, Jun 5, 2013 at 7:55 AM, Akshay Sahota <akki.sahota@gmail.com>wrote:
>
>> *
>> BBMASK ?= ".*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/"
>>  #BBMASK = "meta-ti/recipes-misc meta-oe/recipes-graphics"
>> #BBMASK = "meta-oe/recipes-devtools"
>> #BBMASK = "meta-oe/recipes-graphics"
>> #
>> # Parallelism Options*...
>>
>>
>> and bblayers.conf
>>
>> *BBLAYERS ?= " \
>>   /home/asahota/poky-try/poky/meta \
>>   /home/asahota/poky-try/poky/meta-yocto \
>>   /home/asahota/poky-try/poky/meta-yocto-bsp \
>>   /home/asahota/poky-try/poky/meta-ti \
>>   /home/asahota/poky-try/poky/meta-openembedded/meta-oe \
>>   "
>> *
>>
>
> i suspect you are using wrong combination of branch/version, but you don't
> give what branch/version you are using, not cannot confirm.
>
>
>> *
>> BBLAYERS_NON_REMOVABLE ?= " \
>>   /home/asahota/poky-try/poky/meta \
>>   /home/asahota/poky-try/poky/meta-yocto \
>>   "*
>>
>> and the output is :
>> *$ bitbake -k core-image-minimal
>> Pseudo is not present but is required, building this first before the
>> main build
>> WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated
>> with this version of the build system; you may possibly experience
>> unexpected failures. It is recommended that you use a tested distribution.
>> ERROR: ParseError at
>> /home/asahota/poky-try/poky/meta-openembedded/meta-oe/recipes-devtools/cloud9/
>> cloud9_0.6.bb:11: Could not inherit file classes/systemd.bbclass
>> *
>>
>
> systemd.bbclass was introduced in 'dylan' version of Yocto (aka 1.4). are
> you sure this is what you are using? to be it sounds like you are using
> Yocto/danny with meta-ti and meta-oe 'master' branch (or dylan branch).
>
>
> *ERROR: Command execution failed: Exited with 1
>>
>> Summary: There was 1 WARNING message shown.
>> Summary: There were 2 ERROR messages shown, returning a non-zero exit
>> code.
>> *
>> What is the mistake, sounds too silly.!
>
>
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
>

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

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

* Re: yocto with meta-ti
  2013-06-05  6:05   ` Nicolas Dechesne
  2013-06-13  9:52     ` [yocto] " Sudhangathan B S
@ 2013-06-13 18:23     ` Denys Dmytriyenko
  1 sibling, 0 replies; 7+ messages in thread
From: Denys Dmytriyenko @ 2013-06-13 18:23 UTC (permalink / raw)
  To: Nicolas Dechesne; +Cc: yocto@yoctoproject.org, Edward Vidal

On Wed, Jun 05, 2013 at 08:05:52AM +0200, Nicolas Dechesne wrote:
> On Wed, Jun 5, 2013 at 7:55 AM, Akshay Sahota <akki.sahota@gmail.com> wrote:
> 
> > *
> > BBMASK ?= ".*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/"
> >  #BBMASK = "meta-ti/recipes-misc meta-oe/recipes-graphics"
> > #BBMASK = "meta-oe/recipes-devtools"
> > #BBMASK = "meta-oe/recipes-graphics"
> > #
> > # Parallelism Options*...
> >
> >
> > and bblayers.conf
> >
> > *BBLAYERS ?= " \
> >   /home/asahota/poky-try/poky/meta \
> >   /home/asahota/poky-try/poky/meta-yocto \
> >   /home/asahota/poky-try/poky/meta-yocto-bsp \
> >   /home/asahota/poky-try/poky/meta-ti \

Please pay attention to the order of BSP layers, especially those providing 
the same machine configuration... For example, in the above setup, you won't 
be able to use "beagleboard" machine config from meta-ti, as you have it 
shadowed by the config from meta-yocto-bsp.

-- 
Denys


> >   /home/asahota/poky-try/poky/meta-openembedded/meta-oe \
> >   "
> > *
> >
> 
> i suspect you are using wrong combination of branch/version, but you don't
> give what branch/version you are using, not cannot confirm.
> 
> 
> > *
> > BBLAYERS_NON_REMOVABLE ?= " \
> >   /home/asahota/poky-try/poky/meta \
> >   /home/asahota/poky-try/poky/meta-yocto \
> >   "*
> >
> > and the output is :
> > *$ bitbake -k core-image-minimal
> > Pseudo is not present but is required, building this first before the main
> > build
> > WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated
> > with this version of the build system; you may possibly experience
> > unexpected failures. It is recommended that you use a tested distribution.
> > ERROR: ParseError at
> > /home/asahota/poky-try/poky/meta-openembedded/meta-oe/recipes-devtools/cloud9/
> > cloud9_0.6.bb:11: Could not inherit file classes/systemd.bbclass
> > *
> >
> 
> systemd.bbclass was introduced in 'dylan' version of Yocto (aka 1.4). are
> you sure this is what you are using? to be it sounds like you are using
> Yocto/danny with meta-ti and meta-oe 'master' branch (or dylan branch).
> 
> 
> *ERROR: Command execution failed: Exited with 1
> >
> > Summary: There was 1 WARNING message shown.
> > Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
> > *
> > What is the mistake, sounds too silly.!

> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto



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

* Re: [yocto] yocto with meta-ti
  2013-06-13  9:52     ` [yocto] " Sudhangathan B S
@ 2013-06-13 18:28       ` Denys Dmytriyenko
  2013-06-15  0:33         ` Sudhangathan B S
  0 siblings, 1 reply; 7+ messages in thread
From: Denys Dmytriyenko @ 2013-06-13 18:28 UTC (permalink / raw)
  To: Sudhangathan B S; +Cc: meta-ti

On Thu, Jun 13, 2013 at 03:22:03PM +0530, Sudhangathan B S wrote:
> Hello all,
> 
> I'm trying to integrate meta-ti with Yocto/poky, since I need to add the
> 2.6.32 kernel for the beableboard image.
> 
> Can I please know how to download the correct version, i.e. i'm using
> danny-8.0, so for this, which version of the meta-ti and meta-oe should I
> download, and from where.. and also after downloading where should I put
> these folders (correct location for each)..
> 
> I downloaded the danny branch of yocto, meta-ti, meta-oe and also the danny
> branch of openembedded-core as the dependency. Is it correct.?
> 
> Is there is weblink that I can follow..?
> 
> For now, this is the error i'm getting..
> 
> *danny-8.0/build$ bitbake -k core-image-minimal*
> *Pseudo is not present but is required, building this first before the main
> build*
> *WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated
> with this version of the build system; you may possibly experience
> unexpected failures. It is recommended that you use a tested distribution.*
> *Loading cache: 100%
> |################################################################################################################################|
> ETA:  00:00:00*
> *Loaded 22 entries from dependency cache.*
> *ERROR: ExpansionError during parsing
> /home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/
> ti-local-power-manager_1.24.02.09.bb: Failure expanding variable FILESPATH,
> expression was ${@base_set_filespath([
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_1_24_02_09-${MACHINE_KERNEL_PR}e",
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_24_02_09",
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager",
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_24_02_09",
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager",
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/files",
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager" ],
> d)} which triggered exception SyntaxError: EOL while scanning string
> literal (FILESPATH, line 1)*

This error is caused by including meta-yocto-bsp and meta-ti layers that both 
define "beagleboard" machine config. You have meta-yocto-bsp configured before 
meta-ti in your bblayers.conf, which takes the beagleboard definition from 
meta-yocto-bsp layer, so you can't safely use corresponding recipes from 
meta-ti. You should swap those two layers or just drop meta-yocto-bsp 
completely.

-- 
Denys

> *ERROR: Command execution failed: Exited with 1*
> *
> *
> *Summary: There was 1 WARNING message shown.*
> *Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
> *
> 
> I hope this is not version mismatch problem..!! may be yes..!
> 
> ---------------------------------
> Sudhangathan BS
> Ph:(+91) 9731-905-205
> ---------------------------------
> 
> 
> On Wed, Jun 5, 2013 at 11:35 AM, Nicolas Dechesne <
> nicolas.dechesne@linaro.org> wrote:
> 
> >
> > On Wed, Jun 5, 2013 at 7:55 AM, Akshay Sahota <akki.sahota@gmail.com>wrote:
> >
> >> *
> >> BBMASK ?= ".*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/"
> >>  #BBMASK = "meta-ti/recipes-misc meta-oe/recipes-graphics"
> >> #BBMASK = "meta-oe/recipes-devtools"
> >> #BBMASK = "meta-oe/recipes-graphics"
> >> #
> >> # Parallelism Options*...
> >>
> >>
> >> and bblayers.conf
> >>
> >> *BBLAYERS ?= " \
> >>   /home/asahota/poky-try/poky/meta \
> >>   /home/asahota/poky-try/poky/meta-yocto \
> >>   /home/asahota/poky-try/poky/meta-yocto-bsp \
> >>   /home/asahota/poky-try/poky/meta-ti \
> >>   /home/asahota/poky-try/poky/meta-openembedded/meta-oe \
> >>   "
> >> *
> >>
> >
> > i suspect you are using wrong combination of branch/version, but you don't
> > give what branch/version you are using, not cannot confirm.
> >
> >
> >> *
> >> BBLAYERS_NON_REMOVABLE ?= " \
> >>   /home/asahota/poky-try/poky/meta \
> >>   /home/asahota/poky-try/poky/meta-yocto \
> >>   "*
> >>
> >> and the output is :
> >> *$ bitbake -k core-image-minimal
> >> Pseudo is not present but is required, building this first before the
> >> main build
> >> WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated
> >> with this version of the build system; you may possibly experience
> >> unexpected failures. It is recommended that you use a tested distribution.
> >> ERROR: ParseError at
> >> /home/asahota/poky-try/poky/meta-openembedded/meta-oe/recipes-devtools/cloud9/
> >> cloud9_0.6.bb:11: Could not inherit file classes/systemd.bbclass
> >> *
> >>
> >
> > systemd.bbclass was introduced in 'dylan' version of Yocto (aka 1.4). are
> > you sure this is what you are using? to be it sounds like you are using
> > Yocto/danny with meta-ti and meta-oe 'master' branch (or dylan branch).
> >
> >
> > *ERROR: Command execution failed: Exited with 1
> >>
> >> Summary: There was 1 WARNING message shown.
> >> Summary: There were 2 ERROR messages shown, returning a non-zero exit
> >> code.
> >> *
> >> What is the mistake, sounds too silly.!
> >
> >
> >
> >
> > _______________________________________________
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
> >
> >

> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti



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

* Re: [yocto] yocto with meta-ti
  2013-06-13 18:28       ` Denys Dmytriyenko
@ 2013-06-15  0:33         ` Sudhangathan B S
  0 siblings, 0 replies; 7+ messages in thread
From: Sudhangathan B S @ 2013-06-15  0:33 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti

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

Thanks a lot Denys for the knowledge... The order of the layers was indeed
important.. It worked, now building core-image-minimal.. and sato.! I now
hope switching to 2.6.32 kernel should be a cakewalk..! :)

Best,
---------------------------------
Sudhangathan BS
Ph:(+91) 9731-905-205
---------------------------------


On Thu, Jun 13, 2013 at 11:58 PM, Denys Dmytriyenko <denis@denix.org> wrote:

> On Thu, Jun 13, 2013 at 03:22:03PM +0530, Sudhangathan B S wrote:
> > Hello all,
> >
> > I'm trying to integrate meta-ti with Yocto/poky, since I need to add the
> > 2.6.32 kernel for the beableboard image.
> >
> > Can I please know how to download the correct version, i.e. i'm using
> > danny-8.0, so for this, which version of the meta-ti and meta-oe should I
> > download, and from where.. and also after downloading where should I put
> > these folders (correct location for each)..
> >
> > I downloaded the danny branch of yocto, meta-ti, meta-oe and also the
> danny
> > branch of openembedded-core as the dependency. Is it correct.?
> >
> > Is there is weblink that I can follow..?
> >
> > For now, this is the error i'm getting..
> >
> > *danny-8.0/build$ bitbake -k core-image-minimal*
> > *Pseudo is not present but is required, building this first before the
> main
> > build*
> > *WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated
> > with this version of the build system; you may possibly experience
> > unexpected failures. It is recommended that you use a tested
> distribution.*
> > *Loading cache: 100%
> >
> |################################################################################################################################|
> > ETA:  00:00:00*
> > *Loaded 22 entries from dependency cache.*
> > *ERROR: ExpansionError during parsing
> > /home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/
> > ti-local-power-manager_1.24.02.09.bb: Failure expanding variable
> FILESPATH,
> > expression was ${@base_set_filespath([
> >
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_1_24_02_09-${MACHINE_KERNEL_PR}e",
> >
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_24_02_09",
> >
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager",
> >
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager-1_24_02_09",
> >
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/ti-local-power-manager",
> >
> "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager/files",
> > "/home/suan/danny-try/danny-8.0/meta-ti/recipes-ti/local-power-manager"
> ],
> > d)} which triggered exception SyntaxError: EOL while scanning string
> > literal (FILESPATH, line 1)*
>
> This error is caused by including meta-yocto-bsp and meta-ti layers that
> both
> define "beagleboard" machine config. You have meta-yocto-bsp configured
> before
> meta-ti in your bblayers.conf, which takes the beagleboard definition from
> meta-yocto-bsp layer, so you can't safely use corresponding recipes from
> meta-ti. You should swap those two layers or just drop meta-yocto-bsp
> completely.
>
> --
> Denys
>
> > *ERROR: Command execution failed: Exited with 1*
> > *
> > *
> > *Summary: There was 1 WARNING message shown.*
> > *Summary: There were 2 ERROR messages shown, returning a non-zero exit
> code.
> > *
> >
> > I hope this is not version mismatch problem..!! may be yes..!
> >
> > ---------------------------------
> > Sudhangathan BS
> > Ph:(+91) 9731-905-205
> > ---------------------------------
> >
> >
> > On Wed, Jun 5, 2013 at 11:35 AM, Nicolas Dechesne <
> > nicolas.dechesne@linaro.org> wrote:
> >
> > >
> > > On Wed, Jun 5, 2013 at 7:55 AM, Akshay Sahota <akki.sahota@gmail.com
> >wrote:
> > >
> > >> *
> > >> BBMASK ?= ".*/meta-ti/recipes-(misc|bsp/formfactor|graphics/mesa)/"
> > >>  #BBMASK = "meta-ti/recipes-misc meta-oe/recipes-graphics"
> > >> #BBMASK = "meta-oe/recipes-devtools"
> > >> #BBMASK = "meta-oe/recipes-graphics"
> > >> #
> > >> # Parallelism Options*...
> > >>
> > >>
> > >> and bblayers.conf
> > >>
> > >> *BBLAYERS ?= " \
> > >>   /home/asahota/poky-try/poky/meta \
> > >>   /home/asahota/poky-try/poky/meta-yocto \
> > >>   /home/asahota/poky-try/poky/meta-yocto-bsp \
> > >>   /home/asahota/poky-try/poky/meta-ti \
> > >>   /home/asahota/poky-try/poky/meta-openembedded/meta-oe \
> > >>   "
> > >> *
> > >>
> > >
> > > i suspect you are using wrong combination of branch/version, but you
> don't
> > > give what branch/version you are using, not cannot confirm.
> > >
> > >
> > >> *
> > >> BBLAYERS_NON_REMOVABLE ?= " \
> > >>   /home/asahota/poky-try/poky/meta \
> > >>   /home/asahota/poky-try/poky/meta-yocto \
> > >>   "*
> > >>
> > >> and the output is :
> > >> *$ bitbake -k core-image-minimal
> > >> Pseudo is not present but is required, building this first before the
> > >> main build
> > >> WARNING: Host distribution "Ubuntu 12.04.2 LTS" has not been validated
> > >> with this version of the build system; you may possibly experience
> > >> unexpected failures. It is recommended that you use a tested
> distribution.
> > >> ERROR: ParseError at
> > >>
> /home/asahota/poky-try/poky/meta-openembedded/meta-oe/recipes-devtools/cloud9/
> > >> cloud9_0.6.bb:11: Could not inherit file classes/systemd.bbclass
> > >> *
> > >>
> > >
> > > systemd.bbclass was introduced in 'dylan' version of Yocto (aka 1.4).
> are
> > > you sure this is what you are using? to be it sounds like you are using
> > > Yocto/danny with meta-ti and meta-oe 'master' branch (or dylan branch).
> > >
> > >
> > > *ERROR: Command execution failed: Exited with 1
> > >>
> > >> Summary: There was 1 WARNING message shown.
> > >> Summary: There were 2 ERROR messages shown, returning a non-zero exit
> > >> code.
> > >> *
> > >> What is the mistake, sounds too silly.!
> > >
> > >
> > >
> > >
> > > _______________________________________________
> > > yocto mailing list
> > > yocto@yoctoproject.org
> > > https://lists.yoctoproject.org/listinfo/yocto
> > >
> > >
>
> > _______________________________________________
> > meta-ti mailing list
> > meta-ti@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/meta-ti
>
>

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

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

end of thread, other threads:[~2013-06-15  0:33 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-04 19:41 yocto with meta-ti Edward Vidal
2013-06-05  5:55 ` Akshay Sahota
2013-06-05  6:05   ` Nicolas Dechesne
2013-06-13  9:52     ` [yocto] " Sudhangathan B S
2013-06-13 18:28       ` Denys Dmytriyenko
2013-06-15  0:33         ` Sudhangathan B S
2013-06-13 18:23     ` Denys Dmytriyenko

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.