diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 14:35:08 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 14:35:08 +0100 |
commit | 061df5abaf727741b11c05db2c47e2778f96d96e (patch) | |
tree | a79062441b0bd9564320c951cc330a268b28994e /meta/conf/distro | |
parent | 4e0ee648b4c18b770aba11921370258f3e2aaeef (diff) | |
download | poky-061df5abaf727741b11c05db2c47e2778f96d96e.tar.gz |
meta-toolchain: Improve layout
* Switch from /usr/local/poky to /opt/poky
* Use a sysroots directory for both the "native" sdk binaries and the target
* Drop the meta-toolchain extras packages. These are replaced with packaged-staging.
* Change the nativesdk layout to match our usual filesystem layout
* Clean up various hardcoded prefix references
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/conf/distro')
-rw-r--r-- | meta/conf/distro/poky.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/distro/poky.conf b/meta/conf/distro/poky.conf index 57231fd6ef..951e156c25 100644 --- a/meta/conf/distro/poky.conf +++ b/meta/conf/distro/poky.conf | |||
@@ -58,8 +58,8 @@ require conf/distro/include/poky-${POKYMODE}.inc | |||
58 | POKYLIBC ?= "glibc" | 58 | POKYLIBC ?= "glibc" |
59 | require conf/distro/include/poky-${POKYLIBC}.inc | 59 | require conf/distro/include/poky-${POKYLIBC}.inc |
60 | 60 | ||
61 | SDK_NAME = "${DISTRO}-${POKYMODE}-${POKYLIBC}-${SDK_ARCH}-${TARGET_ARCH}" | 61 | SDK_NAME = "${DISTRO}-${POKYLIBC}-${SDK_ARCH}-${TARGET_ARCH}" |
62 | SDKPATH = "/usr/local/${DISTRO}/${POKYMODE}-${POKYLIBC}" | 62 | SDKPATH = "/opt/${DISTRO}" |
63 | 63 | ||
64 | CACHE = "${TMPDIR}/cache/${POKYMODE}-${POKYLIBC}${@['', '/' + str(bb.data.getVar('MACHINE', d, 1))][bool(bb.data.getVar('MACHINE', d, 1))]}${@['', '/' + str(bb.data.getVar('SDKMACHINE', d, 1))][bool(bb.data.getVar('SDKMACHINE', d, 1))]}" | 64 | CACHE = "${TMPDIR}/cache/${POKYMODE}-${POKYLIBC}${@['', '/' + str(bb.data.getVar('MACHINE', d, 1))][bool(bb.data.getVar('MACHINE', d, 1))]}${@['', '/' + str(bb.data.getVar('SDKMACHINE', d, 1))][bool(bb.data.getVar('SDKMACHINE', d, 1))]}" |
65 | 65 | ||