[yocto] Create a .bb for my aplication

Burton, Ross ross.burton at intel.com
Mon Sep 17 06:51:06 PDT 2012


On 17 September 2012 14:48, Raul Rosetto Munoz <munoz0raul at gmail.com> wrote:
> I'm just want to mkdir in the /home/ path.
>
> Im try some thing like this but don't work!
> do_install() {
>     mkdir -p /home/prjs/
> }

You're creating a directory in the home directory on your build
machine.  *Not* in the working area for the package.  You'll want to
mkdir ${D}/home/prjs

Ross



More information about the yocto mailing list