[OE-core] [PATCH] wic: bootimg-partition: Stop removing whole workdir
Tom Zanussi
tom.zanussi at linux.intel.com
Wed Feb 4 23:18:15 UTC 2015
On Wed, 2015-02-04 at 23:49 +0100, Alexandre Belloni wrote:
> Stop removing the whole working directory as this is also removing
> eventual previously created partition images, leading to image creation
> failures.
>
I'm surprised - I've never run into a problem like this. Can you give
more details and/or a reproducer?
Thanks,
Tom
> Signed-off-by: Alexandre Belloni <alexandre.belloni at free-electrons.com>
> ---
> scripts/lib/wic/plugins/source/bootimg-partition.py | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/lib/wic/plugins/source/bootimg-partition.py b/scripts/lib/wic/plugins/source/bootimg-partition.py
> index 6ba39a01f700..c5eb7b8b801b 100644
> --- a/scripts/lib/wic/plugins/source/bootimg-partition.py
> +++ b/scripts/lib/wic/plugins/source/bootimg-partition.py
> @@ -66,7 +66,7 @@ class BootimgPartitionPlugin(SourcePlugin):
> - copies all files listed in IMAGE_BOOT_FILES variable
> """
> hdddir = "%s/boot" % cr_workdir
> - rm_cmd = "rm -rf %s" % cr_workdir
> + rm_cmd = "rm -rf %s/boot" % cr_workdir
> exec_cmd(rm_cmd)
>
> install_cmd = "install -d %s" % hdddir
More information about the Openembedded-core
mailing list