[oe-commits] Chris Larson : image.bbclass: remove tmp/ rootfs after image creation unless you set a variable

git version control git at git.openembedded.org
Wed Jun 17 17:41:51 UTC 2009


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 4a39c2f6fa894959419ac4a097ac97530c335726
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=4a39c2f6fa894959419ac4a097ac97530c335726

Author: Chris Larson <clarson at mvista.com>
Date:   Wed Jun 10 17:20:23 2009 -0700

image.bbclass: remove tmp/rootfs after image creation unless you set a variable

Set IMAGE_KEEPROOTFS to something other than the empty string to keep
tmp/rootfs around after image creation, otherwise it will be removed, as it's
not a fully functional filesystem, and causes much confusion among users as a
result.

Signed-off-by: Chris Larson <clarson at mvista.com>
Acked-by: Tom Rini <trini at embeddedalley.com>
Acked-by: Marcin Juszkiewicz <marcin at juszkiewicz.com.pl>

---

 classes/image.bbclass |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/classes/image.bbclass b/classes/image.bbclass
index f0cc3b3..0d798fa 100644
--- a/classes/image.bbclass
+++ b/classes/image.bbclass
@@ -17,6 +17,9 @@ IMAGE_INITSCRIPTS ?= "initscripts"
 #
 IMAGE_LOGIN_MANAGER ?= "tinylogin"
 
+IMAGE_KEEPROOTFS ?= ""
+IMAGE_KEEPROOTFS[doc] = "Set to non-empty to keep ${IMAGE_ROOTFS} around after image creation."
+
 IMAGE_BOOT ?= "${IMAGE_INITSCRIPTS} \
 ${IMAGE_DEV_MANAGER} \
 ${IMAGE_INIT_MANAGER} \
@@ -133,6 +136,7 @@ fakeroot do_rootfs () {
 	${IMAGE_POSTPROCESS_COMMAND}
 	
 	${MACHINE_POSTPROCESS_COMMAND}
+	${@['rm -rf ${IMAGE_ROOTFS}', ''][bool(d.getVar("IMAGE_KEEPROOTFS", 1))]}
 }
 
 do_deploy_to[nostamp] = "1"





More information about the Openembedded-commits mailing list