]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/log
thirdparty/openembedded/openembedded-core-contrib.git
12 years agomultilib: Move redefinition of STAGING_DIR_KERNEL
Mark Hatle [Sun, 30 Sep 2012 00:19:14 +0000 (19:19 -0500)] 
multilib: Move redefinition of STAGING_DIR_KERNEL

If the STAGING_DIR_KERNEL is set in the multilib.conf, then it may be
set incorrected.  The evaluation happens before TMPDIR and LIBC are
defined in other components.

Moving the definition process to the multilib.bbclass ensures that
everything has been loaded before it is set.

(From OE-Core rev: 6bd87edc383b40e300b0ef4bf851c39b698305cd)

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoCleanup: fix PN == BPN cases
Mark Hatle [Sun, 30 Sep 2012 00:19:13 +0000 (19:19 -0500)] 
Cleanup: fix PN == BPN cases

When building target packages, it used to be enought to check for PN == BPN, however
with the multilib configurations, this can lead to subtle errors.  Change instances
of PN == BPN, to ${CLASSOVERRIDE} == 'class-target'.

(From OE-Core rev: acc988272b4e74a9ad1e6da5af5b2d208584197b)

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agorpm: Implement workaround for DB_BUFFER_SMALL error
Mark Hatle [Sun, 30 Sep 2012 00:19:18 +0000 (19:19 -0500)] 
rpm: Implement workaround for DB_BUFFER_SMALL error

In certain cases with BerkleyDB 5.3.x we are getting the error:

db3.c:1443: dbcursor->pget(-30999): BDB0063 DB_BUFFER_SMALL: User memory too small fo

See https://bugs.launchpad.net/rpm/+bug/934420 for more information.

It appears to be some type of a bug in the BerkleyDB 5.3.x.  In an attempt
to workaround the problem, when we encounter this situation we attempt
to adjust the size of the mmap buffer until the call works, or we
end up trying 10 times.  The new size is either the updated vp->size
from the failed pget call, or the previous size + 1024.

If DBI debugging is enabled, additional diagnostics are printed, otherwise
a basic retry and success message is added to show that the failure was
resolved.

(From OE-Core rev: bfb2906206158748d0be33baf7984cf885756da1)

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agorpm: Add rpm patch to fix git_strerror issues
Mark Hatle [Sun, 30 Sep 2012 00:19:17 +0000 (19:19 -0500)] 
rpm: Add rpm patch to fix git_strerror issues

Remove the optimzation append from recipe and add the patch that is in the rpm
cvs repo, http://www.mail-archive.com/rpm-cvs@rpm5.org/msg08907.html. The -O2
optimzation append is removed since it can limit debugging options that are
provided when -O0 is used.

This was tested by setting: SELECTED_OPTIMIZATION = "-O0"

(From OE-Core rev: d109c6bd163469d6281d20174e4b79cb63483cd4)

Signed-off-by: Morgan Little <morgan.little@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agorpm: Fix file contention issue
Mark Hatle [Sun, 30 Sep 2012 00:19:16 +0000 (19:19 -0500)] 
rpm: Fix file contention issue

There is an issue that is caused when doing the install step of rpm on systems
with high parallelization where two jobs of make will fight for the same file
while installing the sub-directory lua. This is caused by the same makefile rule
being called twice in a way that both could be trying to install at the same
time.

This fix renames the linking rule so it will always be run after the needed
files are added and removed it's dependency so the required rule would only
run once.

This was tested heavily using ppss to run mutliple installs in parallel. This
wouldn't happen in practise but it was tested will all the individual rules as
well.

(From OE-Core rev: d05c5da6b972db97d3eb66b659f5641368c9ebe4)

Signed-off-by: Morgan Little <morgan.little@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agorpm-native: Fix 'uuid_rc_t' undeclared error when compiling
Mark Hatle [Sun, 30 Sep 2012 00:19:15 +0000 (19:19 -0500)] 
rpm-native: Fix 'uuid_rc_t' undeclared error when compiling

When attempting to build with uuid and all tests compiling will error because
uuid.h doesn't exist in the rpm tarball. Fix this by changing the include to
use the one in ossp which solves the issue.

The recipe already depends on ossp so ossp/uuid.h will be there when rpm-native
is built.

(From OE-Core rev: 52ae2c2439bcb78323f61a3666e9b630b3a40b15)

Signed-off-by: Morgan Little <morgan.little@windriver.com>
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agolibxcb: Update DEPENDS to avoid duplicate entries
Mark Hatle [Sun, 30 Sep 2012 00:19:12 +0000 (19:19 -0500)] 
libxcb: Update DEPENDS to avoid duplicate entries

Some items were listed multiple times in DEPENDS, avoid this situation.

Note, PR was not incremented as no change to the build process occurs.

(From OE-Core rev: e234af467eac7d0313fae3e87eb1b34725309bb5)

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agogst-ffmpeg: add LICENSE_FLAGS
Paul Eggleton [Thu, 13 Sep 2012 11:03:01 +0000 (12:03 +0100)] 
gst-ffmpeg: add LICENSE_FLAGS

This likely requires some form of license to use in a commercial
product.

(From OE-Core rev: 1d41af288f3db07a5dc47436443daf95e243904f)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agopoky.conf: supported distro warning update
Paul Eggleton [Mon, 1 Oct 2012 17:06:47 +0000 (18:06 +0100)] 
poky.conf: supported distro warning update

* Remove Fedora 15 (no longer supported by Fedora project)
* Add upcoming Fedora 18
* Add upcoming Ubuntu 12.10
* Add CentOS 5.8 & 6.3
* Add new Poky distro name format (self-hosted / build appliance) for
  Yocto Project 1.2 / 1.3
* Update Debian squeeze to 6.0.6 (automatic update from earlier 6.0.x)
* Add openSUSE 12.2

(From meta-yocto rev: 817cb382f3f2fcd8134491578662d90bb50cd0bc)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agopoky.conf: Clarify DISTRO_NAME to be less confusing
Richard Purdie [Mon, 1 Oct 2012 16:31:23 +0000 (17:31 +0100)] 
poky.conf: Clarify DISTRO_NAME to be less confusing

(From meta-yocto rev: e8f58bd92455e806985141f5e8df0b34d01bb4de)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoyocto-bsp: remove 'test' options from user-config.cfg
Tom Zanussi [Sat, 29 Sep 2012 23:45:31 +0000 (18:45 -0500)] 
yocto-bsp: remove 'test' options from user-config.cfg

A couple bsp templates have some options that were used for testing
but aren't needed for any other reason - remove them.

(From meta-yocto rev: dd3bbd04919f7cc69141f405ac95d736abddd637)

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoyocto-bsp: use FILESEXTRAPATHS for xserver-xf86-config bbappends
Tom Zanussi [Sat, 29 Sep 2012 23:45:30 +0000 (18:45 -0500)] 
yocto-bsp: use FILESEXTRAPATHS for xserver-xf86-config bbappends

The xserver-xf86-config .bbappends are still using FILESPATH - update
them to use FILESEXTRAPATHS as recommended by the Poky Reference
Manual and BSP Developer's Guides.

(From meta-yocto rev: 6aaef8eb9e95a46ab02ef038ae53c8e63eb04e09)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - minor edits.
Scott Rifenbark [Fri, 28 Sep 2012 21:38:13 +0000 (14:38 -0700)] 
documentation: dev-manual - minor edits.

(From yocto-docs rev: e138827210fecaecd90998d7e15561c4db083353)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Fixed a term for consistency.
Scott Rifenbark [Fri, 28 Sep 2012 21:31:52 +0000 (14:31 -0700)] 
documentation: dev-manual - Fixed a term for consistency.

(From yocto-docs rev: e4d1b880578e1aaf842e89fe3ce16683cfdebc70)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - more wording changes.
Scott Rifenbark [Fri, 28 Sep 2012 21:15:14 +0000 (14:15 -0700)] 
documentation: dev-manual - more wording changes.

I found other changes for underlying/corresponding wordings
regarding the relationship between .bb and .bbappend filenames.

(From yocto-docs rev: 28f12a4ea97a683281cd8cc0bbceb40d2b896aa4)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - better wording for the .bb file
Scott Rifenbark [Fri, 28 Sep 2012 21:13:16 +0000 (14:13 -0700)] 
documentation: dev-manual - better wording for the .bb file

Better choice of word here is "corresponding" rather than
"underlying".

(From yocto-docs rev: 3d8b6d6e06b81960df2a7d25b6d54308210cc011)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: deb-manual - updated list of layers in the repo
Scott Rifenbark [Fri, 28 Sep 2012 20:29:25 +0000 (13:29 -0700)] 
documentation: deb-manual - updated list of layers in the repo

The manual listed an out-dated example listing of meta-* layers
in poky.

(From yocto-docs rev: 39e2a02301d1d0b609fbc041395dd31f6ba9fa2d)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - fixed grammar.
Scott Rifenbark [Fri, 28 Sep 2012 20:25:49 +0000 (13:25 -0700)] 
documentation: dev-manual - fixed grammar.

(From yocto-docs rev: 57c3a8d32e0fab3a566eb5f0ac8b38a6786489f6)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Better description of location of scripts
Scott Rifenbark [Fri, 28 Sep 2012 20:19:19 +0000 (13:19 -0700)] 
documentation: dev-manual - Better description of location of scripts

The description for where the "scripts" directory lives was not
conforming to our terminology.

(From yocto-docs rev: 925167c446b86ca09d387d01568db64113412311)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - wording change to remove ambiguity.
Scott Rifenbark [Fri, 28 Sep 2012 20:14:42 +0000 (13:14 -0700)] 
documentation: dev-manual - wording change to remove ambiguity.

(From yocto-docs rev: 01fc1959efa85fdba17beec4a5c565108c6ab68a)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - formatting change.
Scott Rifenbark [Fri, 28 Sep 2012 20:12:37 +0000 (13:12 -0700)] 
documentation: dev-manual - formatting change.

(From yocto-docs rev: 8d43e7ff1ad8151a09e12524d9b9afe825322954)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Buzilla components updated to six.
Scott Rifenbark [Fri, 28 Sep 2012 20:09:08 +0000 (13:09 -0700)] 
documentation: dev-manual - Buzilla components updated to six.

(From yocto-docs rev: 28480c246f0346d16424837d6be5d45e084e15c3)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - better wording.
Scott Rifenbark [Fri, 28 Sep 2012 20:03:17 +0000 (13:03 -0700)] 
documentation: dev-manual - better wording.

For obvious reasons I changed this one :)

(From yocto-docs rev: 5f3203292f46bea799321e4520668252a46fb599)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Added link to pull scripts.
Scott Rifenbark [Fri, 28 Sep 2012 20:02:06 +0000 (13:02 -0700)] 
documentation: dev-manual - Added link to pull scripts.

(From yocto-docs rev: 87fe511d4114295f8d67705c03ac11983f51cf7a)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumenation: dev-manual - added link to section on patching.
Scott Rifenbark [Fri, 28 Sep 2012 19:03:37 +0000 (12:03 -0700)] 
documenation: dev-manual - added link to section on patching.

(From yocto-docs rev: 6316ef2aa8947d64fb262824b9f57df0e3a8e1c3)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - better terminology.
Scott Rifenbark [Fri, 28 Sep 2012 18:56:45 +0000 (11:56 -0700)] 
documentation: dev-manual - better terminology.

(From yocto-docs rev: 06f1556d10c75134e53ade7bab407623f00b6a87)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumenation: dev-manual - formatting fix.
Scott Rifenbark [Fri, 28 Sep 2012 18:54:31 +0000 (11:54 -0700)] 
documenation: dev-manual - formatting fix.

(From yocto-docs rev: 24e653c02278d7a3d935104296f54cf9fff9ce12)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumenation: dev-manual - clarifies local branch.
Scott Rifenbark [Fri, 28 Sep 2012 18:53:42 +0000 (11:53 -0700)] 
documenation: dev-manual - clarifies local branch.

(From yocto-docs rev: fff80ac6e0a7092f19a268694f974ff45fb0fe8b)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - grammar fix.
Scott Rifenbark [Fri, 28 Sep 2012 18:52:47 +0000 (11:52 -0700)] 
documentation: dev-manual - grammar fix.

(From yocto-docs rev: eecdc407ae10a9c4146d79735e2e3fce7a031083)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumenation: dev-manual - updated the key tags example list.
Scott Rifenbark [Fri, 28 Sep 2012 18:47:36 +0000 (11:47 -0700)] 
documenation: dev-manual - updated the key tags example list.

(From yocto-docs rev: 8bdbe16e97be04482d3b06c9cf63bdef6ab49d5a)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Better wording for repo setup
Scott Rifenbark [Fri, 28 Sep 2012 18:42:40 +0000 (11:42 -0700)] 
documentation: dev-manual - Better wording for repo setup

I improved the wording such that it is not tied to a
x.x type release.  It is more generic here and will survive
better under future releases.

(From yocto-docs rev: 2bd644db7fef71cd2f07f6d3dcbd2ba60b83df08)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - updated string of example branches.
Scott Rifenbark [Fri, 28 Sep 2012 18:33:33 +0000 (11:33 -0700)] 
documentation: dev-manual - updated string of example branches.

(From yocto-docs rev: 79171c5c3c805178971ac099471d466e08968bbf)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumenation: dev-manual - Added "the" in front of YP use.
Scott Rifenbark [Fri, 28 Sep 2012 18:22:22 +0000 (11:22 -0700)] 
documenation: dev-manual - Added "the" in front of YP use.

(From yocto-docs rev: 0bb38edb5a1b855322da2afe2af57d627a573c51)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - grammar fix.
Scott Rifenbark [Fri, 28 Sep 2012 18:20:22 +0000 (11:20 -0700)] 
documentation: dev-manual - grammar fix.

(From yocto-docs rev: 0c6804e0c9c3721964f5780f6ce6d56ec813fd47)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - grammar fix.
Scott Rifenbark [Fri, 28 Sep 2012 18:18:12 +0000 (11:18 -0700)] 
documentation: dev-manual - grammar fix.

(From yocto-docs rev: 8611504763fe3d1e8fb95ceb06416e78203741b8)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - First re-write of "Package" term.
Scott Rifenbark [Fri, 28 Sep 2012 18:14:21 +0000 (11:14 -0700)] 
documentation: dev-manual - First re-write of "Package" term.

(From yocto-docs rev: 735f6b10710f060541de88c9164c9cc1e605d436)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Added QEMU for image target.
Scott Rifenbark [Fri, 28 Sep 2012 17:40:13 +0000 (10:40 -0700)] 
documentation: dev-manual - Added QEMU for image target.

(From yocto-docs rev: 6dceb27dd5687e1a6a9ae3ad8decccbaa211376a)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - grammar fix.
Scott Rifenbark [Fri, 28 Sep 2012 17:22:49 +0000 (10:22 -0700)] 
documentation: dev-manual - grammar fix.

(From yocto-docs rev: a601b39d93d036a0e54f5e4f0b8d0bb052c5ef98)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Fixed buildbot target heading.
Scott Rifenbark [Fri, 28 Sep 2012 17:16:59 +0000 (10:16 -0700)] 
documentation: dev-manual - Fixed buildbot target heading.

(From yocto-docs rev: dc8949b3493b16d3a8ba83aad0ec756c53fcd1cf)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - updated meta-intel repo example.
Scott Rifenbark [Fri, 28 Sep 2012 13:55:03 +0000 (06:55 -0700)] 
documentation: dev-manual - updated meta-intel repo example.

Added a line to cd to the poky directory so the example makes
sure the meta-intel directory is created in poky as it states.

(From yocto-docs rev: fdeff0fc2c61c521eaf9d3c48429792f1559c2a4)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - formatting change.
Scott Rifenbark [Fri, 28 Sep 2012 13:53:21 +0000 (06:53 -0700)] 
documentation: dev-manual - formatting change.

(From yocto-docs rev: ff04bcaaae1a4f9a6e7b97c502fce9cde579c624)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Update poky-extras example
Scott Rifenbark [Fri, 28 Sep 2012 13:51:00 +0000 (06:51 -0700)] 
documentation: dev-manual - Update poky-extras example

Updated so that the repo poky-extras is for sure created inside
the poky repository.

(From yocto-docs rev: b01ea76ded2ade66f2cb19b37d9e9d8d5d2e96c9)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - changed 3.2 to 3.4 for kernel support
Scott Rifenbark [Fri, 28 Sep 2012 13:48:11 +0000 (06:48 -0700)] 
documentation: dev-manual - changed 3.2 to 3.4 for kernel support

(From yocto-docs rev: 6305dc7b4cbeae7f5725a2c2bc003b361460cfdf)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - corrected heading for yocto linux kernel.
Scott Rifenbark [Fri, 28 Sep 2012 13:45:48 +0000 (06:45 -0700)] 
documentation: dev-manual - corrected heading for yocto linux kernel.

(From yocto-docs rev: a929747d076d0ce5d7401c95eaebc4800ed7cd4b)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Added reference to supported distros.
Scott Rifenbark [Fri, 28 Sep 2012 13:41:51 +0000 (06:41 -0700)] 
documentation: dev-manual - Added reference to supported distros.

(From yocto-docs rev: 1e9ed539913e0c23bb9d6b36e992a3a6e7a91963)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Defines QEMU acronym.
Scott Rifenbark [Fri, 28 Sep 2012 13:36:30 +0000 (06:36 -0700)] 
documentation: dev-manual - Defines QEMU acronym.

(From yocto-docs rev: 665b9476a915031c30ada0f1d5cf80270486a404)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - Fixed broken release notes link.
Scott Rifenbark [Fri, 28 Sep 2012 13:32:20 +0000 (06:32 -0700)] 
documentation: dev-manual - Fixed broken release notes link.

(From yocto-docs rev: af8f343cf62a0fabd1ef2fabc654817487cab6aa)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - minor edits to manual limitations
Scott Rifenbark [Fri, 28 Sep 2012 13:22:13 +0000 (06:22 -0700)] 
documentation: dev-manual - minor edits to manual limitations

changed the example of what the manual does not provide to
be more appropriate.

(From yocto-docs rev: c4e7712cfd2e13b42f7322ffed6a1f84116df963)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: adt-manual, yocto-project-qs - Added tarball installer info
Scott Rifenbark [Thu, 27 Sep 2012 18:12:15 +0000 (12:12 -0600)] 
documentation: adt-manual, yocto-project-qs - Added tarball installer info

Turns out the .sh file that installs the tarball comes down without
executable permissions.  I added a sentence in each manual instructing
the user to set the permissions to the script before attempting to
run it.

(From yocto-docs rev: c1699971b3e03893aa1af5033e19d8f5c0b21ff4)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: poky.ent - updated distro to danny
Scott Rifenbark [Thu, 27 Sep 2012 17:37:10 +0000 (10:37 -0700)] 
documentation: poky.ent - updated distro to danny

(From yocto-docs rev: 5ad05236d1a7e0bea4d5733ef8fca92990f0796b)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: adt-manual - updates to adt_installer location choice
Scott Rifenbark [Wed, 26 Sep 2012 20:58:31 +0000 (13:58 -0700)] 
documentation: adt-manual - updates to adt_installer location choice

Fixes [YOCTO_#2930]

You can now select the install location directory instead of
automatically going to /opt/poky.  Some small edits to the
section that describes what happens when you fire off the
adt_installer script.

(From yocto-docs rev: 57f34c9b3a82222ed0ffc99e998614884b9a3486)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: adt-manual - Added dev package information
Scott Rifenbark [Wed, 26 Sep 2012 17:28:15 +0000 (10:28 -0700)] 
documentation: adt-manual - Added dev package information

Added a new paragraph to the section that talks about getting
images to state that if the user is not using or building a
core-image-*-dev type image and they want to develop against
their image, they need to be sure to include the development
packages in their image recipe.

Reporte-by: Jessica Zhang <jessica.zhang@intel.com>
(From yocto-docs rev: 8da6f6172d3ad27c1cf6d52fd3d029d75ec9d0fd)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: dev-manual - changed to directory for BSP example.
Scott Rifenbark [Wed, 26 Sep 2012 16:51:02 +0000 (09:51 -0700)] 
documentation: dev-manual - changed to directory for BSP example.

Section A.5.2.3 "Changing recipes-kernel" indicated that the user
needed to look in poky/meta-yocto/recipes-kernel/linux to find
the linux-yocto_3.2.bbappend file to locate correct SRCREV
values.  With 3.1, the team split out kernel and BSP stuff
even further by creating a poky/meta-yocto-bsp directory.
The example needs to reference that directory instead.

(From yocto-docs rev: 6e9b0ceb5ad24b1be8399bf5a0a83fdc30129f82)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: poky-ref-manual - Edits to PRINC glossary entry
Scott Rifenbark [Wed, 26 Sep 2012 13:43:15 +0000 (06:43 -0700)] 
documentation: poky-ref-manual - Edits to PRINC glossary entry

Fixes [YOCTO_#3095]

A minor edit to the glossary entry.  The fix for this bug spanned
two other commits:

418862011e79940ee378f64c6171618d29568014
7647cef96643b3723f80013c2c51ba6d7480122a

(From yocto-docs rev: 053e4558cc90eb1618e697394aff6d40edbeb3b1)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: Final edits to INC_PR glossary entry
Scott Rifenbark [Tue, 25 Sep 2012 17:45:24 +0000 (10:45 -0700)] 
documentation: Final edits to INC_PR glossary entry

These edits removed the .x eplanation at the end.  Paul Eggleton
concluded they do not matter and are confusing.

(From yocto-docs rev: 3f3e0b65bbfbb8da3ba1ebbb8dc78c3adf5a1c98)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: fixes KERNEL_FEATURES example
Scott Rifenbark [Tue, 25 Sep 2012 17:11:00 +0000 (10:11 -0700)] 
documentation: fixes KERNEL_FEATURES example

There was a malformed line in the example.  It needed a space,
which I added.

Reported-by: Brian Lloyd <blloyd@familyhonor.net>
(From yocto-docs rev: 892062d46463237375c49772cadb03356f636a82)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: INC_PR glossary definition changes
Scott Rifenbark [Tue, 25 Sep 2012 14:43:34 +0000 (07:43 -0700)] 
documentation: INC_PR glossary definition changes

A re-write of this glossary item.  The example provides more
detail and frames it in the context of a real example.

(From yocto-docs rev: 1a88abecf6ab5895d3c8ff801bd869a90a8a3fc1)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agodocumentation: PRINC variable glossary entry edits
Scott Rifenbark [Mon, 24 Sep 2012 16:29:59 +0000 (09:29 -0700)] 
documentation: PRINC variable glossary entry edits

Changed the wording in the front to get rid of redundancy
and specifically state that this variable affects .bbappend
files only.

(From yocto-docs rev: 7647cef96643b3723f80013c2c51ba6d7480122a)

Signed-off-by: Scott Rifenbark <scott.m.rifenbark@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: Fix bad merge of #2162
Bogdan Marinescu [Fri, 28 Sep 2012 15:06:06 +0000 (18:06 +0300)] 
bitbake: Fix bad merge of #2162

This patch fixes the bad merge of #2162 fixes on master.

(Bitbake rev: 5b84d88f2a47063197f9a20f8ebf0a7ccf22c2eb)

Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: hob: Error reports are done in a clearer way
Cristian Iorga [Fri, 28 Sep 2012 15:05:53 +0000 (18:05 +0300)] 
bitbake: hob: Error reports are done in a clearer way

For long errors (bigger than 200 letters),
the text box is scrollable and resizable
and text is selectable.

Additionaly, all message dialogs are modal.
Otherwise, a user could still interact with hob
even in an error case, leading to potential problems.

See design details in related bugs.

Fixes [YOCTO #2960], [YOCTO #2983]

(Bitbake rev: be8bf02f2b347edf5514cafc6cb6a44f71118736)

Signed-off-by: Cristian Iorga <cristian.iorga@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: hob/builddetailspage: fix failure_primary_action_button_clicked_cb
Constantin Musca [Fri, 28 Sep 2012 12:37:48 +0000 (15:37 +0300)] 
bitbake: hob/builddetailspage: fix failure_primary_action_button_clicked_cb

[YOCTO #3194]

(Bitbake rev: 660a449bdfd154fed556024f166e69c6931ff634)

Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: hob/builddetailspage: remove "back" button
Cristiana Voicu [Fri, 28 Sep 2012 12:50:12 +0000 (15:50 +0300)] 
bitbake: hob/builddetailspage: remove "back" button

When a build fails, there should not be a back button on the screen.
All available actions are provided within the failure notification,
so no back button is needed.

[YOCTO #3104]
(Bitbake rev: 03f978d21c7bfbf5f1afc741a43766030f2882a8)

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoyocto-bsp: fix dmaengine feature inclusion
Tom Zanussi [Thu, 27 Sep 2012 22:12:42 +0000 (17:12 -0500)] 
yocto-bsp: fix dmaengine feature inclusion

The cfg/dmaengine/dmaengine feature changed location to cfg/dmaengine
in the 3.4 yocto kernel's meta branch.  Add template code to include
the appropriate version.

(From meta-yocto rev: b650fcb7781e1c6af6254c98ae64d5ea81b46abc)

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoyocto-bsp: make vfat feature inclusion conditional on kernel version
Tom Zanussi [Thu, 27 Sep 2012 22:12:41 +0000 (17:12 -0500)] 
yocto-bsp: make vfat feature inclusion conditional on kernel version

The linux-yocto-3.2 cfg/vfat feature changed location to cfg/fs/vfat
in the 3.4 yocto kernel's meta branch.  Add template code to include
the appropriate version depending on kernel version.

Fixes [YOCTO #3178].

(From meta-yocto rev: d574c56c51789ec56ff50518ac2057607740eaa8)

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoxserver-xorg: Remove RCONFLICTS against xserver-xorg
Otavio Salvador [Fri, 28 Sep 2012 13:31:21 +0000 (10:31 -0300)] 
xserver-xorg: Remove RCONFLICTS against xserver-xorg

When merging the xserver-xorg fix the to use RDEPENDS in
xserver-xorg-module-exa the RCONFLICTS has not been removed by
mistake. This drops the RCONFLICTS to properly fix it.

(From OE-Core rev: d83e218dc480a09befddf8b934d774519cdbacb5)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agositeconfig: Clear cache before rebuilding
Richard Purdie [Fri, 28 Sep 2012 13:16:04 +0000 (14:16 +0100)] 
siteconfig: Clear cache before rebuilding

This ensures consistent build results and avoids build failures when compiler flags
change for example.

(From OE-Core rev: a5ff8396cad130f809f8f8da49bb38e6f80f923c)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoperl: Fix substitution madness
Richard Purdie [Fri, 28 Sep 2012 13:15:30 +0000 (14:15 +0100)] 
perl: Fix substitution madness

We're going around in circles trying to fix the sed expressions and making one case
work and others not work. This patch fixes the base configuration file so we have
non-overlapping substitutions. I've tried to significantly clean up various problems
that were occurring once and for all.

This will hopefully resolve all the issues people have been seeing with incorrect perl
paths.

(From OE-Core rev: 31ff70794ecc431431476f81c8934fff25383613)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoflac_1.2.1.bb: use TUNE_FEATURES to enable/disable altivec
Matthew McClintock [Mon, 10 Sep 2012 21:25:42 +0000 (16:25 -0500)] 
flac_1.2.1.bb: use TUNE_FEATURES to enable/disable altivec

(From OE-Core rev: bbcc66dc2d69821adb5b39b3642c368fb74ad4d7)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agotune-ppce6500.inc: add e6500 tune files
Matthew McClintock [Mon, 10 Sep 2012 21:20:05 +0000 (16:20 -0500)] 
tune-ppce6500.inc: add e6500 tune files

Also supports a new altivec TUNE_FEATURE

(From OE-Core rev: 4586c24ad156773568cd38794936b8af62e862be)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoarch-powerpc.inc: add altivec as a valid tune feature
Matthew McClintock [Mon, 10 Sep 2012 21:48:32 +0000 (16:48 -0500)] 
arch-powerpc.inc: add altivec as a valid tune feature

(From OE-Core rev: 026f8bc59b6c4cc23cc8a706117bf5b3555f2c7a)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoeglibc_2.16.bb: refresh fsl-ppc-no-fsqrt.patch for Freescale targets
Matthew McClintock [Wed, 26 Sep 2012 18:31:20 +0000 (13:31 -0500)] 
eglibc_2.16.bb: refresh fsl-ppc-no-fsqrt.patch for Freescale targets

(From OE-Core rev: 5635cf21520182e12c8a130707f8b47b5b4bec00)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoeglibc_2.16.bb: refresh ppc_slow_ieee754_sqrt.patch for Freescale targets
Matthew McClintock [Tue, 11 Sep 2012 20:43:00 +0000 (15:43 -0500)] 
eglibc_2.16.bb: refresh ppc_slow_ieee754_sqrt.patch for Freescale targets

Make same changes for e6500 fpu as done with others

(From OE-Core rev: a39f8c19d0ea5dc92271cbe36a03d638cb806e04)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoeglibc_2.16.bb: refresh ppc-sqrt_finite.patch for Freescale targets
Matthew McClintock [Wed, 26 Sep 2012 18:56:24 +0000 (13:56 -0500)] 
eglibc_2.16.bb: refresh ppc-sqrt_finite.patch for Freescale targets

(From OE-Core rev: eba4de86e7e628690232f2f7912b321a9e22701b)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoeglibc_2.16.bb: replace patch with updated version that supports e6500
Matthew McClintock [Tue, 11 Sep 2012 20:20:07 +0000 (15:20 -0500)] 
eglibc_2.16.bb: replace patch with updated version that supports e6500

(From OE-Core rev: a68536b75cf93beaa1578b33d489d9f30b58ba2e)

Signed-off-by: Matthew McClintock <msm@freescale.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoboost: Support enums in hash
Khem Raj [Fri, 28 Sep 2012 03:40:42 +0000 (20:40 -0700)] 
boost: Support enums in hash

Fixes builds which were building fine with previous versions of boost

(From OE-Core rev: 139b65affbf50c4230e344cd4d0205ef025bb7c3)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoflex,bison: Add nativesdk variants
Khem Raj [Fri, 28 Sep 2012 03:40:43 +0000 (20:40 -0700)] 
flex,bison: Add nativesdk variants

It is needed in some SDKs that we ship own
version of lex/yacc for sdk host

(From OE-Core rev: 536c9e42d316efb42651fdc2eba1b8548d74329d)

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoltp: add dependency libcap
Kang Kai [Fri, 28 Sep 2012 06:59:29 +0000 (14:59 +0800)] 
ltp: add dependency libcap

Similar to libaio, libcap is another dependency of ltp.

If libcap has been done populate_sysroot but rpm/ipk package is not
created, ltp will be compiled with libcap. So when install ltp to a
image, it complains that package libcap is not found.

[Yocto #2973]

(From OE-Core rev: bf5215f095e7e610508fcefe1224c9289c6c56cd)

Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: knotty: Allow displaying of status when no tasks are active
Richard Purdie [Thu, 27 Sep 2012 21:56:02 +0000 (21:56 +0000)] 
bitbake: knotty: Allow displaying of status when no tasks are active

The console can appear to hang when no tasks are executing even if bitbake
is iterating through a large number of tasks behind the scenes.

This patch tweaks the footer code to display a status even when no tasks
are active to give the user better feedback about what is happening.

(Bitbake rev: 0a950ee14fce3a0cb938c22d7c717dc93ce6e25f)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: parse/ConfHandler: Add negative lookahead to spot some quoting problems
Richard Purdie [Thu, 27 Sep 2012 22:07:28 +0000 (23:07 +0100)] 
bitbake: parse/ConfHandler: Add negative lookahead to spot some quoting problems

Syntax like:

FOO = "bar" # eek"

would result in FOO taking the value 'bar" #eek' which is clearly
not the intention. Whilst our metadata is riddled with mixtures of even
quotes like:

FOO = "d.getVar("X")"

odd numbers of quotes seem rare. This patch adds detection of one odd
quote which we don't have any of in OE-Core so it seems a valid sanity
improvement.

(Bitbake rev: 5f892d9b083550e20e37576070ec7d1a94cc88fe)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: hob: set modal flag on progress dialog
Ross Burton [Thu, 27 Sep 2012 15:46:09 +0000 (16:46 +0100)] 
bitbake: hob: set modal flag on progress dialog

The entire interface isn't usable whilst the progress dialog is up so we might
as well set the modal flag so that some WMs (such as GNOME 3) can do nice things
with the dialog (such as pin it to the titlebar).

(Bitbake rev: 9a19fe8e8c65b75dbbb4ae5401df6d6838495bdd)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: hob/settings: implement a new tab in settings dialog to show SSTATE_MIRRORS
Cristiana Voicu [Wed, 26 Sep 2012 10:44:08 +0000 (13:44 +0300)] 
bitbake: hob/settings: implement a new tab in settings dialog to show SSTATE_MIRRORS

Add a new tab to show correctly SSTATE_MIRRORS variable. Now you can add new
mirrors or delete mirror. "info" image was also changed( it is smaller, so it
can be next to labels).
>From "Build environment" tab, SSTATE_DIR and SSTATE_MIRRORS vars were removed.

[YOCTO #2893]

(Bitbake rev: ae27a7cf4d31a1b99840a761a27fd6256cb1dd9b)

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agosstate: Relax the duplicate file whitelist for now
Richard Purdie [Thu, 27 Sep 2012 22:06:06 +0000 (23:06 +0100)] 
sstate: Relax the duplicate file whitelist for now

do_package is a machine specific task at the moment due to packagedata. This means
do_package tasks and their dependencies rerun between different machines
with various duplicate file installations. There are plans to fix this but they're
too invasive before release.

This patch relaxes the whitelist for sstate duplicate file detection to account
for this. Post-release, we re-enable stricter settings once do_package is not
machine specific.

(From OE-Core rev: c858259ce1881c6284f1fc2790c225c81e4a751e)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agotcl: Fix dangerous do_install staging references
Richard Purdie [Thu, 27 Sep 2012 22:05:27 +0000 (23:05 +0100)] 
tcl: Fix dangerous do_install staging references

Nothing should ever be poking files directly into the staging/sysroot
directories, it should always go through ${D}.

This patch ensures this recipe does this and hence fixes various
potential build issues such as lack of sstate tracking of files.

(From OE-Core rev: 7642143760c0157aba80cea7b427024ee097cc2c)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoxserver-xorg: Use rdepends to ensure xserver-xorg-module-exa match version
Otavio Salvador [Thu, 27 Sep 2012 18:47:49 +0000 (15:47 -0300)] 
xserver-xorg: Use rdepends to ensure xserver-xorg-module-exa match version

This fix the installation of xserver-xorg-module-exa package at rootfs
using opkg. It were failing as conflicts where not working properly.

(From OE-Core rev: 8fb19876215a8c7918361e8360c4342d1a933a93)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agolicense.conf/bbclass: Move globals to license.conf
Elizabeth Flanagan [Wed, 26 Sep 2012 21:50:09 +0000 (14:50 -0700)] 
license.conf/bbclass: Move globals to license.conf

This requires the changes to bitbake.conf that allow parsing of
license.conf.

As we should now be parsing license.conf, we can move some globals
out of license.bblcass and into the conf file.

(From OE-Core rev: 03e6a7cd27ed109a011fac09cf04412f87f31c3a)

Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake.conf: parse license config
Elizabeth Flanagan [Wed, 26 Sep 2012 21:50:08 +0000 (14:50 -0700)] 
bitbake.conf: parse license config

license.conf hasn't been being parsed. It probably should be.

(From OE-Core rev: b393b31fee3b4d42890c2bcbba09ea231c131dea)

Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agolicense.bbclass: Variable standardization
Elizabeth Flanagan [Wed, 26 Sep 2012 21:50:07 +0000 (14:50 -0700)] 
license.bbclass: Variable standardization

The variable mentioned in license.conf is LICENSE_PATH. The variable
used in license.bbclass is LICENSE_DIR. Conforming to what is in
license.conf

(From OE-Core rev: c6e13d9cd26d016ab06e7447b307d413e1331aa0)

Signed-off-by: Elizabeth Flanagan <elizabeth.flanagan@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agosanity: Added explicit network error status in SanityCheckFailed event
Bogdan Marinescu [Wed, 26 Sep 2012 14:00:10 +0000 (17:00 +0300)] 
sanity: Added explicit network error status in SanityCheckFailed event

If we fail a network test, a special flag is set in the SanityChekFailed
event. This helps Hob identify the network error properly and display
a special message to the user.

[YOCTO #3025]

(From OE-Core rev: 7877c4344db89237bba5f9a03342bfd9a03aebbf)

Signed-off-by: Bogdan Marinescu <bogdan.a.marinescu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoinitramfs: Make mkdir not fail
Damien Lespiau [Thu, 27 Sep 2012 14:20:51 +0000 (15:20 +0100)] 
initramfs: Make mkdir not fail

This patch make "mkdir foo" not fail if foo already exists.

(From OE-Core rev: 2bf5026933b733701d4d339e01a4f5e4468f368e)

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoinitrd: Spawn an emergency shell when something goes wrong
Damien Lespiau [Thu, 27 Sep 2012 14:20:50 +0000 (15:20 +0100)] 
initrd: Spawn an emergency shell when something goes wrong

set -e allows to exit if a command fails. We install a trap and execute
emergency_shell() when either the init script exits or when ctrl-c is
typed (say if we are stuck somewhere and we want to debug it).

(From OE-Core rev: ae5e2bd994e3f60d3803ab56e6ed34d08fbc56f0)

Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agosanity.bbclass: bblayers.conf should be updated automatically
Constantin Musca [Thu, 27 Sep 2012 12:39:55 +0000 (15:39 +0300)] 
sanity.bbclass: bblayers.conf should be updated automatically

- add check_bblayers_conf bitbake function which does the bblayers.conf
v4 -> v5 update if necessary (every layer should make its specific
bblayers.conf upgrades appending to the check_bblayers_conf function)
- we ask the user to re-run bitbake because we can't trigger reparsing
without being invasive

[YOCTO #3082]

(From OE-Core rev: 03ad4edace5db9c6e15ca776d06d20b7d4e42afc)

Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agorunqemu-internal: don't append an empty element to PATH
Scott Garman [Wed, 26 Sep 2012 18:02:27 +0000 (11:02 -0700)] 
runqemu-internal: don't append an empty element to PATH

Bitbake fails to run when an empty element exists in $PATH. Avoid
creating this situation when $CROSSPATH is not set.

This fixes bug [YOCTO #3101]

(From OE-Core rev: 1f7f590369eaa76dc970c9cffd1f0db53ce08c00)

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agooe-find-native-sysroot: show bitbake errors to user
Scott Garman [Wed, 26 Sep 2012 18:02:26 +0000 (11:02 -0700)] 
oe-find-native-sysroot: show bitbake errors to user

Ran into another bug that was masked by hiding a bitbake error message.
This catches this situation and displays the error to the user.

Also includes whitespace fixes.

(From OE-Core rev: 435ffeefe4a1df53335fd397ff404bed7deae2df)

Signed-off-by: Scott Garman <scott.a.garman@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agogst-plugins-good: make pulseaudio support dependent on DISTRO_FEATURES
Paul Eggleton [Wed, 26 Sep 2012 14:01:40 +0000 (15:01 +0100)] 
gst-plugins-good: make pulseaudio support dependent on DISTRO_FEATURES

This should be no change to the previous situation unless you
explicitly have pulseaudio in DISTRO_FEATURES_BACKFILL_CONSIDERED
(currently).

(From OE-Core rev: 3d28d16042373e699fabd8576458f65d63463bb9)

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoxserver-xorg: merge version-specific .inc into .bb
Ross Burton [Mon, 24 Sep 2012 12:30:02 +0000 (13:30 +0100)] 
xserver-xorg: merge version-specific .inc into .bb

The version-specific .inc was shared with the xserver-xorg-lite package, but
that doesn't exist anymore.

(From OE-Core rev: 09b1bf350384722127ac9f098a72371cf27c3822)

Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoeglibc: Fix for dynamic linker broken offset
Andrei Dinu [Mon, 24 Sep 2012 15:12:28 +0000 (18:12 +0300)] 
eglibc: Fix for dynamic linker broken offset

Solution provided by Donn Seeley in bug 1443:
https://bugzilla.yoctoproject.org/show_bug.cgi?id=1443

worked when testing with core-image-sato-sdk for qemuarm.

[YOCTO #2577]

(From OE-Core rev: 33ec4222c05c985b737e88850259218cf8336d46)

Signed-off-by: Andrei Dinu <andrei.adrianx.dinu@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agocogl: Add a missing depends on libxdamage
Otavio Salvador [Mon, 24 Sep 2012 18:23:19 +0000 (15:23 -0300)] 
cogl: Add a missing depends on libxdamage

During a from scratch build test, cogl build failed due a missing
dependency on libxdamage.

(From OE-Core rev: 959a2f6d88d8fa6874fff83b7a1f0e7d4e36b887)

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: Add missing file from previous commit
Richard Purdie [Fri, 28 Sep 2012 08:55:57 +0000 (09:55 +0100)] 
bitbake: Add missing file from previous commit

(Bitbake rev: 5bc0f0e70f7272ff84aaeca43dcf4bb4bc0f5c3f)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agoRevert "autotools.bbclass: using relative paths for acpaths"
Richard Purdie [Thu, 27 Sep 2012 16:56:56 +0000 (17:56 +0100)] 
Revert "autotools.bbclass: using relative paths for acpaths"

This reverts commit aa66ef6598c84231577d139ec7be413e73fac2b1 since
bdwgc-native fails to build after it. Anything which runs with a
sub-configure will fail after this change. It therefore needs
rethinking.

(From OE-Core rev: f95a9e2c292a1551861220270838cf1eaaba85b9)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
12 years agobitbake: hob/builder: When you stop a build, Hob should tell you stopping is happening
Constantin Musca [Wed, 26 Sep 2012 08:08:15 +0000 (11:08 +0300)] 
bitbake: hob/builder: When you stop a build, Hob should tell you stopping is happening

- use the progress bar text to indicate the stopping status
- the text should say: 'Stopping the build...'

[YOCTO #3152]

(Bitbake rev: 6f59db920ca4f527606670969c79afbf34eaff81)

Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>