All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] wic: bootimg-partition: Stop removing whole workdir
@ 2015-02-04 22:49 Alexandre Belloni
  2015-02-04 23:18 ` Tom Zanussi
  2015-02-05 22:01 ` Tom Zanussi
  0 siblings, 2 replies; 5+ messages in thread
From: Alexandre Belloni @ 2015-02-04 22:49 UTC (permalink / raw)
  To: Tom Zanussi; +Cc: openembedded-core

Stop removing the whole working directory as this is also removing
eventual previously created partition images, leading to image creation
failures.

Signed-off-by: Alexandre Belloni <alexandre.belloni@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
-- 
2.1.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-02-05 22:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-02-04 22:49 [PATCH] wic: bootimg-partition: Stop removing whole workdir Alexandre Belloni
2015-02-04 23:18 ` Tom Zanussi
2015-02-04 23:39   ` Alexandre Belloni
2015-02-05  8:36     ` Maciej Borzecki
2015-02-05 22:01 ` Tom Zanussi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.