diff options
author | Koen Kooi <koen@openembedded.org> | 2006-02-23 11:44:25 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-02-23 11:44:25 +0000 |
commit | 6a44a40bb78b471889cc33b8624574e132a3213f (patch) | |
tree | 429cd44df142fdb9bfb25a4b3b8f6af09d3944ca /packages/linux/devkitidp-pxa255-kernel_2.6.11.bb | |
parent | 4df113a4810863c937b04752365587061974a583 (diff) |
linux kernels: use DEPLOY_DIR_IMAGE instead in DEPLOY_DIR/images
Diffstat (limited to 'packages/linux/devkitidp-pxa255-kernel_2.6.11.bb')
-rw-r--r-- | packages/linux/devkitidp-pxa255-kernel_2.6.11.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/linux/devkitidp-pxa255-kernel_2.6.11.bb b/packages/linux/devkitidp-pxa255-kernel_2.6.11.bb index a0571bedb7..0b8b6ab63a 100644 --- a/packages/linux/devkitidp-pxa255-kernel_2.6.11.bb +++ b/packages/linux/devkitidp-pxa255-kernel_2.6.11.bb @@ -31,8 +31,8 @@ do_configure_prepend() { } do_deploy() { - install -d ${DEPLOY_DIR}/images - install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR}/images/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.bin + install -d ${DEPLOY_DIR_IMAGE} + install -m 0644 arch/${ARCH}/boot/${KERNEL_IMAGETYPE} ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGETYPE}-${MACHINE}-${DATETIME}.bin } do_deploy[dirs] = "${S}" |