#yocto bbappenf question #yocto


Monsees, Steven C (US)
 

 

What does it mean when a bbappend files does something like the following to a task layer ?

 

do_install() {

         :

}

 

Thanks,

Steve


Quentin Schulz
 

Hi Steve,

On Wed, Jan 27, 2021 at 02:46:55PM +0000, Monsees, Steven C (US) via lists.yoctoproject.org wrote:

What does it mean when a bbappend files does something like the following to a task layer ?

do_install() {
:
}
This overwrite the do_install task with "nothing".

The ':' character is needed because do_install() {} is not syntaxically
correct.

However, the do_install_prepend and _append would still apply I think.

Cheers,
Quentin