Re: [yocto] Package inclusion

2015-10-16 Thread Paul Eggleton
On Thursday 15 October 2015 18:03:13 Carlos Sánchez de La Lama wrote: > Hi all, > > I have some doubts on how package inclusion in images is determined. For > example, when building core-image-base, I would say that both > > kernel-module-uvesafb > kernel-module-input > > are recommended (throug

[yocto] Queries regarding yocto dual booting

2015-10-16 Thread Debasmita Lohar
Hello, I am using De2i-150 board which provides a yocto iso. I have installed puppy linux before yocto and now I want to install yocto in the unallocated portion. Basically I want dual booting. But when I tried to install yocto, it just started from the live cd and did not show me any install optio

Re: [yocto] Package inclusion

2015-10-16 Thread Carlos Sánchez de La Lama
Hi Paul, >> I have some doubts on how package inclusion in images is determined. For >> example, when building core-image-base, I would say that both >> >> kernel-module-uvesafb >> kernel-module-input >> >> are recommended (through RRECOMENDS in packagegroup-base). > > I don't see a reference to

Re: [yocto] Package inclusion

2015-10-16 Thread Paul Eggleton
On Friday 16 October 2015 09:38:56 Carlos Sánchez de La Lama wrote: > Hi Paul, > > >> I have some doubts on how package inclusion in images is determined. For > >> example, when building core-image-base, I would say that both > >> > >> kernel-module-uvesafb > >> kernel-module-input > >> > >> are

[yocto] Not able to preserve a variable across two python functions in bbclass

2015-10-16 Thread Reshetova, Elena
Hi, I am having a very stupid issue, which I can't figure out. I am setting my own variable from one python function (via d.setVar) and then attempting to read it from another python function (via d.getVar). Both functions are in the same bbclass. However, result of reading is always empty. B

Re: [yocto] Not able to preserve a variable across two python functions in bbclass

2015-10-16 Thread Paul Eggleton
Hi Elena, On Friday 16 October 2015 09:52:28 Reshetova, Elena wrote: > I am having a very stupid issue, which I can't figure out. I am setting my > own variable from one python function (via d.setVar) and then attempting to > read it from another python function (via d.getVar). Both functions are

Re: [yocto] Not able to preserve a variable across two python functions in bbclass

2015-10-16 Thread Reshetova, Elena
>I'm afraid not, other than dependency relationships, task functions are executed independently and thus have their own scope. The way to do this sort of thing is to set the variable in the parent scope i.e. the recipe level (or above that, the configuration level). Thank you for your reply Paul

[yocto] opkg 0.3.0 or rootfs task

2015-10-16 Thread Ahsan, Noor
Hello, I noticed that at the time of rootfs creation symbolic links of the ipk files present in deploy/ipk. The problem what have it while creation of symbolic link it take the full path till that ipk and remove slashes and convert them into underscores. Use that as the name of the symbolic lin

Re: [yocto] meta-raspberrypi no soud output

2015-10-16 Thread Alex J Lennon
On 15/10/2015 16:57, Edward Vidal wrote: > Hello All, > Does any have snd working on Raspberry Pi 2B? > > I have tried aplay speech_dft.wav > PLAYING WAVE: 'speech_dft.wav' : Signed 16 bit Little Endian, rate > 22050 Hz Mono > with ear plugs or speaker no snd. > Any and all help appreciated. >

[yocto] [meta-java] openjdk-7-jre was skipped: missing required distro feature ['x11'] (not in DISTRO_FEATURES)

2015-10-16 Thread Federico Pietro Briata
Hi Folks, I'm trying to compile java without x11 and unfortunately also without success.. I've added in my local.conf: DISTRO_FEATURES_remove = "x11" # Java build settings PREFERRED_PROVIDER_virtual/java-native = "jamvm-native" PREFERRED_PROVIDER_virtual/javac-native = "ecj-bootstrap-native" PREF

[yocto] [meta-java] can zero shark be enabled again?

2015-10-16 Thread Federico Pietro Briata
Hi again, I saw that some JIT optimization for arm32 has been announcement in icedtea the announcement is available at http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2015-January/030392.html So I'm just wondering if anyone know if shark can be enabled again also in yocto recipes and can s

Re: [yocto] [meta-java] openjdk-7-jre was skipped: missing required distro feature ['x11'] (not in DISTRO_FEATURES)

2015-10-16 Thread Maxin B. John
Hi, On Fri, Oct 16, 2015 at 03:35:22PM +0200, Federico Pietro Briata wrote: > >Hi Folks, >I'm trying to compile java without x11 and unfortunately also without success.. > >I've added in my local.conf: > >DISTRO_FEATURES_remove = "x11" ># Java build settings >PREFERRED_PROVIDER_virtual/java-native

Re: [yocto] [meta-java] openjdk-7-jre was skipped: missing required distro feature ['x11'] (not in DISTRO_FEATURES)

2015-10-16 Thread Jens Rehsack
> Am 16.10.2015 um 15:35 schrieb Federico Pietro Briata > : > > Hi Folks, > I'm trying to compile java without x11 and unfortunately also without > success.. > > I've added in my local.conf: > > DISTRO_FEATURES_remove = "x11" > # Java build settings > PREFERRED_PROVIDER_virtual/java-native =

Re: [yocto] [meta-java] can zero shark be enabled again?

2015-10-16 Thread Jens Rehsack
> Am 16.10.2015 um 16:26 schrieb Federico Pietro Briata > : > > Hi again, > > I saw that some JIT optimization for arm32 has been announcement in icedtea > > the announcement is available at > http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2015-January/030392.html > > So I'm just wond

[yocto] Yocto Project Status WW42

2015-10-16 Thread Jolley, Stephen K
Current Dev Position: YP 2.0 Final (rc2 to be built soon) Next Deadline: YP 2.0 Final Release Target: Before Oct. 30, 2015 SWAT team rotation: Randy -> Benjamin https://wiki.yoctoproject.org/wiki/Yocto_Build_Failure_Swat_Team Top Bugs to be tackled (2.0 release blockers): * systemd t

Re: [yocto] Package inclusion

2015-10-16 Thread Carlos Sánchez de La Lama
Hi Paul, >> kernel-module-nls-utf8 (which goes into the image) >> kernel-module-input (which does not make it to the image) >> >> and both appear in RRECOMENDS_packagegroup-base. > > You definitely have the kernel-module-input package created - right? Because > it's an RRECOMMENDS, that package

Re: [yocto] Queries regarding yocto dual booting

2015-10-16 Thread Khem Raj
> On Oct 16, 2015, at 12:22 AM, Debasmita Lohar wrote: > > Hello, > I am using De2i-150 board which provides a yocto iso. I have installed puppy > linux before yocto and now I want to install yocto in the unallocated > portion. Basically I want dual booting. But when I tried to install yocto,

Re: [yocto] opkg 0.3.0 or rootfs task

2015-10-16 Thread Khem Raj
> On Oct 16, 2015, at 5:47 AM, Ahsan, Noor wrote: > > Hello, > > I noticed that at the time of rootfs creation symbolic links of the ipk files > present in deploy/ipk. The problem what have it while creation of symbolic > link it take the full path till that ipk and remove slashes and convert

Re: [yocto] Updating NIC drivers in older Yocto

2015-10-16 Thread Dave Mulder
> I have been using a Sandy Bridge Yocto 1.3 build for a couple years now, on > off- > the-shelf Intel PC motherboards. I also build an application. > > I am now looking into using more recent motherboards. The OS boots just fine, > but the new NICs (Intel, Realtek) are not supported by the old 3

Re: [yocto] opkg 0.3.0 or rootfs task

2015-10-16 Thread Ahsan, Noor
From: Khem Raj [mailto:raj.k...@gmail.com] Sent: Friday, October 16, 2015 9:54 PM To: Ahsan, Noor Cc: yocto@yoctoproject.org Subject: Re: [yocto] opkg 0.3.0 or rootfs task On Oct 16, 2015, at 5:47 AM, Ahsan, Noor mailto:noor_ah...@mentor.com>> wrote: Hello, I noticed that at the time of root

Re: [yocto] Package with both daemon and shared object

2015-10-16 Thread Vuille, Martin (Martin)
> From: Khem Raj [mailto:raj.k...@gmail.com] > Sent: October 14, 2015 1:25 PM > > > > On Oct 14, 2015, at 9:25 AM, Vuille, Martin (Martin) > > wrote: > > > > Hi, > > > > I am having a bit of trouble understanding something about > > packaging. > > > > I have a custom recipe to build a pac

Re: [yocto] [meta-java] openjdk-7-jre was skipped: missing required distro feature ['x11'] (not in DISTRO_FEATURES)

2015-10-16 Thread Federico Pietro Briata
2015-10-16 16:09 GMT+01:00, Jens Rehsack : > >> Am 16.10.2015 um 15:35 schrieb Federico Pietro Briata >> : >> >> Hi Folks, >> I'm trying to compile java without x11 and unfortunately also without >> success.. >> >> I've added in my local.conf: >> >> DISTRO_FEATURES_remove = "x11" >> # Java build se

Re: [yocto] [meta-java] openjdk-7-jre was skipped: missing required distro feature ['x11'] (not in DISTRO_FEATURES)

2015-10-16 Thread Jens Rehsack
> Am 16.10.2015 um 21:21 schrieb Federico Pietro Briata > : > > 2015-10-16 16:09 GMT+01:00, Jens Rehsack : >> >>> Am 16.10.2015 um 15:35 schrieb Federico Pietro Briata >>> : >>> >>> Hi Folks, >>> I'm trying to compile java without x11 and unfortunately also without >>> success.. >>> >>> I've

Re: [yocto] [meta-java] can zero shark be enabled again?

2015-10-16 Thread Federico Pietro Briata
2015-10-16 16:14 GMT+01:00, Jens Rehsack : > > I fear you mix between ARMJIT provided by IceadTea and ZeroShark provided by > OpenJDK. Ops > While IcedTea maintains the ARMJIT within hotspot ported from OpenJDK6, > ZeroShark uses LLVM's JIT. I thought ARMJIT was part of Shark and provided with h

[yocto] Auto builder

2015-10-16 Thread akuster808
Hello all, Are there any plans on tagging the autobuilder and any other sources used to create and test the 2.0 release? It would be nice to try to avoid the issues we ran into earlier this year with a Dizzy release that has repressions. regards, Armin --

Re: [yocto] opkg 0.3.0 or rootfs task

2015-10-16 Thread Ahsan, Noor
From: yocto-boun...@yoctoproject.org [mailto:yocto-boun...@yoctoproject.org] On Behalf Of Ahsan, Noor Sent: Friday, October 16, 2015 11:55 PM To: Khem Raj Cc: yocto@yoctoproject.org Subject: Re: [yocto] opkg 0.3.0 or rootfs task From: Khem Raj [mailto:raj.k...@gmail.com] Sent: Friday, October

Re: [yocto] RFC: Yocto LTS?

2015-10-16 Thread akuster
On 10/15/15 8:49 AM, Philip Balister wrote: > On 10/14/2015 12:26 PM, Chris Simmonds wrote: >> >> On 14/10/15 17:27, Mark Hatle wrote: >>> On 10/14/15 8:28 AM, Chris Simmonds wrote: Hi, Is there a statement about the period of support for a Yocto release? Looking through the upd

[yocto] Nightly build and world build

2015-10-16 Thread atulkumar singh
Hi All, I am going through the mailing list and I found some communication related to world build and nightly build. I even search in the documentation regarding the same but didn't found any useful information regarding the same. Can anyone please tel me what is nightly build and world build and

Re: [yocto] Queries regarding yocto dual booting

2015-10-16 Thread Debasmita Lohar
The messages it is showing are: booting from cd... iso linux boot: loading /vmlinux loading initrd trying to unpack rootfs switched to clock source. mounted file system. After that it is showing yocto project and enters into the desktop. It may be noted that I am using the iso file downloaded from