Re: [OE-core] How to integrate third party application software to yocto image

2016-03-02 Thread winiston

Hi,

I am new to this community.What does mean top post? Please see my 
bblayers.conf file content.


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

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

BBLAYERS ?= " \
 /home/winiston/poky/meta \
 /home/winiston/poky/meta-yocto \
 /home/winiston/poky/meta-yocto-bsp \
 /home/winiston/poky/meta-ti \
 /home/winiston/poky/meta-oe \
 /home/winiston/poky/meta-multimedia \
 /home/winiston/poky/meta-qt5 \
 "
BBLAYERS_NON_REMOVABLE ?= " \
 /home/winiston/poky/meta \
 /home/winiston/poky/meta-yocto \
 "
#added by hob
BBFILES += "${TOPDIR}/recipes/images/custom/*.bb"
#added by hob
BBFILES += "${TOPDIR}/recipes/images/*.bb"


I have copied  meta-oe , meta-multimedia and meta-qt5 from meta-openembedded 
to  /home/winiston/poky.


It spits out the same error. Log output as given below.

winiston@winiston-VirtualBox:~/poky/build$ bitbake core-image-base
Parsing recipes: 100% || Time: 19:17:59
Parsing of 1760 .bb files complete (0 cached, 1760 parsed). 2285 targets, 
196 skipped, 0 masked, 0 errors.

NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'navit' (but 
/home/winiston/poky/meta/recipes-core/images/core-image-base.bb RDEPENDS on 
or otherwise requires it)
ERROR: navit was skipped: Recipe is blacklisted: bluez5 conflicts with 
bluez4 and bluez5 is selected in DISTRO_FEATURES

NOTE: Runtime target 'navit' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['navit']
ERROR: Required build target 'core-image-base' has no buildable providers.
Missing or unbuildable dependency chain was: ['core-image-base', 'navit']

Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
winiston@winiston-VirtualBox:~/poky/build$


1. What could be the problem? Since I could not proceed my project, Kindly 
help me to solve this issue.




Regards,
Winiston.P
Futura Automation Pvt Ltd.

Ph :91-80-28375290 / 28375295
Fax :91-80-28375291
-Original Message- 
From: Anders Darander

Sent: Friday, February 26, 2016 3:03 PM
To: openembedded-core@lists.openembedded.org ; yocto texas ; Yocto layer
Subject: Re: [OE-core] How to integrate third party application software to 
yocto image


Hi,

Please, don't top post.

* winis...@futuraautomation.com  [160226 
06:41]:
I copied "recipes-navigation" folder from meta-oe (Open embedded build 
tree) to "/poky/meta "



I have appended  in “conf/local.conf”  as given below



IMAGE_INSTALL_append = " navit"



While creating the image, it spits out the following error,



winiston@winiston-VirtualBox:~/poky/build$ bitbake qt4e-demo-image
Loading cache: 100% |##| ETA:  00:00:00
Loaded 1510 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'navit' (but 
/home/winiston/poky/meta/recipes-qt/images/qt4e-demo-image.bb RDEPENDS on 
or otherwise requires it)
ERROR: navit was skipped: Recipe is blacklisted: bluez5 conflicts with 
bluez4 and bluez5 is selected in DISTRO_FEATURES


This is the error. You have bluez5 in your DITRO_FEATURES, and I assume
that navit requires bluez4? Anywya, it's blacklisted.


NOTE: Runtime target 'navit' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['navit']
ERROR: Required build target 'qt4e-demo-image' has no buildable providers.
Missing or unbuildable dependency chain was: ['qt4e-demo-image', 'navit']


Summary: There were 2 ERROR messages shown, returning a non-zero exit 
code.

winiston@winiston-VirtualBox:~/poky/build$



Should I make any other setting to add the “navit” recipe to my image?
Is this the correct method of copying  "recipes-navigation" folder  to
"/poky/meta "  ?


Well, it works. If you don't mind the rest of meta-oe, I'd rather add
that layer to conf/bblayers.conf. That would make it easier to get
updates to e.g. navit.

Cheers,
Anders

--
Anders Darander, Senior System Architect
ChargeStorm AB / eStorm AB
--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core 


--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] How to integrate third party application software to yocto image

2016-02-26 Thread Anders Darander
Hi,

Please, don't top post.

* winis...@futuraautomation.com  [160226 06:41]:
> I copied "recipes-navigation" folder from meta-oe (Open embedded build tree) 
> to "/poky/meta "

> I have appended  in “conf/local.conf”  as given below

> IMAGE_INSTALL_append = " navit"

> While creating the image, it spits out the following error,

> winiston@winiston-VirtualBox:~/poky/build$ bitbake qt4e-demo-image
> Loading cache: 100% |##| ETA:  00:00:00
> Loaded 1510 entries from dependency cache.
> NOTE: Resolving any missing task queue dependencies
> ERROR: Nothing RPROVIDES 'navit' (but 
> /home/winiston/poky/meta/recipes-qt/images/qt4e-demo-image.bb RDEPENDS on or 
> otherwise requires it)
> ERROR: navit was skipped: Recipe is blacklisted: bluez5 conflicts with bluez4 
> and bluez5 is selected in DISTRO_FEATURES

This is the error. You have bluez5 in your DITRO_FEATURES, and I assume
that navit requires bluez4? Anywya, it's blacklisted.

> NOTE: Runtime target 'navit' is unbuildable, removing...
> Missing or unbuildable dependency chain was: ['navit']
> ERROR: Required build target 'qt4e-demo-image' has no buildable providers.
> Missing or unbuildable dependency chain was: ['qt4e-demo-image', 'navit']

> Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
> winiston@winiston-VirtualBox:~/poky/build$ 

> Should I make any other setting to add the “navit” recipe to my image?
> Is this the correct method of copying  "recipes-navigation" folder  to
> "/poky/meta "  ? 

Well, it works. If you don't mind the rest of meta-oe, I'd rather add
that layer to conf/bblayers.conf. That would make it easier to get
updates to e.g. navit.

Cheers,
Anders

-- 
Anders Darander, Senior System Architect
ChargeStorm AB / eStorm AB
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] How to integrate third party application software to yocto image

2016-02-25 Thread winiston
Hi Ross,

I copied "recipes-navigation" folder from meta-oe (Open embedded build tree) to 
"/poky/meta "

I have appended  in “conf/local.conf”  as given below

IMAGE_INSTALL_append = " navit"

While creating the image, it spits out the following error,

winiston@winiston-VirtualBox:~/poky/build$ bitbake qt4e-demo-image
Loading cache: 100% |##| ETA:  00:00:00
Loaded 1510 entries from dependency cache.
NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'navit' (but 
/home/winiston/poky/meta/recipes-qt/images/qt4e-demo-image.bb RDEPENDS on or 
otherwise requires it)
ERROR: navit was skipped: Recipe is blacklisted: bluez5 conflicts with bluez4 
and bluez5 is selected in DISTRO_FEATURES
NOTE: Runtime target 'navit' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['navit']
ERROR: Required build target 'qt4e-demo-image' has no buildable providers.
Missing or unbuildable dependency chain was: ['qt4e-demo-image', 'navit']

Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
winiston@winiston-VirtualBox:~/poky/build$ 

Should I make any other setting to add the “navit” recipe to my image?  Is this 
the correct method of copying  "recipes-navigation" folder  to "/poky/meta "  ?
Kindly help me to resolve this error.


Regards,
Winiston.P
Futura Automation Pvt Ltd.

Ph :91-80-28375290 / 28375295
Fax :91-80-28375291


From: Burton, Ross 
Sent: Thursday, February 25, 2016 6:22 PM
To: winis...@futuraautomation.com 
Cc: Maxin B. John ; yocto texas ; Yocto layer ; OpenEmbedded core 
Subject: Re: [OE-core] How to integrate third party application software to 
yocto image


On 25 February 2016 at 12:51,  wrote:

  IMAGE_INSTALL_append = " navit_svn"


The recipe is called navit, _svn is the version.  Just append " navit".

Ross-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] How to integrate third party application software to yocto image

2016-02-25 Thread Burton, Ross
On 25 February 2016 at 12:51,  wrote:

> IMAGE_INSTALL_append = " navit_svn"
>

The recipe is called navit, _svn is the version.  Just append " navit".

Ross
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] How to integrate third party application software to yocto image

2016-02-25 Thread winiston

Hi Maxin,

I copied "recipes-navigation" folder from meta-oe (Open embedded build tree) 
to "/poky/meta " . Then I have added the below line in  "/conf/local.conf" 
as given below.


IMAGE_INSTALL_append = " navit_svn"

Then I used bitbake to build the image. It spits out the following errors,

winiston@winiston-VirtualBox:~/poky/build$ bitbake qt4e-demo-image
Parsing recipes: 100% || Time: 00:01:35
Parsing of 1073 .bb files complete (0 cached, 1073 parsed). 1509 targets, 
143 skipped, 0 masked, 0 errors.

NOTE: Resolving any missing task queue dependencies
ERROR: Nothing RPROVIDES 'navit_svn' (but 
/home/winiston/poky/meta/recipes-qt/images/qt4e-demo-image.bb RDEPENDS on or 
otherwise requires it)

NOTE: Runtime target 'navit_svn' is unbuildable, removing...
Missing or unbuildable dependency chain was: ['navit_svn']
ERROR: Required build target 'qt4e-demo-image' has no buildable providers.
Missing or unbuildable dependency chain was: ['qt4e-demo-image', 
'navit_svn']


Summary: There were 2 ERROR messages shown, returning a non-zero exit code.
winiston@winiston-VirtualBox:~/poky/build$

What could be the problem? Where I have done the mistake ?


Regards,
Winiston.P
Futura Automation Pvt Ltd.

Ph :91-80-28375290 / 28375295
Fax :91-80-28375291
-Original Message- 
From: Maxin B. John

Sent: Wednesday, February 24, 2016 7:41 PM
To: winis...@futuraautomation.com
Cc: OpenEmbedded core ; Yocto layer ; yocto texas
Subject: Re: [OE-core] How to integrate third party application software to 
yocto image


Hi Winiston,

On Wed, Feb 24, 2016 at 06:20:14PM +0530, winis...@futuraautomation.com 
wrote:



--
Hi,

I can build yocto image for arm based product like AM437x-evm using yocto 
project. I want to add third party software(Navit) to my image.


How can I add the third party software to my image ?. Can you provide me 
the steps to integrate third party software with yocto image ?


Please read this documentation:
http://www.yoctoproject.org/docs/1.4.2/dev-manual/dev-manual.html#usingpoky-extend-addpkg

  Note: Navit is a navigation software and it supports arm based product 
like AM437x.




In the case of Navit, recipe is already available in meta-oe layer:
http://cgit.openembedded.org/cgit.cgi/meta-openembedded/tree/meta-oe/recipes-navigation/navit/navit_svn.bb?h=master


   Host system: Ubuntu 14.04
   Target system : AM437x-evm


 Regards,
 Winiston.P
 Futura Automation Pvt Ltd.


Best Regards,
Maxin 


--
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


Re: [OE-core] How to integrate third party application software to yocto image

2016-02-24 Thread Maxin B. John
Hi Winiston,

On Wed, Feb 24, 2016 at 06:20:14PM +0530, winis...@futuraautomation.com wrote:

> -- 
>Hi,
> 
> I can build yocto image for arm based product like AM437x-evm using yocto 
> project. I want to add third party software(Navit) to my image.
>  
> How can I add the third party software to my image ?. Can you provide me the 
> steps to integrate third party software with yocto image ?

Please read this documentation:
http://www.yoctoproject.org/docs/1.4.2/dev-manual/dev-manual.html#usingpoky-extend-addpkg

>   Note: Navit is a navigation software and it supports arm based product like 
> AM437x. 
>

In the case of Navit, recipe is already available in meta-oe layer:
http://cgit.openembedded.org/cgit.cgi/meta-openembedded/tree/meta-oe/recipes-navigation/navit/navit_svn.bb?h=master

>Host system: Ubuntu 14.04
>Target system : AM437x-evm
> 
>  
>  Regards,
>  Winiston.P
>  Futura Automation Pvt Ltd.

Best Regards,
Maxin
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core


[OE-core] How to integrate third party application software to yocto image

2016-02-24 Thread winiston
Hi,

I can build yocto image for arm based product like AM437x-evm using yocto 
project. I want to add third party software(Navit) to my image.

How can I add the third party software to my image ?. Can you provide me the 
steps to integrate third party software with yocto image ?

Note: Navit is a navigation software and it supports arm based product like 
AM437x. 

Host system: Ubuntu 14.04
Target system : AM437x-evm


Regards,
Winiston.P
Futura Automation Pvt Ltd.

Ph :91-80-28375290 / 28375295
Fax :91-80-28375291
-- 
___
Openembedded-core mailing list
Openembedded-core@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-core