* How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" @ 2015-09-30 9:05 Vivek Per 2015-09-30 10:13 ` Khem Raj 0 siblings, 1 reply; 6+ messages in thread From: Vivek Per @ 2015-09-30 9:05 UTC (permalink / raw) To: yocto [-- Attachment #1: Type: text/plain, Size: 394 bytes --] hi, i want to create a "x" recipe that should automatically get invoke when "image" recipe( that produces image) is built. How can i modify the "x" recipe that should be invoked while building image recipe. I don't want to do any modifications to the image recipe, i only wanted to do changes in "x" recipe. Can any one help on this . thanks in advance Thanks and regards vivek [-- Attachment #2: Type: text/html, Size: 533 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" 2015-09-30 9:05 How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" Vivek Per @ 2015-09-30 10:13 ` Khem Raj 2015-09-30 11:02 ` YUKATHARSANI JEYACHANDRA 2015-09-30 11:08 ` Vivek Per 0 siblings, 2 replies; 6+ messages in thread From: Khem Raj @ 2015-09-30 10:13 UTC (permalink / raw) To: Vivek Per; +Cc: yocto@yoctoproject.org On Wed, Sep 30, 2015 at 2:05 AM, Vivek Per <pervivek@gmail.com> wrote: > hi, > i want to create a "x" recipe that should automatically get invoke when > "image" recipe( that produces image) is built. How can i modify the "x" > recipe that should be invoked while building image recipe. > > I don't want to do any modifications to the image recipe, i only wanted to > do changes in "x" recipe. > Can any one help on this . thanks in advance add one of output package its producing ( ipk) to IMAGE_INSTALL inside the image recipe. > > Thanks and regards > vivek > > -- > _______________________________________________ > yocto mailing list > yocto@yoctoproject.org > https://lists.yoctoproject.org/listinfo/yocto > ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" 2015-09-30 10:13 ` Khem Raj @ 2015-09-30 11:02 ` YUKATHARSANI JEYACHANDRA 2015-09-30 11:08 ` Vivek Per 1 sibling, 0 replies; 6+ messages in thread From: YUKATHARSANI JEYACHANDRA @ 2015-09-30 11:02 UTC (permalink / raw) To: Khem Raj, Vivek Per; +Cc: yocto@yoctoproject.org Hi, 1) Create packagegroup-debug-extra"x recipe name".bb file inside the meta-x/recipes-core/packagegroups layer. Inside the recipe, add the x recipe name like below:- inherit packagegroup PACKAGES = "\ packagegroup-debug-extra"x recipename" \ " RDEPENDS_packagegroup-extra"x recipename = "x recipe name" 2) Add IMAGE_INSTALL_append = "x recipe name" in build/conf/local.conf file. Please try this and let me know if it works. Thanks and Regards, Yukatharsani J. ________________________________________ From: yocto-bounces@yoctoproject.org <yocto-bounces@yoctoproject.org> on behalf of Khem Raj <raj.khem@gmail.com> Sent: Wednesday, September 30, 2015 3:43 PM To: Vivek Per Cc: yocto@yoctoproject.org Subject: Re: [yocto] How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" On Wed, Sep 30, 2015 at 2:05 AM, Vivek Per <pervivek@gmail.com> wrote: > hi, > i want to create a "x" recipe that should automatically get invoke when > "image" recipe( that produces image) is built. How can i modify the "x" > recipe that should be invoked while building image recipe. > > I don't want to do any modifications to the image recipe, i only wanted to > do changes in "x" recipe. > Can any one help on this . thanks in advance add one of output package its producing ( ipk) to IMAGE_INSTALL inside the image recipe. > > Thanks and regards > vivek > > -- > _______________________________________________ > yocto mailing list > yocto@yoctoproject.org > https://lists.yoctoproject.org/listinfo/yocto > -- _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" 2015-09-30 10:13 ` Khem Raj 2015-09-30 11:02 ` YUKATHARSANI JEYACHANDRA @ 2015-09-30 11:08 ` Vivek Per 2015-09-30 13:39 ` Gary Thomas 1 sibling, 1 reply; 6+ messages in thread From: Vivek Per @ 2015-09-30 11:08 UTC (permalink / raw) To: Khem Raj; +Cc: yocto@yoctoproject.org [-- Attachment #1: Type: text/plain, Size: 1183 bytes --] Hi , thanks you for replying, but i don't want to make changes to "image" recipe. i only wanted to make changes to "x" recipe that should be invoked when i do bitbake <image recipe>. what variable i can put in "x" recipe so that it invokes when is do <bitbake image recipe> Thanks and Regards Vivek On Wed, Sep 30, 2015 at 3:43 PM, Khem Raj <raj.khem@gmail.com> wrote: > On Wed, Sep 30, 2015 at 2:05 AM, Vivek Per <pervivek@gmail.com> wrote: > > hi, > > i want to create a "x" recipe that should automatically get invoke > when > > "image" recipe( that produces image) is built. How can i modify the "x" > > recipe that should be invoked while building image recipe. > > > > I don't want to do any modifications to the image recipe, i only wanted > to > > do changes in "x" recipe. > > Can any one help on this . thanks in advance > > add one of output package its producing ( ipk) to IMAGE_INSTALL > inside the image recipe. > > > > > Thanks and regards > > vivek > > > > -- > > _______________________________________________ > > yocto mailing list > > yocto@yoctoproject.org > > https://lists.yoctoproject.org/listinfo/yocto > > > [-- Attachment #2: Type: text/html, Size: 1968 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" 2015-09-30 11:08 ` Vivek Per @ 2015-09-30 13:39 ` Gary Thomas 2015-10-05 4:56 ` Vivek Per 0 siblings, 1 reply; 6+ messages in thread From: Gary Thomas @ 2015-09-30 13:39 UTC (permalink / raw) To: yocto On 2015-09-30 05:08, Vivek Per wrote: > Hi , thanks you for replying, > but i don't want to make changes to "image" recipe. i only wanted to make changes to "x" recipe that should be invoked when i do bitbake <image recipe>. > what variable i can put in "x" recipe so that it invokes when is do <bitbake image recipe> You can't - what you are asking for is "image" to depend on "x" (i.e. include it) and the only way to do that is relative to "image", not "x". You can do this non-invasively, e.g. in local.conf: IMAGE_INSTALL_append_pn-image = " x" > On Wed, Sep 30, 2015 at 3:43 PM, Khem Raj <raj.khem@gmail.com <mailto:raj.khem@gmail.com>> wrote: > > On Wed, Sep 30, 2015 at 2:05 AM, Vivek Per <pervivek@gmail.com <mailto:pervivek@gmail.com>> wrote: > > hi, > > i want to create a "x" recipe that should automatically get invoke when > > "image" recipe( that produces image) is built. How can i modify the "x" > > recipe that should be invoked while building image recipe. > > > > I don't want to do any modifications to the image recipe, i only wanted to > > do changes in "x" recipe. > > Can any one help on this . thanks in advance > > add one of output package its producing ( ipk) to IMAGE_INSTALL > inside the image recipe. > > > > > Thanks and regards > > vivek > > > > -- > > _______________________________________________ > > yocto mailing list > >yocto@yoctoproject.org <mailto:yocto@yoctoproject.org> > >https://lists.yoctoproject.org/listinfo/yocto > > > > > > -- ------------------------------------------------------------ Gary Thomas | Consulting for the MLB Associates | Embedded world ------------------------------------------------------------ ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" 2015-09-30 13:39 ` Gary Thomas @ 2015-10-05 4:56 ` Vivek Per 0 siblings, 0 replies; 6+ messages in thread From: Vivek Per @ 2015-10-05 4:56 UTC (permalink / raw) To: Gary Thomas, yocto, Khem Raj [-- Attachment #1: Type: text/plain, Size: 2272 bytes --] Thanks you very much for your precious time. I got it now. thanks and regards vivek On Wed, Sep 30, 2015 at 7:09 PM, Gary Thomas <gary@mlbassoc.com> wrote: > On 2015-09-30 05:08, Vivek Per wrote: > >> Hi , thanks you for replying, >> but i don't want to make changes to "image" recipe. i only wanted to make >> changes to "x" recipe that should be invoked when i do bitbake <image >> recipe>. >> what variable i can put in "x" recipe so that it invokes when is do >> <bitbake image recipe> >> > > You can't - what you are asking for is "image" to depend on "x" (i.e. > include it) and the > only way to do that is relative to "image", not "x". > > You can do this non-invasively, e.g. in local.conf: > IMAGE_INSTALL_append_pn-image = " x" > > On Wed, Sep 30, 2015 at 3:43 PM, Khem Raj <raj.khem@gmail.com <mailto: >> raj.khem@gmail.com>> wrote: >> >> On Wed, Sep 30, 2015 at 2:05 AM, Vivek Per <pervivek@gmail.com >> <mailto:pervivek@gmail.com>> wrote: >> > hi, >> > i want to create a "x" recipe that should automatically get >> invoke when >> > "image" recipe( that produces image) is built. How can i modify the >> "x" >> > recipe that should be invoked while building image recipe. >> > >> > I don't want to do any modifications to the image recipe, i only >> wanted to >> > do changes in "x" recipe. >> > Can any one help on this . thanks in advance >> >> add one of output package its producing ( ipk) to IMAGE_INSTALL >> inside the image recipe. >> >> > >> > Thanks and regards >> > vivek >> > >> > -- >> > _______________________________________________ >> > yocto mailing list >> >yocto@yoctoproject.org <mailto:yocto@yoctoproject.org> >> >https://lists.yoctoproject.org/listinfo/yocto >> > >> >> >> >> >> > -- > ------------------------------------------------------------ > Gary Thomas | Consulting for the > MLB Associates | Embedded world > ------------------------------------------------------------ > > -- > _______________________________________________ > yocto mailing list > yocto@yoctoproject.org > https://lists.yoctoproject.org/listinfo/yocto > [-- Attachment #2: Type: text/html, Size: 3956 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-10-05 4:56 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-09-30 9:05 How can i invoke a "particular recipe(.bb)" while building "image recipe(.bb)" without modifying the "image recipe(.bb)" . i only wanted to change "particular recipe(.bb)" Vivek Per 2015-09-30 10:13 ` Khem Raj 2015-09-30 11:02 ` YUKATHARSANI JEYACHANDRA 2015-09-30 11:08 ` Vivek Per 2015-09-30 13:39 ` Gary Thomas 2015-10-05 4:56 ` Vivek Per
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.