From: Richard Purdie Date: Tue, 7 Sep 2010 14:13:28 +0000 (+0100) Subject: linux: Fix the compulab image post deploy function by making it a postfunc X-Git-Tag: 2011-1~4585 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=b86a5977e136fb8c2ccd4f7af93612f837b0388a;p=openembedded-core.git linux: Fix the compulab image post deploy function by making it a postfunc Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-kernel/linux/linux_2.6.23.bb b/meta/recipes-kernel/linux/linux_2.6.23.bb index 5d5c21b9d3..4ced980c83 100644 --- a/meta/recipes-kernel/linux/linux_2.6.23.bb +++ b/meta/recipes-kernel/linux/linux_2.6.23.bb @@ -34,14 +34,14 @@ CMDLINE_cm-x270 = "console=${CMX270_CONSOLE_SERIAL_PORT},38400 monitor=8 bpp=16 FILES_kernel-image_cm-x270 = "" -python do_compulab_image() { +python compulab_image() { import os import os.path import struct machine = bb.data.getVar('MACHINE', d, 1) if machine == "cm-x270": - deploy_dir = bb.data.getVar('DEPLOY_DIR_IMAGE', d, 1) + deploy_dir = bb.data.getVar('DEPLOYDIR', d, 1) kernel_file = os.path.join(deploy_dir, bb.data.expand('${KERNEL_IMAGE_BASE_NAME}', d) + '.bin') img_file = os.path.join(deploy_dir, bb.data.expand('${KERNEL_IMAGE_BASE_NAME}', d) + '.cmx270') @@ -68,8 +68,7 @@ python do_compulab_image() { pass os.symlink(img_file, link_file) } - -addtask compulab_image after do_deploy before do_package +do_deploy[postfuncs] += "compulab_image" do_kernel_image() {