summaryrefslogtreecommitdiffstats
path: root/meta/classes/image.bbclass
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2011-02-15 22:54:38 -0600
committerSaul Wold <sgw@linux.intel.com>2011-02-16 07:34:51 -0800
commit110f1f9418ba39ba4136d7aa7c3d52c2a10f47f0 (patch)
treec59c4e480f56cfa111f985ee1209648ce3a0f57f /meta/classes/image.bbclass
parent4ac789b9588ff8d2abaf4c3893c10bc6369baeee (diff)
downloadpoky-110f1f9418ba39ba4136d7aa7c3d52c2a10f47f0.tar.gz
image.bbclass: Disable shell debug messages
By default image had a "set -x" to enable shell debug messages, this adds a lot of overhead to the system due to logging. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r--meta/classes/image.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 14de3e1994..2cc17e1721 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -96,7 +96,7 @@ do_build[nostamp] = "1"
96# Must call real_do_rootfs() from inside here, rather than as a separate 96# Must call real_do_rootfs() from inside here, rather than as a separate
97# task, so that we have a single fakeroot context for the whole process. 97# task, so that we have a single fakeroot context for the whole process.
98fakeroot do_rootfs () { 98fakeroot do_rootfs () {
99 set -x 99 #set -x
100 rm -rf ${IMAGE_ROOTFS} 100 rm -rf ${IMAGE_ROOTFS}
101 mkdir -p ${IMAGE_ROOTFS} 101 mkdir -p ${IMAGE_ROOTFS}
102 mkdir -p ${DEPLOY_DIR_IMAGE} 102 mkdir -p ${DEPLOY_DIR_IMAGE}