All of lore.kernel.org
 help / color / mirror / Atom feed
* meta-raspberrypi issue
@ 2017-02-01 16:08 Usman Haider
  2017-02-01 17:24 ` Khem Raj
  0 siblings, 1 reply; 4+ messages in thread
From: Usman Haider @ 2017-02-01 16:08 UTC (permalink / raw)
  To: yocto

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

Hi,

I am new to yocto and just started working on it. I am having issue
with meta-raspberrypi. I did inside poky

$ git checkout -b work_branch -t origin/daisy

$ git clone git://git.yoctoproject.org/meta-raspberrypi

$ source oe-init-build-env rpi-build

updated the local.conf and bblayer.conf files inside rpi-build

In local.conf

BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
MACHINE ?= "raspberrypi"

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

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

BBLAYERS ?= " \
  /home/vm/poky/meta \
  /home/vm/poky/meta-yocto \
  /home/vm/poky/meta-yocto-bsp \
  /home/vm/poky/meta-raspberrypi \
  "
BBLAYERS_NON_REMOVABLE ?= " \
  /home/vm/poky/meta \
  /home/vm/poky/meta-yocto \
  "

When I run bitbake rpi-basic-image, I get following


*********************************

vm@sdr-vm:~/poky/rpi-build$ bitbake rpi-basic-image
WARNING: Host distribution "Ubuntu-16.04" 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.
Parsing recipes: 100% |#########################################| Time:
00:02:37
Parsing of 882 .bb files complete (0 cached, 882 parsed). 1241 targets, 63
skipped, 0 masked, 0 errors.
ERROR: No recipes available for:

/home/vm/poky/meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.10%.bbappend

/home/vm/poky/meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.2.0.bbappend
ERROR: Command execution failed: Exited with 1

*************************************

What could be the issue?

--
Usman

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

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

* Re: meta-raspberrypi issue
  2017-02-01 16:08 meta-raspberrypi issue Usman Haider
@ 2017-02-01 17:24 ` Khem Raj
  2017-02-08 12:09   ` Gary Thomas
  0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2017-02-01 17:24 UTC (permalink / raw)
  To: yocto



On 2/1/17 8:08 AM, Usman Haider wrote:
> Hi,
> 
> I am new to yocto and just started working on it. I am having issue
> with meta-raspberrypi. I did inside poky
> 
> $ git checkout -b work_branch -t origin/daisy
> 
> $ git clone git://git.yoctoproject.org/meta-raspberrypi
> <http://git.yoctoproject.org/meta-raspberrypi>
> 

you need to checkout daisy branch of meta-raspberrypi as well.

> $ source oe-init-build-env rpi-build
> 
> updated the local.conf and bblayer.conf files inside rpi-build
> 
> In local.conf
> 
> BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
> PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
> MACHINE ?= "raspberrypi"
> 
> In bblayer.conf
> # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
> # changes incompatibly
> LCONF_VERSION = "6"
> 
> BBPATH = "${TOPDIR}"
> BBFILES ?= ""
> 
> BBLAYERS ?= " \
>   /home/vm/poky/meta \
>   /home/vm/poky/meta-yocto \
>   /home/vm/poky/meta-yocto-bsp \
>   /home/vm/poky/meta-raspberrypi \
>   "
> BBLAYERS_NON_REMOVABLE ?= " \
>   /home/vm/poky/meta \
>   /home/vm/poky/meta-yocto \
>   "
> 
> When I run bitbake rpi-basic-image, I get following
> 
> 
> *********************************
> 
> vm@sdr-vm:~/poky/rpi-build$ bitbake rpi-basic-image
> WARNING: Host distribution "Ubuntu-16.04" 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.
> Parsing recipes: 100% |#########################################| Time:
> 00:02:37
> Parsing of 882 .bb files complete (0 cached, 882 parsed). 1241 targets,
> 63 skipped, 0 masked, 0 errors.
> ERROR: No recipes available for:
>  
> /home/vm/poky/meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.10%.bbappend
>  
> /home/vm/poky/meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.2.0.bbappend
> ERROR: Command execution failed: Exited with 1
> 
> *************************************
> 
> What could be the issue?
> 
> --
> Usman
> 
> 


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

* Re: meta-raspberrypi issue
  2017-02-01 17:24 ` Khem Raj
@ 2017-02-08 12:09   ` Gary Thomas
  2017-02-09 16:44     ` Usman Haider
  0 siblings, 1 reply; 4+ messages in thread
From: Gary Thomas @ 2017-02-08 12:09 UTC (permalink / raw)
  To: yocto

On 2017-02-01 18:24, Khem Raj wrote:
>
>
> On 2/1/17 8:08 AM, Usman Haider wrote:
>> Hi,
>>
>> I am new to yocto and just started working on it. I am having issue
>> with meta-raspberrypi. I did inside poky
>>
>> $ git checkout -b work_branch -t origin/daisy
>>
>> $ git clone git://git.yoctoproject.org/meta-raspberrypi
>> <http://git.yoctoproject.org/meta-raspberrypi>
>>
>
> you need to checkout daisy branch of meta-raspberrypi as well.

That said, daisy is REALLY OLD.  You'd probably be much better off with
something recent, e.g. morty.

>
>> $ source oe-init-build-env rpi-build
>>
>> updated the local.conf and bblayer.conf files inside rpi-build
>>
>> In local.conf
>>
>> BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
>> PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
>> MACHINE ?= "raspberrypi"
>>
>> In bblayer.conf
>> # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
>> # changes incompatibly
>> LCONF_VERSION = "6"
>>
>> BBPATH = "${TOPDIR}"
>> BBFILES ?= ""
>>
>> BBLAYERS ?= " \
>>   /home/vm/poky/meta \
>>   /home/vm/poky/meta-yocto \
>>   /home/vm/poky/meta-yocto-bsp \
>>   /home/vm/poky/meta-raspberrypi \
>>   "
>> BBLAYERS_NON_REMOVABLE ?= " \
>>   /home/vm/poky/meta \
>>   /home/vm/poky/meta-yocto \
>>   "
>>
>> When I run bitbake rpi-basic-image, I get following
>>
>>
>> *********************************
>>
>> vm@sdr-vm:~/poky/rpi-build$ bitbake rpi-basic-image
>> WARNING: Host distribution "Ubuntu-16.04" 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.
>> Parsing recipes: 100% |#########################################| Time:
>> 00:02:37
>> Parsing of 882 .bb files complete (0 cached, 882 parsed). 1241 targets,
>> 63 skipped, 0 masked, 0 errors.
>> ERROR: No recipes available for:
>>
>> /home/vm/poky/meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.10%.bbappend
>>
>> /home/vm/poky/meta-raspberrypi/recipes-multimedia/gstreamer/gstreamer1.0-omx_1.2.0.bbappend
>> ERROR: Command execution failed: Exited with 1
>>
>> *************************************
>>
>> What could be the issue?
>>
>> --
>> Usman
>>
>>


-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: meta-raspberrypi issue
  2017-02-08 12:09   ` Gary Thomas
@ 2017-02-09 16:44     ` Usman Haider
  0 siblings, 0 replies; 4+ messages in thread
From: Usman Haider @ 2017-02-09 16:44 UTC (permalink / raw)
  To: Gary Thomas; +Cc: yocto

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

Thanks,

I'll definitely move to morty. I was following I guide that uses daisy.

--
Usman

On Wed, Feb 8, 2017 at 5:09 PM, Gary Thomas <gary@mlbassoc.com> wrote:

> On 2017-02-01 18:24, Khem Raj wrote:
>
>>
>>
>> On 2/1/17 8:08 AM, Usman Haider wrote:
>>
>>> Hi,
>>>
>>> I am new to yocto and just started working on it. I am having issue
>>> with meta-raspberrypi. I did inside poky
>>>
>>> $ git checkout -b work_branch -t origin/daisy
>>>
>>> $ git clone git://git.yoctoproject.org/meta-raspberrypi
>>> <http://git.yoctoproject.org/meta-raspberrypi>
>>>
>>>
>> you need to checkout daisy branch of meta-raspberrypi as well.
>>
>
> That said, daisy is REALLY OLD.  You'd probably be much better off with
> something recent, e.g. morty.
>
>
>
>> $ source oe-init-build-env rpi-build
>>>
>>> updated the local.conf and bblayer.conf files inside rpi-build
>>>
>>> In local.conf
>>>
>>> BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
>>> PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count()}"
>>> MACHINE ?= "raspberrypi"
>>>
>>> In bblayer.conf
>>> # LAYER_CONF_VERSION is increased each time build/conf/bblayers.conf
>>> # changes incompatibly
>>> LCONF_VERSION = "6"
>>>
>>> BBPATH = "${TOPDIR}"
>>> BBFILES ?= ""
>>>
>>> BBLAYERS ?= " \
>>>   /home/vm/poky/meta \
>>>   /home/vm/poky/meta-yocto \
>>>   /home/vm/poky/meta-yocto-bsp \
>>>   /home/vm/poky/meta-raspberrypi \
>>>   "
>>> BBLAYERS_NON_REMOVABLE ?= " \
>>>   /home/vm/poky/meta \
>>>   /home/vm/poky/meta-yocto \
>>>   "
>>>
>>> When I run bitbake rpi-basic-image, I get following
>>>
>>>
>>> *********************************
>>>
>>> vm@sdr-vm:~/poky/rpi-build$ bitbake rpi-basic-image
>>> WARNING: Host distribution "Ubuntu-16.04" 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.
>>> Parsing recipes: 100% |#########################################| Time:
>>> 00:02:37
>>> Parsing of 882 .bb files complete (0 cached, 882 parsed). 1241 targets,
>>> 63 skipped, 0 masked, 0 errors.
>>> ERROR: No recipes available for:
>>>
>>> /home/vm/poky/meta-raspberrypi/recipes-multimedia/gstreamer/
>>> gstreamer1.0-omx_1.10%.bbappend
>>>
>>> /home/vm/poky/meta-raspberrypi/recipes-multimedia/gstreamer/
>>> gstreamer1.0-omx_1.2.0.bbappend
>>> ERROR: Command execution failed: Exited with 1
>>>
>>> *************************************
>>>
>>> What could be the issue?
>>>
>>> --
>>> Usman
>>>
>>>
>>>
>
> --
> ------------------------------------------------------------
> Gary Thomas                 |  Consulting for the
> MLB Associates              |    Embedded world
> ------------------------------------------------------------
>
> --
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>

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

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

end of thread, other threads:[~2017-02-09 16:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-01 16:08 meta-raspberrypi issue Usman Haider
2017-02-01 17:24 ` Khem Raj
2017-02-08 12:09   ` Gary Thomas
2017-02-09 16:44     ` Usman Haider

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.