On Thu, Apr 28, 2011 at 2:24 PM, Khem Raj wrote:
> On Thu, Apr 28, 2011 at 2:12 PM, Mark Hatle wrote:
>> I've started working on getting bitbake and OE-Core building on MacOS X. So
>> far
>> what I have are some pretty hacky patches.. but they should be a reasonable
>> start.
>>
>
> You might
On Thu, Apr 28, 2011 at 2:23 PM, Mark Hatle wrote:
> Checksums and timestamps are not enough to determine a logical progression of
> the components.
>
> We need something that informs the user where these changes fit in the grand
> scheme of things. Are they newer or older then a recipe of the sa
On Fri, May 6, 2011 at 6:39 AM, Koen Kooi wrote:
> And related to this: how do I get the "installed but not packaged" output
> back? The bitbake logging changes are hiding it now, which is
> counterproductive.
Could change those messages from info to warnings, then they'd show up.
--
Christoph
On Tue, May 10, 2011 at 1:54 AM, Richard Purdie
wrote:
> Er, how about we actually fix metadata_scm.bbclass instead of making the
> world more complicated and fragile? :)
>
> I suspect metadata_scm could use the COREBASE variable and be much nicer
> code...
I'd really like to see it gather inform
On Tue, May 10, 2011 at 12:15 PM, Otavio Salvador
wrote:
> On Tue, May 10, 2011 at 16:03, Richard Purdie
> wrote:
>>> Hmmm. I'm going to take a stab at making this a create-pull-request
>>> option...
>>
>> Martin/Tom: Serious question - why not use the contrib repo for this?
>>
>> I have nightma
From: Chris Larson
This adds a ClassRegistry utility metaclass, as maintaining a class registry
is a fairly common thing to do.
Signed-off-by: Chris Larson
---
meta/lib/oe/classutils.py | 43 +++
1 files changed, 43 insertions(+), 0 deletions
From: Chris Larson
- Adds a utility metaclass for maintaining class registries
- Shifts the handling of spawning a terminal into a new 'terminal' python
module
- Automatically selects an appropriate terminal based on what you have
available on your machine
- Still allows manual sele
From: Chris Larson
In the new implementation, each known terminal is defined as a class in
oe.terminal, as a subclass of bb.process.Popen. It obeys the OE_TERMINAL
variable, which is a 'choice' typed variable. This variable may be 'auto',
'none', or any of the
From: Chris Larson
- Name the screen session 'devshell', to avoid confusion if running bitbake
itself under a screen session.
- Display a warning message when spawning screen, so it's clear to the user
that screen has been run (otherwise do_devshell just appears to hang).
From: Chris Larson
This can be useful if we need the imports from another config parsed event
handler, and can't rely upon the base one running before that one.
Signed-off-by: Chris Larson
---
meta/classes/base.bbclass | 33 ++---
1 files changed, 18 inser
From: Chris Larson
Pull URL: git://git.openembedded.org/openembedded-core-contrib
Branch: kergoth/oe-sync-base
Browse:
http://git.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kergoth/oe-sync-base
Thanks,
Chris Larson
---
Chris Larson (5):
Implement variable typing
From: Chris Larson
This implementation consists of two components:
- Type creation python modules, whose job it is to construct objects of the
defined type for a given variable in the metadata
- typecheck.bbclass, which iterates over all configuration variables with a
type defined and uses
From: Chris Larson
The current mechanism makes it easier for classes to add new oe modules to be
automatically imported, and thereby made available to python snippets (${@}).
Signed-off-by: Chris Larson
---
meta/classes/base.bbclass | 22 +-
1 files changed, 9 insertions
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/lib/oe/data.py |5 +
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/meta/lib/oe/data.py b/meta/lib/oe/data.py
index 8b7c3cd..4b4d03e 100644
--- a/meta/lib/oe/data.py
+++ b/meta/lib/oe/data.py
@@ -6,6 +6,11 @@ def
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/classes/base.bbclass |4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 391545c..7950bc3 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/lib/oe/packagedata.py |3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/meta/lib/oe/packagedata.py b/meta/lib/oe/packagedata.py
index 7f0a89d..ee10a23 100644
--- a/meta/lib/oe/packagedata.py
+++ b/meta/lib/oe
From: Chris Larson
This version uses variables to define the groups of packages rather than calls
to base_contains.
Note: this applies on top of kergoth/oe-sync-base.
Example:
PACKAGE_GROUP_stuff_i_like = "openssh nano foo"
IMAGE_FEATURES += "stuff_i_like&
From: Chris Larson
This includes some utility functions for dealing with groups of packages
defined in the metadata. Metadata syntax:
PACKAGE_GROUP_ = ""
If the packages in the group are optional:
PACKAGE_GROUP_[optional] = "1"
Signed-off-by: Chris Larso
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/classes/image.bbclass | 12 ++--
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 3c62688..6b4e01e 100644
--- a/meta/classes/image.bbclass
+++ b/meta
From: Chris Larson
Currently, all image features are assumed to be package groups defined with
oe.packagegroup (PACKAGE_GROUP_ = "").
Signed-off-by: Chris Larson
---
meta/classes/core-image.bbclass | 112 ++-
meta/classes/image.bbclass
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/classes/package.bbclass |4 +-
meta/classes/package_rpm.bbclass |3 +-
meta/classes/packagedata.bbclass | 68 ++---
meta/lib/oe/packagedata.py | 106 ++
4 files
On Thu, May 19, 2011 at 4:21 AM, Richard Purdie
wrote:
> We have these variables and I know Chris has some patches submitted to
> improve our handling of such variables. I'm coming down in favour of
> extending these into some of these use cases too though.
This sounds like a nice idea. The bits
On Thu, May 19, 2011 at 11:43 AM, Cliff Brake wrote:
> Are there any other repos or maillists that I should include in this
> report? I'm trying to increase visibility in what all the projects
> are doing, so we can reduce duplication of work in various layers.
There's a meta-slugos now, and pb
On Fri, May 20, 2011 at 11:05 AM, Richard Purdie
wrote:
> On Wed, 2011-05-18 at 14:06 -0700, Chris Larson wrote:
>> From: Chris Larson
>>
>> Currently, all image features are assumed to be package groups defined with
>> oe.packagegroup (PACKAGE_GROUP_ = ""
On Fri, May 20, 2011 at 11:29 AM, Richard Purdie
wrote:
> Yes please :)
>
>> >> --- a/meta/classes/image.bbclass
>> >> +++ b/meta/classes/image.bbclass
>> >> @@ -11,8 +11,45 @@ INHIBIT_DEFAULT_DEPS = "1"
>> >>
>> >> # "export IMAGE_BASENAME" not supported at this time
>> >> IMAGE_BASENAME[export
On Wed, May 25, 2011 at 10:01 AM, Phil Blundell wrote:
> By way of displacement activity to avoid actually fixing my perl
> compilation problem, it occurred to me to investigate why perl was
> getting dragged into a micro-base-image build in the first place. The
> culprit turns out to be imake, w
On Wed, May 25, 2011 at 5:00 PM, Richard Purdie
wrote:
> On Thu, 2011-05-26 at 00:02 +0100, Richard Purdie wrote:
>> I think we need to fix native.bbclass. I dread to think what this is
>> doing to the dependency tree at present. We did remove most references
>> to RDEPENDS directly so I think tha
On Thu, May 26, 2011 at 6:50 AM, Darren Hart wrote:
>>> -UBOOT_MACHINE ?= "${MACHINE}_config"
>>> +python () {
>>> + if not bb.data.getVar('UBOOT_MACHINE', d, 1):
>>> + bb.debug("To build %s, see u-boot_git.bb for instructions on \
>>
>> If this file was renamed, don't you also want to u
On Thu, May 26, 2011 at 4:24 PM, Richard Purdie
wrote:
> On Thu, 2011-05-26 at 14:12 -0700, Darren Hart wrote:
>> Note: I used bb.note() instead of bb.debug() to ensure the message at least
>> makes it to the console. From what I could gather, bb.debug() doesn't
>> go anywhere during r
On Wed, Jun 1, 2011 at 9:25 AM, Richard Purdie
wrote:
> On Wed, 2011-06-01 at 16:06 +0100, Phil Blundell wrote:
>> On Tue, 2011-05-31 at 15:26 -0700, Scott Garman wrote:
>> > I'd like to collect some feedback on error messages while building that
>> > you find confusing/annoying/unhelpful. I'm goi
On Fri, Jun 3, 2011 at 8:43 AM, Phil Blundell wrote:
> On Fri, 2011-06-03 at 09:22 -0500, Mark Hatle wrote:
>> I believe currently we have around 3-5 messages per step, and it's still too
>> noisy -- unless you need to debug something.
>
> Correct. Right now, the output looks like:
>
> NOTE: Runn
e patches look reasonable to me, thanks for taking the time to
look into it and fix it.
Acked-by: Chris Larson
--
Christopher Larson
clarson at kergoth dot com
Founder - BitBake, OpenEmbedded, OpenZaurus
Maintainer - Tslib
Senior Software Engineer, Mentor Graphics
_
On Fri, Jun 10, 2011 at 7:06 AM, Koen Kooi wrote:
> For people not keeping an eye on meta-gnome, it reached a milestone this
> week: a usefull looking[1] GNOME 2.32 desktop. With the current bits in
> oe-core, meta-oe and meta-gnome you can build an image with gdm, gnome-panel,
> gnome-session,
On Sat, Jun 18, 2011 at 10:40 AM, Paul Eggleton
wrote:
> Hi Cliff,
>
> On Saturday 18 June 2011 18:29:48 cliff.br...@gmail.com wrote:
>> meta-yocto: git://git.yoctoproject.org/poky
>>...
>>
>> Changelog for meta-yocto:
>>
>
> This clearly contai
On Fri, Jun 17, 2011 at 10:42 AM, Paul Eggleton wrote:
> Hi Ke,
>
> Great work. Here's my review so far:
>
> On Monday 13 June 2011 14:15:04 Yu, Ke wrote:
>> --- /dev/null
>> +++ b/scripts/combo-layer-hook-default.sh
>> @@ -0,0 +1,14 @@
>> +#!/bin/sh
First thought on starting to read the patch: w
On Mon, Jun 27, 2011 at 5:11 AM, Koen Kooi wrote:
> After updating bitbake this morning I get:
>
> /OE/tentacle/sources/bitbake/lib/bb/msg.py:95: DeprecationWarning:
> object.__init__() takes no parameters
> super(set, self).__init__(args)
> Traceback (most recent call last):
> File "/OE/tentac
On Tue, Jun 28, 2011 at 7:31 AM, Richard Purdie
wrote:
> I just wanted to let people know that we have a minimum version of
> bitbake change imminent for OE-Core.
>
> I've already pushed the changes we need to bitbake for umask, shared
> work directory and multilib and updated its version to 1.13.
On Wed, Jun 29, 2011 at 4:02 PM, Andreas Mueller wrote:
> foo() {
> # code to reuse
> }
>
> and called foo from several recipes. In oe-core the run.* scripts are much
> more
> stripped of unnecessary. All the code included by 'require' seems to miss, so
> the function foo() will not be fo
On Wed, Jul 13, 2011 at 12:36 PM, Richard Purdie
wrote:
> On Wed, 2011-07-13 at 11:35 -0700, Christopher Larson wrote:
>> diff --git a/meta/classes/devshell.bbclass b/meta/classes/devshell.bbclass
>> index 5f262f4..95c29f3 100644
>> --- a/meta/classes/devshell.bbclass
>> +++ b/meta/classes/devshel
On Tue, Aug 2, 2011 at 6:52 AM, Phil Blundell wrote:
> Actually, to some extent I consider it a bit of a misfeature that the
> layer priority is specified by the layer rather than by the user in
> bblayers.conf, since this makes it harder to vary the stack-up order
> without local hackery to the l
On Tue, Aug 2, 2011 at 7:21 AM, Paul Eggleton
wrote:
> On Tuesday 02 August 2011 15:14:41 Chris Larson wrote:
>> as config/class priority is
>> determined by order of entries in BBLAYERS, whereas recipe priority is
>> determined by layer.conf.
>
> Is that a good thin
On Wed, Aug 3, 2011 at 2:54 PM, Daniel Lazzari wrote:
> Immediately append TCLIBCAPPEND to TMPDIR in defaultsetup.conf
> instead of lazily appending it with _append. This fixes a bug where
> the wrong cache was cleared when BB_SRCREV_POLICY = "clear".
>
>
> Signed-off-by: Daniel Lazzari Jr
On Thu, Aug 4, 2011 at 10:48 PM, Koen Kooi wrote:
>
> Op 5 aug. 2011, om 07:32 heeft Saul Wold het volgende geschreven:
>
>> On 08/04/2011 10:28 PM, Koen Kooi wrote:
>>>
>>> Op 5 aug. 2011, om 04:23 heeft Saul Wold het volgende geschreven:
>>>
On 08/01/2011 04:08 AM, Koen Kooi wrote:
> Te
On Thu, Aug 4, 2011 at 10:55 PM, Koen Kooi wrote:
> Op 5 aug. 2011, om 07:51 heeft Chris Larson het volgende geschreven:
>
>> On Thu, Aug 4, 2011 at 10:48 PM, Koen Kooi
>> wrote:
>>>
>>> Op 5 aug. 2011, om 07:32 heeft Saul Wold het volgende geschreven:
>&g
From: Chris Larson
This is a second attempt at this, scrapping the class changes from the previous
request and redoing it in a less invasive way, and breaking up the changes into
3 pieces. This implements IMAGE_FEATURES. IMAGE_FEATURES is analagous to
DISTRO_FEATURES and MACHINE_FEATURES, for
From: Chris Larson
IMAGE_FEATURES is analagous to DISTRO_FEATURES and MACHINE_FEATURES, for
root filesystem construction. Currently, the only supported features are
any defined package groups, as used by the oe.packagegroup python
module.
Example usage:
PACKAGE_GROUP_myfeature = &quo
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/classes/image.bbclass | 34 --
1 files changed, 32 insertions(+), 2 deletions(-)
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index e057329..54eb78b 100644
--- a/meta/classes
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/classes/core-image.bbclass | 77 +--
1 files changed, 17 insertions(+), 60 deletions(-)
diff --git a/meta/classes/core-image.bbclass b/meta/classes/core-image.bbclass
index c8c6a57..507d6a6 100644
On Wed, Aug 10, 2011 at 10:51 AM, Kumar Gala wrote:
> the yocto wiki references mentions a bitbake-diffsigs
>
> https://wiki.yoctoproject.org/wiki/Enable_sstate_cache
>
> but not seeing that. How can one compare signature or try and figure out why
> a cache item isn't being reused between cfgs.
On Thu, Aug 11, 2011 at 11:23 AM, Christopher Larson wrote:
>
> are available in the git repository at:
> github:kergoth/oe-core misc-fixes
Erm, forgot to adjust this before sending, the url is
git://github.com/kergoth/oe-core (I use url insteadOf/pushInsteadOf in
.gitconfig to use the above url
From: Chris Larson
In certain combinations of build/host/target, they can end up
inadvertently prefixed, breaking the assumptions in the recipe.
Signed-off-by: Chris Larson
---
meta/recipes-devtools/rpm/rpm_5.4.0.bb |3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/recipes-support/libpcre/libpcre_8.12.bb |8
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/meta/recipes-support/libpcre/libpcre_8.12.bb
b/meta/recipes-support/libpcre/libpcre_8.12.bb
index 9216777..24d91c3
From: Chris Larson
Signed-off-by: Chris Larson
---
meta/classes/image_types_uboot.bbclass | 21 +
1 files changed, 21 insertions(+), 0 deletions(-)
create mode 100644 meta/classes/image_types_uboot.bbclass
diff --git a/meta/classes/image_types_uboot.bbclass
b/meta
On Fri, Aug 19, 2011 at 5:16 AM, wrote:
> From: Martin Jansa
>
> * if there is multiple .bbappend files with FILESEXTRAPATHS_prepend := "/:"
> then the one parsed last is causing trailing ':' and that's causing empty
> element in
> path = extrapaths.split(:) + path
> * it's hard to keep all .
On Wed, Aug 24, 2011 at 11:30 AM, Saul Wold wrote:
> In your recent changes to devshell, you seem to have broken the default
> behavior of setting TERMCMD / TERMCMDRUN.
>
> When I set them up for scree as follows:
>
> TERMCMD = "${SCREEN_TERMCMD}"
> TERMCMDRUN = "${SCREEN_TERMCMDRUN}"
First, thi
Saul reminded me that I never sent a proper email to let people know about the
usability change to devshell, so only those who reviewed the commits
know about it.
In the new implementation, a single OE_TERMINAL variable controls the behavior.
When using 'auto', or requesting an unsupported termin
On Wed, Aug 24, 2011 at 12:54 PM, Khem Raj wrote:
> On 8/24/2011 12:49 PM, Chris Larson wrote:
>>
>> Saul reminded me that I never sent a proper email to let people know about
>> the
>> usability change to devshell, so only those who reviewed the commits
>>
From: Chris Larson
This should resolve the devshell issue people are seeing.
Signed-off-by: Chris Larson
---
meta/classes/terminal.bbclass |4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/classes/terminal.bbclass b/meta/classes/terminal.bbclass
index 4123046
On Wed, Aug 24, 2011 at 1:13 PM, Saul Wold wrote:
> On 08/24/2011 12:49 PM, Chris Larson wrote:
>>
>> Saul reminded me that I never sent a proper email to let people know about
>> the
>> usability change to devshell, so only those who reviewed the commits
>>
On Mon, Aug 22, 2011 at 6:01 AM, Paul Eggleton
wrote:
> FWIW I agree with Martin; I wouldn't hold back the patch just for this reason
> - it's not incorrect code, it's consistent with the rest of the file, and we
> can easily clean these up later.
I strongly disagree with this. The fact is, we al
On Wed, Aug 24, 2011 at 5:16 PM, Paul Eggleton
wrote:
> On Thursday 25 August 2011 00:16:40 Chris Larson wrote:
>> I strongly disagree with this. The fact is, we almost never go back
>> and "clean these up later", so crap accrues.
>
> We're talking ab
On Wed, Aug 24, 2011 at 6:24 PM, Richard Purdie
wrote:
> On Wed, 2011-08-24 at 17:20 -0700, Chris Larson wrote:
>> On Wed, Aug 24, 2011 at 5:16 PM, Paul Eggleton
>> wrote:
>> > On Thursday 25 August 2011 00:16:40 Chris Larson wrote:
>> >> I strongly disagr
On Thu, Aug 25, 2011 at 2:18 AM, Phil Blundell wrote:
> On Fri, 2011-08-19 at 15:11 -0700, Chris Larson wrote:
>> But then, there's a tendency nowadays to avoid map/filter/etc,
>> so that's probably not best :)
>
> Oh, is there? What's the objection to those
On Fri, Aug 26, 2011 at 2:40 PM, Richard Purdie
wrote:
> On Fri, 2011-08-26 at 18:06 -0300, Otavio Salvador wrote:
>> We have two recipes that use a common static library and every time we
>> change something on this library we need to bump PR of those recipes.
>> We want to avoid that specially f
On Sun, Aug 28, 2011 at 1:07 PM, Joel A Fernandes wrote:
> DESCRIPTION = "A tool to format SD Cards correctly"
> LICENSE = "GPLv2"
> LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
> SECTION = "base"
> SRC_URI = "file://mkcard.txt \
> file://COPYING.patch"
> PR =
On Fri, Sep 9, 2011 at 2:01 PM, Christopher Larson wrote:
> -SRC_URI =
> "http://www.angstrom-distribution.org/unstable/sources/tinylogin-${PV}.tar.bz2
> \
> - file://cvs-20040608.patch \
> +SRCREV = "cb1af5efe2c07b0e0bae5ddd700c1df2fcd470e9"
> +SRC_URI = "git://busybox.net/tinylogin.git \
On Fri, Sep 16, 2011 at 12:45 PM, Mark Hatle wrote:
>> Yes I know but wouldn't be better if you could base your work on
>> oe-core and avoid doing this?
>
> For submitting to oe-core for pull requests, basing work off of oe-core is
> "best
> practice". However, forcing people who are working on
On Tue, Sep 20, 2011 at 12:03 PM, Daniel Lazzari wrote:
> I noticed a problem with the alsa-utils package where the alsa-utils package
> does not depend on all of the little extra packages it's supposed to pull in.
> I'm not sure what the best way to fix this is though. Can anyone give me a
> l
On Tue, Sep 20, 2011 at 1:24 PM, Daniel Lazzari wrote:
>> On 9/20/11 2:03 PM, Daniel Lazzari wrote:
>> > I noticed a problem with the alsa-utils package where the alsa-utils
>> > package does not depend on all of the little extra packages it's supposed
>> > to pull in. I'm not sure what the best
On Fri, Sep 23, 2011 at 11:12 AM, Otavio Salvador
wrote:
> On Fri, Sep 23, 2011 at 14:30, Richard Purdie
> wrote:
> ...
>> I don't really see the point of this. Basically you're asking that every
>> time there is a commit to the branch there is also a merge commit. You
>> can just as easily eithe
On Mon, Sep 26, 2011 at 5:47 AM, Richard Purdie
wrote:
> On Mon, 2011-09-26 at 09:27 -0300, Otavio Salvador wrote:
>> On Mon, Sep 26, 2011 at 06:23, Richard Purdie
>> wrote:
>> ...
>> > FWIW, something like git cherry can identify your local changes so you
>> > could apply them on top of master s
On Fri, Sep 30, 2011 at 11:14 AM, Jeff Osier-Mixon wrote:
> 1. Jefro
> 2. a. some minutes not making it to mailing list, Jefro to post on wiki
> b. yocto evaluating gerrit, possible patchwork replacement for OE, khem
> will research
ReviewBoard may be worth looking at as an alternative to gerr
On Fri, Sep 30, 2011 at 12:59 PM, Joshua Lock wrote:
> On Fri, 2011-09-30 at 11:16 -0700, Chris Larson wrote:
>> On Fri, Sep 30, 2011 at 11:14 AM, Jeff Osier-Mixon wrote:
>> > 1. Jefro
>> > 2. a. some minutes not making it to mailing list, Jefro to post on wiki
>>
On Mon, Oct 3, 2011 at 2:53 PM, Saul Wold wrote:
> On 09/30/2011 11:16 AM, Chris Larson wrote:
>>
>> On Fri, Sep 30, 2011 at 11:14 AM, Jeff Osier-Mixon
>> wrote:
>>>
>>> 1. Jefro
>>> 2. a. some minutes not making it to mailing list, Jefro t
On Wed, Jan 4, 2012 at 9:31 AM, McClintock Matthew-B29882
wrote:
> On Wed, Jan 4, 2012 at 9:33 AM, Richard Purdie
> wrote:
>> There has already been a patch allowing different compression mechanisms
>> from Matthew posted on this mailing list. Its not been merged yet as I'd
>> really prefer one f
On Wed, Jan 4, 2012 at 9:23 AM, Richard Purdie
wrote:
>> Another approach would be to stop injecting -dev Requires by default. I
>> imagine this was done to handle the case of library A whose headers
>> require library B. However, a saner way to handle this I think is
>> simply to push people to
On Wed, Jan 4, 2012 at 11:14 AM, Denys Dmytriyenko wrote:
> The main archive of BlueZ/obexd/hcidump releases on kernel.org[1] finally
> re-appeared after missing for long time since kernel.org compromise.
> Unfortunately, all previous tarballs have new checksums, breaking builds for
> anyone w/o p
On Wed, Jan 4, 2012 at 3:02 PM, Denys Dmytriyenko wrote:
> On Wed, Jan 04, 2012 at 12:53:25PM -0800, Khem Raj wrote:
>> On Wed, Jan 4, 2012 at 12:14 PM, Chris Larson wrote:
>> > On Wed, Jan 4, 2012 at 11:14 AM, Denys Dmytriyenko wrote:
>> >> The main archive of B
On Fri, Jan 6, 2012 at 8:59 AM, Mark Hatle wrote:
> On 1/6/12 4:34 AM, Koen Kooi wrote:
>>
>>
>> Op 6 jan. 2012, om 11:09 heeft Martin Jansa het volgende geschreven:
>>
>>> FWIW today I've noticed that systemd is going other way around
>>> http://www.freedesktop.org/wiki/Software/systemd/separate-
On Fri, Jan 6, 2012 at 7:34 PM, wrote:
> Possible values for LICENSE_FLAGS could be:
> - Binary - provides some kind of binary with no source
> - Patent - provides a potential infringing item, that some may not want
> - Commercial - include recipes that may have commercial T&C
> - Commercial_${PN
On Tue, Jan 10, 2012 at 8:17 AM, Andrei Gherzan wrote:
> From: Andrei Gherzan
>
> A new function was defined in license.bbclass in order to correctly exclude
> packages where OE-Style licence naming
> is used. In this way licenses as GPL-3, GPLv3, GPLv3.0 etc will be excluded
> from a non-GPLv3
On Tue, Jan 10, 2012 at 9:07 AM, Andrei Gherzan wrote:
> On 01/10/2012 05:34 PM, Chris Larson wrote:
>>
>> On Tue, Jan 10, 2012 at 8:17 AM, Andrei Gherzan wrote:
>>>
>>> From: Andrei Gherzan
>>>
>>> A new function was defined in license.bbclass
On Tue, Jan 10, 2012 at 9:12 AM, Andrei Gherzan wrote:
> No worries. Anyway, you are right about the "+" mechanism but right now this
> is a fast and complete solution.
Indeed, nice work on this.
--
Christopher Larson
___
Openembedded-core mailing lis
On Tue, Jan 10, 2012 at 9:55 AM, Flanagan, Elizabeth
wrote:
> Agreed! One note about "+". There is still a discussion about "or
> greater" licensing within the SPDX community about how "or greater"
> should be dealt with.
>
> http://www.spdx.org/wiki/proposal-2010-11-16-1-or-later-version-licensin
On Tue, Jan 10, 2012 at 11:13 AM, Andrei Gherzan wrote:
> Christopher's solution crossed my mind as well. Actually i tried something
> like this but i didn't want to modify more from this patch and i didn't
> really know how to define those expansions.
> Another problem here that i faced and dropp
On Thu, Jan 12, 2012 at 7:25 AM, Enrico Scholz
wrote:
> Christopher Larson
> writes:
>
>> --- a/meta/recipes-core/ncurses/ncurses.inc
>> +++ b/meta/recipes-core/ncurses/ncurses.inc
>> ...
>> +# natives don't generally look in base_libdir
>> +base_libdir_virtclass-native = "${libdir}"
>
> I do not
On Mon, Jan 16, 2012 at 10:45 AM, Saul Wold wrote:
> On 01/16/2012 07:32 AM, Chris Larson wrote:
>>
>> On Thu, Jan 12, 2012 at 7:25 AM, Enrico Scholz
>> wrote:
>>>
>>> Christopher Larson
>>> writes:
>>>
>>>> --- a/meta/
On Thu, Jan 19, 2012 at 11:28 PM, Khem Raj wrote:
> I added to local.conf
> EXTRA_IMAGE_FEATURES += "tools-debug"
>
> and now when I do bitbake -g I see that its wanting to build
> "tools-testapp" and "tools-profile"
> even though I did not ask them to be added to my image. all these
> packages ar
On Mon, Jan 23, 2012 at 3:12 PM, Gary Thomas wrote:
> I've noticed that recent versions of bitbake leave this file
> in the build directory.
>
> What is it for & why is it left around?
It's used to ensure only one bitbake runs against a given build
directory at a time. I'm not sure why it's left
On Thu, Jan 26, 2012 at 7:45 AM, Rainer Koenig
wrote:
> Other extensions like xorg-xserver-extension-dri exist als ipk packages, but
> are not in the image and when I try to build them
> manually with "bitbake xorg-xserver-extension-dri" I get an
> error that says "nothing PROVIDES 'xserver-xorg-
On Wed, Feb 1, 2012 at 11:16 AM, Otavio Salvador
wrote:
> On Wed, Feb 1, 2012 at 16:15, Andreas Müller
> wrote:
>>
>> another stupid question from my side:
>>
>> do
>>
>> bb.data.getVar('foo', d, 1)
>>
>> and
>>
>> d.getVar('foo', 1)
>>
>> access the same data?
>
>
> It does but the later is supp
On Sat, Jan 28, 2012 at 1:23 PM, Khem Raj wrote:
> On (27/01/12 11:13), Christopher Larson wrote:
>> From: Christopher Larson
>>
>> Signed-off-by: Christopher Larson
>> ---
>> meta/recipes-devtools/binutils/binutils.inc | 5 +++--
>> 1 files changed, 3 insertions(+), 2 deletions(-)
>>
>> dif
On Sat, Jan 28, 2012 at 1:21 PM, Khem Raj wrote:
> On (27/01/12 11:13), Christopher Larson wrote:
>> From: Christopher Larson
>>
>> Signed-off-by: Christopher Larson
>> ---
>> meta/recipes-core/eglibc/eglibc-package.inc | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff -
On Sat, Jan 28, 2012 at 1:28 PM, Khem Raj wrote:
> hmm is it using powerpc-linux-gnu canonical name to do both ppc32
> and ppc64
>
>> +CSL_TARGET_SYS_arm = "arm-none-linux-gnueabi"
>> +CSL_TARGET_SYS_mips = "mips-linux-gnu"
>> +CSL_TARGET_SYS_mipsel = "mips-linux-gnu"
>
>
>> +CSL_TARGET_SYS_mips64
Bah, sent to the wrong list. Hate when I do that.
On Tue, Feb 7, 2012 at 9:13 PM, Christopher Larson wrote:
> From: Christopher Larson
>
> *** BLURB HERE ***
> The following changes since commit db689a99beffea1a285cdfc74a58fe73f1666987:
>
> Revert the switch to futures for now (2012-02-03 08:12
On Mon, Feb 20, 2012 at 7:05 AM, Colin Walters wrote:
> On Sat, 2012-02-18 at 23:36 +, Richard Purdie wrote:
>> As soon as the child starts trying to remove
>> things from memory, we lose the benefits of CoW and USS and PSS rise.
>
> Note that even leaving out the garbage collector, the cPytho
lemented the most functions but srpm functions. I will complete
> the left work(merge functions from sourcepkg, src_distribute to
> archiver.bbclass, implement srpm functions. )
>
>
>>>> Xiaofeng & Community:
>>>>
>>>> We had a chat with
On Thu, Feb 23, 2012 at 2:01 PM, Martin Jansa wrote:
>> Would lowering the priority of meta-openembedded affect its ability to
>> bbappend OE-core's recipes? Is it possible to lower its priority, or to
>> raise the priority of OE core, without modifying conf/layer.conf in
>> either layer?
>
> I do
On Fri, Feb 24, 2012 at 5:55 AM, Richard Purdie
wrote:
> You can also -c clean and it will wipe
> out WORKDIR but it won't touch ${S}. I picked libfm effectively at
> random. It won't remove the autoreconf changes from configure but I'm
> not sure I care much about that.
This is one of the things
On Fri, Mar 16, 2012 at 4:35 AM, Paul Eggleton
wrote:
> On Friday 16 March 2012 06:58:40 James Limbouris wrote:
>> Hi,
>>
>> I got a strange error when bitbaking two images after removing some files in
>> the deploy/images folder. It looks a whole lot like the cp's from the
>> individual tasks wer
1 - 100 of 427 matches
Mail list logo