Re: [yocto] Question about Package Splitting

2014-08-08 Thread Nicolas Dechesne
On Fri, Aug 8, 2014 at 9:43 AM, Gaurang Shastri wrote: > You can do something like this if you want your own package: > > PACKAGES += "${PN}-frontend ${PN}-backend ${PN}-tests" > > Here ${PN} means "project" and yes "project-dbg" and "project-dev" will be > created by default. > > And than you ca

Re: [yocto] Question about Package Splitting

2014-08-08 Thread Gaurang Shastri
Hi, You can do something like this if you want your own package: PACKAGES += "${PN}-frontend ${PN}-backend ${PN}-tests" Here ${PN} means "project" and yes "project-dbg" and "project-dev" will be created by default. And than you can put your required files in particular package by, FILES_${PN}-

[yocto] Question about Package Splitting

2014-08-07 Thread pourya . shirazian
Hi, My question is about producing multiple packages in the same recipe. I created a recipe e.g. “project.bb" to produce 5 packages from the same source repository. The package names are as following: 1. project-frontend 2. project-backend 3. project-tests 4. project-dbg 5. projec