]> code.ossystems Code Review - openembedded-core.git/commitdiff
boot-directdisk/bootimg/image-vmdk: remove more nostamps for image generation
authorRobert Yang <liezhi.yang@windriver.com>
Fri, 10 May 2013 02:31:45 +0000 (10:31 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 10 May 2013 09:25:01 +0000 (10:25 +0100)
We have removed the nostamps for do_rootfs and do_build, so it seems
reasonable to remove the stamps for do_bootimg, do_bootdirectdisk and
do_vmdkimg.

The current problem is that the do_vmdkimg always re-run, but the
do_rootfs may not, so the code like below in the do_rootfs function
doesn't re-run and cause problems (the symlink exists when the
do_vmdkimg creates the symlink again):

    if d.getVar('IMAGE_LINK_NAME', True):
        cmds += "\trm -f ${DEPLOY_DIR_IMAGE}/${IMAGE_LINK_NAME}.*"

Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/boot-directdisk.bbclass
meta/classes/bootimg.bbclass
meta/classes/image-vmdk.bbclass

index d265485bb7e8f2d5b32c66ba3f976b6b0a74c515..2a8823da20119606852554b66b6fe64cec781ad5 100644 (file)
@@ -97,4 +97,3 @@ python do_bootdirectdisk() {
 }
 
 addtask bootdirectdisk before do_build
-do_bootdirectdisk[nostamp] = "1"
index 117929e3e30f86f18943186b5d05e0e2f767a7be..90a241d9b3401053f25dca0b8655275f811f91df 100644 (file)
@@ -198,4 +198,3 @@ python do_bootimg() {
 }
 
 addtask bootimg before do_build
-do_bootimg[nostamp] = "1"
index 6f7df3f3eeb96b84914ac78116e734e953f7ecaf..089d019cf1f827866071e9ba68cd0b50176ac58e 100644 (file)
@@ -28,7 +28,6 @@ python do_vmdkimg() {
 
 #addtask vmdkimg after do_bootimg before do_build
 addtask vmdkimg after do_bootdirectdisk before do_build
-do_vmdkimg[nostamp] = "1"
 
 do_vmdkimg[depends] += "qemu-native:do_populate_sysroot"