bitbake.conf/package: Collapse PKGDATA_DIR into a single machine specific directory
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 13 Sep 2013 12:35:31 +0000 (13:35 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 14 Sep 2013 07:21:00 +0000 (08:21 +0100)
commit340ff6bf6e409c6e88cec69c8e4435cc062d3ea4
treefeaae52ced6ffeddbab804bfda1b282864aa7cd8
parent504d972da8f8bcc82c9a67af6ae4172890e7fd26
bitbake.conf/package: Collapse PKGDATA_DIR into a single machine specific directory

Currently we have a hierarchy of pkgdata directories and the code has to put together
a search path and look through each in turn until it finds the data it needs.

This has lead to a number of hardcoded paths and file globing which
is unpredictable and undesirable. Worse, certain tricks that should be
easy like a GL specific package architecture become problematic with the
curretn search paths.

With the modern sstate code, we can do better and construct a single pkgdata
directory for each machine in just the same way as we do for the sysroot. This
is already tried and well tested. With such a single directory, all the code that
iterated through multiple pkgdata directories and simply be removed and give
a significant simplification of the code. Even existing build directories adapt
to the change well since the package contents doesn't change, just the location
they're installed to and the stamp for them.

The only complication is the we need a different shlibs directory for each
multilib. These are only used by package.bbclass and the simple fix is to
add MLPREFIX to the shlib directory name. This means the multilib packages will
repackage and the sstate checksum will change but an existing build directory
will adapt to the changes safely.

It is close to release however I believe the benefits this patch give us
are worth consideration for inclusion and give us more options for dealing
with problems like the GL one. It also sets the ground work well for
shlibs improvements in 1.6.

(From OE-Core rev: 1b8e4abd2d9c0901d38d89d0f944fe1ffd019379)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
14 files changed:
meta/classes/allarch.bbclass
meta/classes/buildhistory.bbclass
meta/classes/cross-canadian.bbclass
meta/classes/image.bbclass
meta/classes/license.bbclass
meta/classes/multilib.bbclass
meta/classes/package.bbclass
meta/classes/package_rpm.bbclass
meta/classes/packageinfo.bbclass
meta/conf/bitbake.conf
meta/conf/multilib.conf
meta/lib/oe/packagedata.py
meta/recipes-devtools/gcc/gcc-common.inc
scripts/oe-pkgdata-util