mirror of
https://git.yoctoproject.org/poky
synced 2026-02-08 09:46:38 +01:00
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. (From OE-Core rev: 0cfa7ebcf661aa0645c6d4d858b04946ebacb7e4) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
871 B
PHP
31 lines
871 B
PHP
# included by kernel recipes if they want to build/provide
|
|
# perf functionality from their tree.
|
|
do_compile_perf_libc-uclibc () {
|
|
:
|
|
}
|
|
do_install_perf_libc-uclibc () {
|
|
:
|
|
}
|
|
do_compile_perf() {
|
|
oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} NO_NEWT=1 NO_DWARF=1
|
|
}
|
|
|
|
fakeroot do_install_perf() {
|
|
oe_runmake -C ${S}/tools/perf CC="${CC}" LD="${LD}" prefix=${prefix} DESTDIR=${D} install NO_NEWT=1 NO_DWARF=1
|
|
}
|
|
|
|
|
|
# perf tasks
|
|
addtask compile_perf after do_compile before do_install
|
|
addtask install_perf after do_install before do_package
|
|
|
|
do_compile_perf[umask] = 022
|
|
do_install_perf[umask] = 022
|
|
|
|
PERFDEPENDS = "virtual/libc:do_populate_sysroot elfutils:do_populate_sysroot"
|
|
PERFDEPENDS_libc-uclibc = ""
|
|
PERFRDEPENDS = "python perl elfutils"
|
|
PERFRDEPENDS_libc-uclibc = ""
|
|
do_compile_perf[depends] = "${PERFDEPENDS}"
|
|
RDEPENDS_perf += "${PERFRDEPENDS}"
|