meta-toolchain: Create task-poky-standalone-sdk-host and target tasks packages and use these in meta-toolchain to avoid package renaming problems.

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2038 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2007-06-28 11:09:21 +00:00
parent 40c209b79d
commit d7ff06986b
3 changed files with 27 additions and 25 deletions

View File

@@ -17,21 +17,9 @@ SDK_DEPLOY = "${TMPDIR}/deploy/sdk"
IPKG_HOST = "ipkg-cl -f ${SDK_DIR}/ipkg-host.conf -o ${SDK_OUTPUT}"
IPKG_TARGET = "ipkg-cl -f ${SDK_DIR}/ipkg-target.conf -o ${SDK_OUTPUT}/${prefix}"
HOST_INSTALL = "\
binutils-cross-sdk \
gcc-cross-sdk \
g++ \
cpp \
libgcc \
libgcc-dev \
libstdc++ \
libstdc++-dev \
gdb-cross \
"
HOST_INSTALL = "task-poky-standalone-sdk-host"
TARGET_INSTALL = "\
task-sdk-bare \
"
TARGET_INSTALL = "task-poky-standalone-sdk-target"
RDEPENDS = "${TARGET_INSTALL} ${HOST_INSTALL}"
@@ -60,7 +48,7 @@ EOF
mkdir -p ${SDK_OUTPUT}
${IPKG_HOST} update
${IPKG_HOST} -nodeps install ${HOST_INSTALL}
${IPKG_HOST} -force-depends install ${HOST_INSTALL}
${IPKG_TARGET} update
${IPKG_TARGET} install ${TARGET_INSTALL}

View File

@@ -0,0 +1,20 @@
DESCRIPTION = "Host packages for the standalone SDK (external toolchain)"
PR = "r0"
LICENSE = "MIT"
ALLOW_EMPTY = "1"
inherit sdk
PACKAGES = "${PN}"
RDEPENDS_${PN} = "\
binutils-cross-sdk \
gcc-cross-sdk \
g++ \
cpp \
libgcc \
libgcc-dev \
libstdc++ \
libstdc++-dev \
gdb-cross \
"

View File

@@ -1,13 +1,11 @@
DESCRIPTION = "SDK packages"
PR = "r16"
DESCRIPTION = "Target packages for the standalone SDK (external toolchain)"
PR = "r0"
LICENSE = "MIT"
ALLOW_EMPTY = "1"
PACKAGES = "\
task-sdk-bare \
"
PACKAGES = "${PN}"
RDEPENDS_task-sdk-bare = "\
RDEPENDS_${PN} = "\
glibc \
glibc-dev \
glibc-utils \
@@ -22,7 +20,3 @@ RDEPENDS_task-sdk-bare = "\
libgcc \
libstdc++ \
"
RRECOMMENDS_task-sdk-bare = "\
glibc-binary-localedata-en-gb \
"