aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-07-24 15:43:53 +0100
committerMartin Dietze <mdietze@gmail.com>2013-03-02 17:26:27 +0100
commit663589f836ce84bebe8cb9431d66494ef51a2082 (patch)
treeee1c4840251a5199620213eee11541d89a9171ff /classes
parent7dcef0a1d9e30173db4bcd9499a23275b4645d44 (diff)
downloadopenembedded-663589f836ce84bebe8cb9431d66494ef51a2082.tar.gz
Revert "image.bbclass: reorder do_rootfs"
This reverts commit 736c06e8d8efa79d3d2bc512f13a51f0f63412e2 as this change breaks future versions of bitbake. See the OE mailing list, in the "Bitbake runqueue performance improvement" thread for a discussion on why this isn't the best way to solve multi-image problem and that other better solutions exist.
Diffstat (limited to 'classes')
-rw-r--r--classes/image.bbclass3
1 files changed, 1 insertions, 2 deletions
diff --git a/classes/image.bbclass b/classes/image.bbclass
index 89d27120c1..cdd01054c2 100644
--- a/classes/image.bbclass
+++ b/classes/image.bbclass
@@ -105,7 +105,6 @@ LINGUAS_INSTALL = "${@" ".join(map(lambda s: "locale-base-%s" % s, bb.data.getVa
do_rootfs[nostamp] = "1"
do_rootfs[dirs] = "${TOPDIR}"
do_build[nostamp] = "1"
-do_install[nostamp] = "1"
# Must call real_do_rootfs() from inside here, rather than as a separate
# task, so that we have a single fakeroot context for the whole process.
@@ -234,5 +233,5 @@ rootfs_update_timestamp () {
# export the zap_root_password, create_etc_timestamp and remote_init_link
EXPORT_FUNCTIONS zap_root_password create_etc_timestamp remove_init_link do_rootfs make_zimage_symlink_relative set_image_autologin rootfs_update_timestamp
-addtask rootfs after do_compile before do_install
+addtask rootfs before do_build after do_install
addtask deploy_to after do_rootfs