diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2006-08-20 22:07:17 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2006-08-20 22:07:17 +0000 |
commit | 959a8d0369208ec82a46f14e265dd8ab58668ef9 (patch) | |
tree | b7238d6e3bbeb0338f4a929daad393cdf0fa07f2 /classes/image_ipk.bbclass | |
parent | eeb54f606de6ef294b91394df97da3b0f90bdefc (diff) |
classes: Add task dependencies expressions, as required for the new multithreading version of bitbake. Also, set BB_DEFAULT_TASK to specify the default task (build) rather than hardcode into bitbake.
Diffstat (limited to 'classes/image_ipk.bbclass')
-rw-r--r-- | classes/image_ipk.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/image_ipk.bbclass b/classes/image_ipk.bbclass index d3923f06a2..83e9acf315 100644 --- a/classes/image_ipk.bbclass +++ b/classes/image_ipk.bbclass @@ -1,7 +1,8 @@ inherit rootfs_ipk -# We need to follow RDEPENDS and RRECOMMENDS for images +# We need to recursively follow RDEPENDS and RRECOMMENDS for images BUILD_ALL_DEPS = "1" +do_rootfs[recrdeptask] = "do_package" # Images are generally built explicitly, do not need to be part of world. EXCLUDE_FROM_WORLD = "1" |