diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-06-21 23:56:25 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-30 20:46:34 +0100 |
commit | 0cfa7ebcf661aa0645c6d4d858b04946ebacb7e4 (patch) | |
tree | 38957f48c6aee97271a6494fb7fd1d192e700767 /meta/classes/image.bbclass | |
parent | db6a4e07f3a35163c751996ca3ac86b6bf5650e9 (diff) | |
download | openembedded-core-0cfa7ebcf661aa0645c6d4d858b04946ebacb7e4.tar.gz openembedded-core-0cfa7ebcf661aa0645c6d4d858b04946ebacb7e4.tar.bz2 openembedded-core-0cfa7ebcf661aa0645c6d4d858b04946ebacb7e4.zip |
Add umask task control
Bitbake now allows the umask to be specified per task. The
following tasks will have a umask of 022 set by default:
do_configure
do_compile
do_install
do_package
do_populate_sysroot
do_rootfs
do_configure and do_compile need a umask of 022 set because -many- recipes
directly copy generated files out of recipe's build directory. Instead of
fixing each existing and future recipe, it was shown to be much easier to
just set the umask.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta/classes/image.bbclass')
-rw-r--r-- | meta/classes/image.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass index 2469442d70..e77ec427fc 100644 --- a/meta/classes/image.bbclass +++ b/meta/classes/image.bbclass @@ -83,6 +83,8 @@ do_build[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. +do_rootfs[umask] = 022 + fakeroot do_rootfs () { #set -x rm -rf ${IMAGE_ROOTFS} |