diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-03-30 14:47:57 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-05-05 15:04:57 +0100 |
commit | 838a58ab01a9f325430fe6c4cc1dac7c2255a69c (patch) | |
tree | ca2b0e767dffe00aed392c8fd37be32aeb869d7e /recipes/zaurus-utils | |
parent | 692f64df9aa931780b98a9dc8505cfa7b61fbac0 (diff) |
bitbake.conf/base.bbclass: Rename the staging directory to sysroots and the populate_staging task to populate_sysroot
This change, pulled from Poky, makes the purpose of the staging directory more
obvious and the taskname more true to what it now actually does.
The layout version number is increased due to the change in layout but code to
convert existing directories and insert a symlink for backwards compatibility
is included.
This patch also includes fixes for all recipes which reference the directory.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'recipes/zaurus-utils')
-rw-r--r-- | recipes/zaurus-utils/zaurus-updater.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/recipes/zaurus-utils/zaurus-updater.bb b/recipes/zaurus-utils/zaurus-updater.bb index 7c72921e75..1d9441b5d1 100644 --- a/recipes/zaurus-utils/zaurus-updater.bb +++ b/recipes/zaurus-utils/zaurus-updater.bb @@ -24,5 +24,6 @@ do_deploy() { package_stagefile_shell ${DEPLOY_DIR_IMAGE}/updater.sh } -# package_stagefile_shell needs to run before populate_staging for packaged-staging -addtask deploy before do_populate_staging after do_compile +# package_stagefile_shell need to run before populate_sysroot for packaged-staging +addtask deploy before do_populate_sysroot after do_compile + |