mirror of
https://git.yoctoproject.org/poky
synced 2026-04-17 09:32:12 +02:00
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:
@@ -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}
|
||||
|
||||
20
meta/packages/tasks/task-poky-standalone-sdk-host.bb
Normal file
20
meta/packages/tasks/task-poky-standalone-sdk-host.bb
Normal 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 \
|
||||
"
|
||||
@@ -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 \
|
||||
"
|
||||
Reference in New Issue
Block a user