diff options
author | Richard Purdie <rpurdie@rpsys.net> | 2007-01-07 15:21:08 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@rpsys.net> | 2007-01-07 15:21:08 +0000 |
commit | 7bdc81a45299ae0a41596e5ed8ccf478dd1ed6bd (patch) | |
tree | 5bee5898f1be7fa42654749aa6e8030fcf08feef | |
parent | 299d9fbabea4d1b809de78082e7b35fadb28de1e (diff) |
image.bbclass: Make images trigger all do_deploy tasks to run so kernels and things like updater.sh for the zaurus get deployed with the image. This change on affects bitbake 1.7.x users who *will* need to use the latest 1.7.x version from svn.
-rw-r--r-- | classes/image.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/image.bbclass b/classes/image.bbclass index bcf9bef13c..69d7fb2e9b 100644 --- a/classes/image.bbclass +++ b/classes/image.bbclass @@ -4,7 +4,7 @@ PACKAGES = "" # We need to recursively follow RDEPENDS and RRECOMMENDS for images BUILD_ALL_DEPS = "1" -do_rootfs[recrdeptask] = "do_package_write" +do_rootfs[recrdeptask] = "do_package_write do_deploy" # Images are generally built explicitly, do not need to be part of world. EXCLUDE_FROM_WORLD = "1" |