diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-08-13 15:16:58 +0100 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-08-13 17:16:19 +0100 |
commit | 1c4cc60e282ef153cbcbbe56bb739912a0e0ea0c (patch) | |
tree | fd36c043c0e8a189c327b98eb3d305572af616f6 /meta/packages/linux | |
parent | 2e0d6df6c198c559db42a3b92b847555f46d1a35 (diff) | |
download | openembedded-core-1c4cc60e282ef153cbcbbe56bb739912a0e0ea0c.tar.gz openembedded-core-1c4cc60e282ef153cbcbbe56bb739912a0e0ea0c.tar.bz2 openembedded-core-1c4cc60e282ef153cbcbbe56bb739912a0e0ea0c.zip |
kernel-arch: x86-64 is no longer a valid architecture, map it to x86
Also use the exported (and re-mapped) ARCH rather than TARGET_ARCH in the
linux-wrs recipe.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'meta/packages/linux')
-rw-r--r-- | meta/packages/linux/linux-wrs_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/packages/linux/linux-wrs_git.bb b/meta/packages/linux/linux-wrs_git.bb index 60248f931c..427c97b1b0 100644 --- a/meta/packages/linux/linux-wrs_git.bb +++ b/meta/packages/linux/linux-wrs_git.bb @@ -37,7 +37,7 @@ do_patch() { defconfig=${WORKDIR}/defconfig fi - createme ${TARGET_ARCH} ${WRMACHINE}-${LINUX_KERNEL_TYPE} ${defconfig} + createme ${ARCH} ${WRMACHINE}-${LINUX_KERNEL_TYPE} ${defconfig} if [ $? -ne 0 ]; then echo "ERROR. Could not create ${WRMACHINE}-${LINUX_KERNEL_TYPE}" exit 1 |