[yocto] bitbak command: No recipe available for

2019-06-26 Thread danwe
while using the command:
daniel@daniel-VirtualBox:~/bbb$ MACHINE=beaglebone bitbake core-immage-full
cmdline I get the following ouput:


Loading cache: 100% || Time:
0:00:03

Loaded 1358 entries from dependency cache.

Parsing recipes: 100% |##| Time:
0:00:12

Parsing of 832 .bb files complete (829 cached, 3 parsed). 1361 targets, 65
skipped, 0 masked, 0 errors.

ERROR: No recipes available for:

  /home/daniel/meta-bbb/recipes-connectivity/openssh/openssh_7.%.bbappend

  /home/daniel/meta-bbb/recipes-qt/qt5/qtbase_git.bbappend

  /home/daniel/meta-bbb/recipes-support/ntp/ntp_4.2.%.bbappend



Summary: There was 1 ERROR message shown, returning a non-zero exit code.


How can I solve this?

Thanks.

Daniel
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] bitbak command: No recipe available for

2019-06-27 Thread danwe
Hi,

thank you very much. So now I don't get errors but warnings. So for what do
I need those .bbappend files? Are you sure there will be no problems later?

Thanks.

Daniel

Am Do., 27. Juni 2019 um 09:18 Uhr schrieb ChenQi :

> Set the following in some conf file, e.g. distro.conf, local.conf.
> BB_DANGLINGAPPENDS_WARNONLY = "true"
>
> Best Regards,
> Chen Qi
>
> On 06/27/2019 02:31 PM, danwe wrote:
>
> while using the command:
> daniel@daniel-VirtualBox:~/bbb$ MACHINE=beaglebone bitbake
> core-immage-full cmdline I get the following ouput:
> 
>
> Loading cache: 100% || Time:
> 0:00:03
>
> Loaded 1358 entries from dependency cache.
>
> Parsing recipes: 100% |##| Time:
> 0:00:12
>
> Parsing of 832 .bb files complete (829 cached, 3 parsed). 1361 targets, 65
> skipped, 0 masked, 0 errors.
>
> ERROR: No recipes available for:
>
>   /home/daniel/meta-bbb/recipes-connectivity/openssh/openssh_7.%.bbappend
>
>   /home/daniel/meta-bbb/recipes-qt/qt5/qtbase_git.bbappend
>
>   /home/daniel/meta-bbb/recipes-support/ntp/ntp_4.2.%.bbappend
>
>
>
> Summary: There was 1 ERROR message shown, returning a non-zero exit code.
> 
>
> How can I solve this?
>
> Thanks.
>
> Daniel
>
>
>
> --
> ___
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] bitbak command: No recipe available for

2019-06-27 Thread danwe
Hi.
Thank you. Could you tell me how I can ensure that these are on the same
branch? There is just one meta-bbb I can download...

Am Do., 27. Juni 2019 um 09:37 Uhr schrieb Burton, Ross <
ross.bur...@intel.com>:

> The problem is that oe-core and meta-bbb are different releases so the
> versions don't match up.  Ensure that oe-core and meta-bbb are on the
> same branch.
>
> Ross
>
> On Thu, 27 Jun 2019 at 07:33, danwe  wrote:
> >
> > while using the command:
> > daniel@daniel-VirtualBox:~/bbb$ MACHINE=beaglebone bitbake
> core-immage-full cmdline I get the following ouput:
> > 
> >
> > Loading cache: 100% || Time:
> 0:00:03
> >
> > Loaded 1358 entries from dependency cache.
> >
> > Parsing recipes: 100% |##| Time:
> 0:00:12
> >
> > Parsing of 832 .bb files complete (829 cached, 3 parsed). 1361 targets,
> 65 skipped, 0 masked, 0 errors.
> >
> > ERROR: No recipes available for:
> >
> >   /home/daniel/meta-bbb/recipes-connectivity/openssh/openssh_7.%.bbappend
> >
> >   /home/daniel/meta-bbb/recipes-qt/qt5/qtbase_git.bbappend
> >
> >   /home/daniel/meta-bbb/recipes-support/ntp/ntp_4.2.%.bbappend
> >
> >
> >
> > Summary: There was 1 ERROR message shown, returning a non-zero exit code.
> >
> > 
> >
> > How can I solve this?
> >
> > Thanks.
> >
> > Daniel
> > --
> > ___
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


[yocto] Copying the binaries to an SD card after bulding with Yocto

2019-06-28 Thread danwe
Hi,

I have successfully build BeagleBone systems with Yocto.
I have used this site:
https://jumpnowtek.com/beaglebone/BeagleBone-Systems-with-Yocto.html

Now I need to copy the binaries to an SD card and have a question to the
following:
In the instruction I can read the following:
``
This *copy_boot.sh* script needs to know the TMPDIR to find the binaries.
It looks for an environment variable called OETMP.

For instance, if I had this in the local.conf

TMPDIR = "/oe7/bbb/tmp-warrior"

Then I would export this environment variable before running copy_boot.sh

~/bbb/meta-bbb/scripts$ export OETMP=/oe7/bbb/tmp-warrior

Then run the copy_boot.sh script passing the location of SD card
~/bbb/meta-bbb/scripts$ ./copy_boot.sh sdb
```

I did that but it shows me the following error:
OETMP: /oe7/bbb/tmp-warrior
Directory not found: /oe7/bbb/tmp-warrior/deploy/images/beaglebone

So my question is if I need to uncomment TMPDIR = "/oe7/bbb/tmp-warrior" in
my local.conf when doing this or not? --> I tried both.

So my copy_boot.sh looks for an environment variable called OETMP. And
OETMP should know the TMPDIR (directory). But what should I export?

Thanks.

Daniel
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] Copying the binaries to an SD card after bulding with Yocto

2019-06-28 Thread danwe
I have just asked that question because I built with Yocto and thought that
someone had this problem before or did use my written website.
So I don't really understand what the diretory: /oe7/bbb/tmp-warrior is
used for because I do not see it...

Thanks.

Daniel

Am Fr., 28. Juni 2019 um 16:01 Uhr schrieb Zoran Stojsavljevic <
zoran.stojsavlje...@gmail.com>:

> >> ~/bbb/meta-bbb/scripts$ export OETMP=/oe7/bbb/tmp-warrior
> >> Then run the copy_boot.sh script passing the location of SD card
>
> I forgot how inheritance schema works with shells. When you run
> copy_boot.sh script, it'll spawn for you new shell, and, IIRC, it
> should inherit OETMP from parent shell. You can try to experiment, and
> export OETMP command embed into copy_boot.sh file/script, and see what
> is happening. You also can, as first command after #!/bin/bash, to
> issue env command, and see what variables you have inherited from
> parent shell.
>
> In my opinion, this problem has very little to do with YOCTO building
> system... Am I really (!) correct?
>
> Zoran
> ___
>
> On Fri, Jun 28, 2019 at 3:42 PM danwe 
> wrote:
> >
> > Hi,
> >
> > I have successfully build BeagleBone systems with Yocto.
> > I have used this site:
> > https://jumpnowtek.com/beaglebone/BeagleBone-Systems-with-Yocto.html
> >
> > Now I need to copy the binaries to an SD card and have a question to the
> following:
> > In the instruction I can read the following:
> > ``
> > This copy_boot.sh script needs to know the TMPDIR to find the binaries.
> It looks for an environment variable called OETMP.
> >
> > For instance, if I had this in the local.conf
> >
> > TMPDIR = "/oe7/bbb/tmp-warrior"
> >
> > Then I would export this environment variable before running copy_boot.sh
> >
> > ~/bbb/meta-bbb/scripts$ export OETMP=/oe7/bbb/tmp-warrior
> >
> > Then run the copy_boot.sh script passing the location of SD card
> >
> > ~/bbb/meta-bbb/scripts$ ./copy_boot.sh sdb
> > ```
> >
> > I did that but it shows me the following error:
> > OETMP: /oe7/bbb/tmp-warrior
> > Directory not found: /oe7/bbb/tmp-warrior/deploy/images/beaglebone
> >
> > So my question is if I need to uncomment TMPDIR = "/oe7/bbb/tmp-warrior"
> in my local.conf when doing this or not? --> I tried both.
> >
> > So my copy_boot.sh looks for an environment variable called OETMP. And
> OETMP should know the TMPDIR (directory). But what should I export?
> >
> > Thanks.
> >
> > Daniel
> >
> > --
> > ___
> > yocto mailing list
> > yocto@yoctoproject.org
> > https://lists.yoctoproject.org/listinfo/yocto
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto


Re: [yocto] bitbak command: No recipe available for

2019-07-08 Thread danwe
Hi,

while using the command:
daniel@daniel-VirtualBox:~/bbb$ MACHINE=beaglebone bitbake core-immage-full
cmdline
I get the following ouput:


Loading cache: 100% || Time:
0:00:03

Loaded 1358 entries from dependency cache.

Parsing recipes: 100% |##| Time:
0:00:12

Parsing of 832 .bb files complete (829 cached, 3 parsed). 1361 targets, 65
skipped, 0 masked, 0 errors.

ERROR: No recipes available for:

  /home/daniel/meta-bbb/recipes-connectivity/openssh/openssh_7.%.bbappend

  /home/daniel/meta-bbb/recipes-qt/qt5/qtbase_git.bbappend

  /home/daniel/meta-bbb/recipes-support/ntp/ntp_4.2.%.bbappend



Summary: There was 1 ERROR message shown, returning a non-zero exit code.


How can I solve this?

Thanks.

Daniel

Am Mi., 26. Juni 2019 um 17:11 Uhr schrieb danwe <
daniel.wenninge...@gmail.com>:

> Hi,
>
> while using the command:
> daniel@daniel-VirtualBox:~/bbb$ MACHINE=beaglebone bitbake
> core-immage-full cmdline I get the following ouput:
> 
>
> Loading cache: 100% || Time:
> 0:00:03
>
> Loaded 1358 entries from dependency cache.
>
> Parsing recipes: 100% |##| Time:
> 0:00:12
>
> Parsing of 832 .bb files complete (829 cached, 3 parsed). 1361 targets, 65
> skipped, 0 masked, 0 errors.
>
> ERROR: No recipes available for:
>
>   /home/daniel/meta-bbb/recipes-connectivity/openssh/openssh_7.%.bbappend
>
>   /home/daniel/meta-bbb/recipes-qt/qt5/qtbase_git.bbappend
>
>   /home/daniel/meta-bbb/recipes-support/ntp/ntp_4.2.%.bbappend
>
>
>
> Summary: There was 1 ERROR message shown, returning a non-zero exit code.
> 
>
> How can I solve this?
>
> Thanks.
>
> Daniel
>
-- 
___
yocto mailing list
yocto@yoctoproject.org
https://lists.yoctoproject.org/listinfo/yocto