diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2013-05-10 10:31:45 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-10 10:25:29 +0100 |
commit | 843e422879eb963afb0aa646ef656e94d6aa484f (patch) | |
tree | bd7b5364c6fa42751de62da187d9cd234f7f38b9 /meta/classes/bootimg.bbclass | |
parent | 642afb4d11ba2a5034241e39b4c8e807a76e8d0d (diff) | |
download | poky-843e422879eb963afb0aa646ef656e94d6aa484f.tar.gz |
boot-directdisk/bootimg/image-vmdk: remove more nostamps for image generation
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}.*"
(From OE-Core rev: 45c7dab5d51065c7b24ab5292f8e9d3104eb0626)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/bootimg.bbclass')
-rw-r--r-- | meta/classes/bootimg.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/bootimg.bbclass b/meta/classes/bootimg.bbclass index 117929e3e3..90a241d9b3 100644 --- a/meta/classes/bootimg.bbclass +++ b/meta/classes/bootimg.bbclass | |||
@@ -198,4 +198,3 @@ python do_bootimg() { | |||
198 | } | 198 | } |
199 | 199 | ||
200 | addtask bootimg before do_build | 200 | addtask bootimg before do_build |
201 | do_bootimg[nostamp] = "1" | ||