* autoreconf @ 2016-06-15 20:17 Rajasekaran, Monica 2016-06-15 20:24 ` autoreconf Paul Eggleton 0 siblings, 1 reply; 16+ messages in thread From: Rajasekaran, Monica @ 2016-06-15 20:17 UTC (permalink / raw) To: yocto@yoctoproject.org [-- Attachment #1: Type: text/plain, Size: 222 bytes --] Hi, What is the package to install autoreconf ? (Ubuntu equivalent: apt-get install dh-autoreconf ) I am getting the following error for one of my applications: "autoreconf: command not found" Thanks, Monica [-- Attachment #2: Type: text/html, Size: 2247 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-15 20:17 autoreconf Rajasekaran, Monica @ 2016-06-15 20:24 ` Paul Eggleton 2016-06-15 20:35 ` autoreconf Rajasekaran, Monica 0 siblings, 1 reply; 16+ messages in thread From: Paul Eggleton @ 2016-06-15 20:24 UTC (permalink / raw) To: Rajasekaran, Monica; +Cc: yocto Hi Monica, On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: > What is the package to install autoreconf ? (Ubuntu equivalent: apt-get > install dh-autoreconf ) > > I am getting the following error for one of my applications: > "autoreconf: command not found" autoreconf is part of autoconf. Where is this? On the target or within the build system? Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-15 20:24 ` autoreconf Paul Eggleton @ 2016-06-15 20:35 ` Rajasekaran, Monica 2016-06-15 20:42 ` autoreconf Khem Raj 0 siblings, 1 reply; 16+ messages in thread From: Rajasekaran, Monica @ 2016-06-15 20:35 UTC (permalink / raw) To: Paul Eggleton; +Cc: yocto@yoctoproject.org Hi Paul, Thank you. This is in the target. Thanks, Monica -----Original Message----- From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] Sent: Wednesday, June 15, 2016 3:25 PM To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> Cc: yocto@yoctoproject.org Subject: Re: [yocto] autoreconf Hi Monica, On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: > What is the package to install autoreconf ? (Ubuntu equivalent: > apt-get install dh-autoreconf ) > > I am getting the following error for one of my applications: > "autoreconf: command not found" autoreconf is part of autoconf. Where is this? On the target or within the build system? Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-15 20:35 ` autoreconf Rajasekaran, Monica @ 2016-06-15 20:42 ` Khem Raj 2016-06-15 20:47 ` autoreconf Rajasekaran, Monica 0 siblings, 1 reply; 16+ messages in thread From: Khem Raj @ 2016-06-15 20:42 UTC (permalink / raw) To: Rajasekaran, Monica; +Cc: Paul Eggleton, yocto@yoctoproject.org [-- Attachment #1: Type: text/plain, Size: 1260 bytes --] You need to add autoconf to your target image, if you do not use Online package management EXTRA_IMAGE_FEATURES_append = “ tools-sdk” in local.conf might help > On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > > Hi Paul, > > Thank you. This is in the target. > > Thanks, > Monica > > -----Original Message----- > From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] > Sent: Wednesday, June 15, 2016 3:25 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > Hi Monica, > > On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >> What is the package to install autoreconf ? (Ubuntu equivalent: >> apt-get install dh-autoreconf ) >> >> I am getting the following error for one of my applications: >> "autoreconf: command not found" > > autoreconf is part of autoconf. > > Where is this? On the target or within the build system? > > Cheers, > Paul > > -- > > Paul Eggleton > Intel Open Source Technology Centre > -- > _______________________________________________ > yocto mailing list > yocto@yoctoproject.org > https://lists.yoctoproject.org/listinfo/yocto [-- Attachment #2: Message signed with OpenPGP using GPGMail --] [-- Type: application/pgp-signature, Size: 211 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-15 20:42 ` autoreconf Khem Raj @ 2016-06-15 20:47 ` Rajasekaran, Monica 2016-06-15 20:48 ` autoreconf Khem Raj 0 siblings, 1 reply; 16+ messages in thread From: Rajasekaran, Monica @ 2016-06-15 20:47 UTC (permalink / raw) To: Khem Raj; +Cc: Paul Eggleton, yocto@yoctoproject.org Hi Raj, Will adding a line in the image's recipe file like this work ? IMAGE_INSTALL = ”autoconf” I installed "git" and "resolvconf" in the same way. Just not sure about the package name this time. Thanks, Monica -----Original Message----- From: Khem Raj [mailto:raj.khem@gmail.com] Sent: Wednesday, June 15, 2016 3:42 PM To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org Subject: Re: [yocto] autoreconf You need to add autoconf to your target image, if you do not use Online package management EXTRA_IMAGE_FEATURES_append = “ tools-sdk” in local.conf might help > On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > > Hi Paul, > > Thank you. This is in the target. > > Thanks, > Monica > > -----Original Message----- > From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] > Sent: Wednesday, June 15, 2016 3:25 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > Hi Monica, > > On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >> What is the package to install autoreconf ? (Ubuntu equivalent: >> apt-get install dh-autoreconf ) >> >> I am getting the following error for one of my applications: >> "autoreconf: command not found" > > autoreconf is part of autoconf. > > Where is this? On the target or within the build system? > > Cheers, > Paul > > -- > > Paul Eggleton > Intel Open Source Technology Centre > -- > _______________________________________________ > yocto mailing list > yocto@yoctoproject.org > https://lists.yoctoproject.org/listinfo/yocto ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-15 20:47 ` autoreconf Rajasekaran, Monica @ 2016-06-15 20:48 ` Khem Raj 2016-06-19 20:23 ` autoreconf Rajasekaran, Monica 0 siblings, 1 reply; 16+ messages in thread From: Khem Raj @ 2016-06-15 20:48 UTC (permalink / raw) To: Rajasekaran, Monica; +Cc: Paul Eggleton, yocto@yoctoproject.org [-- Attachment #1: Type: text/plain, Size: 2085 bytes --] That might work, however you might need more packages, so adding tools-sdk will cover all of them in one go > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > > Hi Raj, > > Will adding a line in the image's recipe file like this work ? > > IMAGE_INSTALL = ”autoconf” > > I installed "git" and "resolvconf" in the same way. Just not sure about the package name this time. > > Thanks, > Monica > > > -----Original Message----- > From: Khem Raj [mailto:raj.khem@gmail.com] > Sent: Wednesday, June 15, 2016 3:42 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > You need to add autoconf to your target image, if you do not use Online package management > > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” > > in local.conf might help > > >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: >> >> Hi Paul, >> >> Thank you. This is in the target. >> >> Thanks, >> Monica >> >> -----Original Message----- >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >> Sent: Wednesday, June 15, 2016 3:25 PM >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> Cc: yocto@yoctoproject.org >> Subject: Re: [yocto] autoreconf >> >> Hi Monica, >> >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >>> What is the package to install autoreconf ? (Ubuntu equivalent: >>> apt-get install dh-autoreconf ) >>> >>> I am getting the following error for one of my applications: >>> "autoreconf: command not found" >> >> autoreconf is part of autoconf. >> >> Where is this? On the target or within the build system? >> >> Cheers, >> Paul >> >> -- >> >> Paul Eggleton >> Intel Open Source Technology Centre >> -- >> _______________________________________________ >> yocto mailing list >> yocto@yoctoproject.org >> https://lists.yoctoproject.org/listinfo/yocto > [-- Attachment #2: Message signed with OpenPGP using GPGMail --] [-- Type: application/pgp-signature, Size: 211 bytes --] ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-15 20:48 ` autoreconf Khem Raj @ 2016-06-19 20:23 ` Rajasekaran, Monica 2016-06-19 22:13 ` autoreconf Paul Eggleton 0 siblings, 1 reply; 16+ messages in thread From: Rajasekaran, Monica @ 2016-06-19 20:23 UTC (permalink / raw) To: Khem Raj; +Cc: Paul Eggleton, yocto@yoctoproject.org Hi Raj, I added the following line to my recipe file, IMAGE_INSTALL += "tools-sdk" But there was the following error with the build: ERROR: Nothing RPROVIDES 'tools-sdk' (but /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-product/recipes-core/images/fss-image-full.bb RDEPENDS on or otherwise requires it) NOTE: Runtime target 'tools-sdk' is unbuildable, removing... Missing or unbuildable dependency chain was: ['tools-sdk'] ERROR: Required build target 'fss-image-full' has no buildable providers. Missing or unbuildable dependency chain was: ['fss-image-full', 'tools-sdk'] Any idea on this? Thanks, Monica -----Original Message----- From: Khem Raj [mailto:raj.khem@gmail.com] Sent: Wednesday, June 15, 2016 3:48 PM To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org Subject: Re: [yocto] autoreconf That might work, however you might need more packages, so adding tools-sdk will cover all of them in one go > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > > Hi Raj, > > Will adding a line in the image's recipe file like this work ? > > IMAGE_INSTALL = ”autoconf” > > I installed "git" and "resolvconf" in the same way. Just not sure about the package name this time. > > Thanks, > Monica > > > -----Original Message----- > From: Khem Raj [mailto:raj.khem@gmail.com] > Sent: Wednesday, June 15, 2016 3:42 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > You need to add autoconf to your target image, if you do not use Online package management > > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” > > in local.conf might help > > >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: >> >> Hi Paul, >> >> Thank you. This is in the target. >> >> Thanks, >> Monica >> >> -----Original Message----- >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >> Sent: Wednesday, June 15, 2016 3:25 PM >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> Cc: yocto@yoctoproject.org >> Subject: Re: [yocto] autoreconf >> >> Hi Monica, >> >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >>> What is the package to install autoreconf ? (Ubuntu equivalent: >>> apt-get install dh-autoreconf ) >>> >>> I am getting the following error for one of my applications: >>> "autoreconf: command not found" >> >> autoreconf is part of autoconf. >> >> Where is this? On the target or within the build system? >> >> Cheers, >> Paul >> >> -- >> >> Paul Eggleton >> Intel Open Source Technology Centre >> -- >> _______________________________________________ >> yocto mailing list >> yocto@yoctoproject.org >> https://lists.yoctoproject.org/listinfo/yocto > ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-19 20:23 ` autoreconf Rajasekaran, Monica @ 2016-06-19 22:13 ` Paul Eggleton 2016-06-20 16:12 ` autoreconf Rajasekaran, Monica 0 siblings, 1 reply; 16+ messages in thread From: Paul Eggleton @ 2016-06-19 22:13 UTC (permalink / raw) To: Rajasekaran, Monica; +Cc: yocto@yoctoproject.org Hi Monica, As shown in Khem's original example you need to add this through EXTRA_IMAGE_FEATURES, not IMAGE_INSTALL (since tools-sdk is a feature name, not a package name). Cheers, Paul On Sun, 19 Jun 2016 20:23:53 Rajasekaran, Monica wrote: > I added the following line to my recipe file, > > IMAGE_INSTALL += "tools-sdk" > > But there was the following error with the build: > > ERROR: Nothing RPROVIDES 'tools-sdk' (but > /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-product/rec > ipes-core/images/fss-image-full.bb RDEPENDS on or otherwise requires it) > NOTE: Runtime target 'tools-sdk' is unbuildable, removing... > Missing or unbuildable dependency chain was: ['tools-sdk'] > ERROR: Required build target 'fss-image-full' has no buildable providers. > Missing or unbuildable dependency chain was: ['fss-image-full', > 'tools-sdk'] > Any idea on this? > > Thanks, > Monica > > -----Original Message----- > From: Khem Raj [mailto:raj.khem@gmail.com] > Sent: Wednesday, June 15, 2016 3:48 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > That might work, however you might need more packages, so adding tools-sdk > will cover all of them in one go > > > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica > > <Monica.Rajasekaran@us.fujitsu.com> wrote: > > Hi Raj, > > > > Will adding a line in the image's recipe file like this work ? > > > > IMAGE_INSTALL = ”autoconf” > > > > I installed "git" and "resolvconf" in the same way. Just not sure about > > the package name this time. > > Thanks, > > Monica > > > > > > -----Original Message----- > > From: Khem Raj [mailto:raj.khem@gmail.com] > > Sent: Wednesday, June 15, 2016 3:42 PM > > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org > > Subject: Re: [yocto] autoreconf > > > > You need to add autoconf to your target image, if you do not use Online > > package management > > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” > > > > in local.conf might help > > > > > > > >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica > >> <Monica.Rajasekaran@us.fujitsu.com> wrote: > >> Hi Paul, > >> > >> Thank you. This is in the target. > >> > >> Thanks, > >> Monica > >> > >> -----Original Message----- > >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] > >> Sent: Wednesday, June 15, 2016 3:25 PM > >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > >> Cc: yocto@yoctoproject.org > >> Subject: Re: [yocto] autoreconf > >> > >> Hi Monica, > >> > >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: > >> > >>> What is the package to install autoreconf ? (Ubuntu equivalent: > >>> apt-get install dh-autoreconf ) > >>> > >>> I am getting the following error for one of my applications: > >>> "autoreconf: command not found" > >> > >> > >> autoreconf is part of autoconf. > >> > >> Where is this? On the target or within the build system? > >> > >> Cheers, > >> Paul > >> > >> -- > >> > >> Paul Eggleton > >> Intel Open Source Technology Centre > >> -- > >> _______________________________________________ > >> yocto mailing list > >> yocto@yoctoproject.org > >> https://lists.yoctoproject.org/listinfo/yocto > > > > > > -- Paul Eggleton Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-19 22:13 ` autoreconf Paul Eggleton @ 2016-06-20 16:12 ` Rajasekaran, Monica 2016-06-20 16:14 ` autoreconf Khem Raj 0 siblings, 1 reply; 16+ messages in thread From: Rajasekaran, Monica @ 2016-06-20 16:12 UTC (permalink / raw) To: Paul Eggleton; +Cc: yocto@yoctoproject.org Thanks Paul and Khem, that worked! I also tried adding libcap-ng but it gives me the following error: ERROR: Nothing RPROVIDES 'libcap-ng' (but /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-product/recipes-core/images/fss-image-full.bb RDEPENDS on or otherwise requires it) But, I see it present at http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-support/libcap-ng/.....?? Thanks, Monica -----Original Message----- From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] Sent: Sunday, June 19, 2016 5:14 PM To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> Cc: Khem Raj <raj.khem@gmail.com>; yocto@yoctoproject.org Subject: Re: [yocto] autoreconf Hi Monica, As shown in Khem's original example you need to add this through EXTRA_IMAGE_FEATURES, not IMAGE_INSTALL (since tools-sdk is a feature name, not a package name). Cheers, Paul On Sun, 19 Jun 2016 20:23:53 Rajasekaran, Monica wrote: > I added the following line to my recipe file, > > IMAGE_INSTALL += "tools-sdk" > > But there was the following error with the build: > > ERROR: Nothing RPROVIDES 'tools-sdk' (but > /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produc > t/rec ipes-core/images/fss-image-full.bb RDEPENDS on or otherwise > requires it) > NOTE: Runtime target 'tools-sdk' is unbuildable, removing... > Missing or unbuildable dependency chain was: ['tools-sdk'] > ERROR: Required build target 'fss-image-full' has no buildable providers. > Missing or unbuildable dependency chain was: ['fss-image-full', > 'tools-sdk'] > Any idea on this? > > Thanks, > Monica > > -----Original Message----- > From: Khem Raj [mailto:raj.khem@gmail.com] > Sent: Wednesday, June 15, 2016 3:48 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; > yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > That might work, however you might need more packages, so adding > tools-sdk will cover all of them in one go > > > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica > > <Monica.Rajasekaran@us.fujitsu.com> wrote: > > Hi Raj, > > > > Will adding a line in the image's recipe file like this work ? > > > > IMAGE_INSTALL = ”autoconf” > > > > I installed "git" and "resolvconf" in the same way. Just not sure > > about the package name this time. > > Thanks, > > Monica > > > > > > -----Original Message----- > > From: Khem Raj [mailto:raj.khem@gmail.com] > > Sent: Wednesday, June 15, 2016 3:42 PM > > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; > > yocto@yoctoproject.org > > Subject: Re: [yocto] autoreconf > > > > You need to add autoconf to your target image, if you do not use > > Online package management > > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” > > > > in local.conf might help > > > > > > > >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica > >> <Monica.Rajasekaran@us.fujitsu.com> wrote: > >> Hi Paul, > >> > >> Thank you. This is in the target. > >> > >> Thanks, > >> Monica > >> > >> -----Original Message----- > >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] > >> Sent: Wednesday, June 15, 2016 3:25 PM > >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > >> Cc: yocto@yoctoproject.org > >> Subject: Re: [yocto] autoreconf > >> > >> Hi Monica, > >> > >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: > >> > >>> What is the package to install autoreconf ? (Ubuntu equivalent: > >>> apt-get install dh-autoreconf ) > >>> > >>> I am getting the following error for one of my applications: > >>> "autoreconf: command not found" > >> > >> > >> autoreconf is part of autoconf. > >> > >> Where is this? On the target or within the build system? > >> > >> Cheers, > >> Paul > >> > >> -- > >> > >> Paul Eggleton > >> Intel Open Source Technology Centre > >> -- > >> _______________________________________________ > >> yocto mailing list > >> yocto@yoctoproject.org > >> https://lists.yoctoproject.org/listinfo/yocto > > > > > > -- Paul Eggleton Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-20 16:12 ` autoreconf Rajasekaran, Monica @ 2016-06-20 16:14 ` Khem Raj 2016-06-20 16:18 ` autoreconf Rajasekaran, Monica 0 siblings, 1 reply; 16+ messages in thread From: Khem Raj @ 2016-06-20 16:14 UTC (permalink / raw) To: Rajasekaran, Monica; +Cc: Paul Eggleton, yocto@yoctoproject.org On Mon, Jun 20, 2016 at 9:12 AM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > Thanks Paul and Khem, that worked! > > I also tried adding libcap-ng but it gives me the following error: where did you add it to ? it is a package so you have to add it to IMAGE_INSTALL > > ERROR: Nothing RPROVIDES 'libcap-ng' (but /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-product/recipes-core/images/fss-image-full.bb RDEPENDS on or otherwise requires it) > > But, I see it present at http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-support/libcap-ng/.....?? > > Thanks, > Monica > > -----Original Message----- > From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] > Sent: Sunday, June 19, 2016 5:14 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Khem Raj <raj.khem@gmail.com>; yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > Hi Monica, > > As shown in Khem's original example you need to add this through EXTRA_IMAGE_FEATURES, not IMAGE_INSTALL (since tools-sdk is a feature name, not a package name). > > Cheers, > Paul > > On Sun, 19 Jun 2016 20:23:53 Rajasekaran, Monica wrote: >> I added the following line to my recipe file, >> >> IMAGE_INSTALL += "tools-sdk" >> >> But there was the following error with the build: >> >> ERROR: Nothing RPROVIDES 'tools-sdk' (but >> /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produc >> t/rec ipes-core/images/fss-image-full.bb RDEPENDS on or otherwise >> requires it) >> NOTE: Runtime target 'tools-sdk' is unbuildable, removing... >> Missing or unbuildable dependency chain was: ['tools-sdk'] >> ERROR: Required build target 'fss-image-full' has no buildable providers. >> Missing or unbuildable dependency chain was: ['fss-image-full', >> 'tools-sdk'] > >> Any idea on this? >> >> Thanks, >> Monica >> >> -----Original Message----- >> From: Khem Raj [mailto:raj.khem@gmail.com] >> Sent: Wednesday, June 15, 2016 3:48 PM >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >> yocto@yoctoproject.org >> Subject: Re: [yocto] autoreconf >> >> That might work, however you might need more packages, so adding >> tools-sdk will cover all of them in one go > >> >> > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica >> > <Monica.Rajasekaran@us.fujitsu.com> wrote: > >> > Hi Raj, >> > >> > Will adding a line in the image's recipe file like this work ? >> > >> > IMAGE_INSTALL = ”autoconf” >> > >> > I installed "git" and "resolvconf" in the same way. Just not sure >> > about the package name this time. > >> > Thanks, >> > Monica >> > >> > >> > -----Original Message----- >> > From: Khem Raj [mailto:raj.khem@gmail.com] >> > Sent: Wednesday, June 15, 2016 3:42 PM >> > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >> > yocto@yoctoproject.org >> > Subject: Re: [yocto] autoreconf >> > >> > You need to add autoconf to your target image, if you do not use >> > Online package management > >> > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” >> > >> > in local.conf might help >> > >> > >> > >> >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica >> >> <Monica.Rajasekaran@us.fujitsu.com> wrote: > >> >> Hi Paul, >> >> >> >> Thank you. This is in the target. >> >> >> >> Thanks, >> >> Monica >> >> >> >> -----Original Message----- >> >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >> >> Sent: Wednesday, June 15, 2016 3:25 PM >> >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> >> Cc: yocto@yoctoproject.org >> >> Subject: Re: [yocto] autoreconf >> >> >> >> Hi Monica, >> >> >> >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >> >> >> >>> What is the package to install autoreconf ? (Ubuntu equivalent: >> >>> apt-get install dh-autoreconf ) >> >>> >> >>> I am getting the following error for one of my applications: >> >>> "autoreconf: command not found" >> >> >> >> >> >> autoreconf is part of autoconf. >> >> >> >> Where is this? On the target or within the build system? >> >> >> >> Cheers, >> >> Paul >> >> >> >> -- >> >> >> >> Paul Eggleton >> >> Intel Open Source Technology Centre >> >> -- >> >> _______________________________________________ >> >> yocto mailing list >> >> yocto@yoctoproject.org >> >> https://lists.yoctoproject.org/listinfo/yocto >> > >> > >> >> > > -- > > Paul Eggleton > Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-20 16:14 ` autoreconf Khem Raj @ 2016-06-20 16:18 ` Rajasekaran, Monica 2016-06-20 16:22 ` autoreconf Rajasekaran, Monica ` (2 more replies) 0 siblings, 3 replies; 16+ messages in thread From: Rajasekaran, Monica @ 2016-06-20 16:18 UTC (permalink / raw) To: Khem Raj; +Cc: Paul Eggleton, yocto@yoctoproject.org Yes, I did the same. Thanks, Monica -----Original Message----- From: Khem Raj [mailto:raj.khem@gmail.com] Sent: Monday, June 20, 2016 11:15 AM To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org Subject: Re: [yocto] autoreconf On Mon, Jun 20, 2016 at 9:12 AM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > Thanks Paul and Khem, that worked! > > I also tried adding libcap-ng but it gives me the following error: where did you add it to ? it is a package so you have to add it to IMAGE_INSTALL > > ERROR: Nothing RPROVIDES 'libcap-ng' (but > /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produc > t/recipes-core/images/fss-image-full.bb RDEPENDS on or otherwise > requires it) > > But, I see it present at http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-support/libcap-ng/.....?? > > Thanks, > Monica > > -----Original Message----- > From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] > Sent: Sunday, June 19, 2016 5:14 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Khem Raj <raj.khem@gmail.com>; yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > Hi Monica, > > As shown in Khem's original example you need to add this through EXTRA_IMAGE_FEATURES, not IMAGE_INSTALL (since tools-sdk is a feature name, not a package name). > > Cheers, > Paul > > On Sun, 19 Jun 2016 20:23:53 Rajasekaran, Monica wrote: >> I added the following line to my recipe file, >> >> IMAGE_INSTALL += "tools-sdk" >> >> But there was the following error with the build: >> >> ERROR: Nothing RPROVIDES 'tools-sdk' (but >> /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produ >> c t/rec ipes-core/images/fss-image-full.bb RDEPENDS on or otherwise >> requires it) >> NOTE: Runtime target 'tools-sdk' is unbuildable, removing... >> Missing or unbuildable dependency chain was: ['tools-sdk'] >> ERROR: Required build target 'fss-image-full' has no buildable providers. >> Missing or unbuildable dependency chain was: ['fss-image-full', >> 'tools-sdk'] > >> Any idea on this? >> >> Thanks, >> Monica >> >> -----Original Message----- >> From: Khem Raj [mailto:raj.khem@gmail.com] >> Sent: Wednesday, June 15, 2016 3:48 PM >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >> yocto@yoctoproject.org >> Subject: Re: [yocto] autoreconf >> >> That might work, however you might need more packages, so adding >> tools-sdk will cover all of them in one go > >> >> > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica >> > <Monica.Rajasekaran@us.fujitsu.com> wrote: > >> > Hi Raj, >> > >> > Will adding a line in the image's recipe file like this work ? >> > >> > IMAGE_INSTALL = ”autoconf” >> > >> > I installed "git" and "resolvconf" in the same way. Just not sure >> > about the package name this time. > >> > Thanks, >> > Monica >> > >> > >> > -----Original Message----- >> > From: Khem Raj [mailto:raj.khem@gmail.com] >> > Sent: Wednesday, June 15, 2016 3:42 PM >> > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >> > yocto@yoctoproject.org >> > Subject: Re: [yocto] autoreconf >> > >> > You need to add autoconf to your target image, if you do not use >> > Online package management > >> > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” >> > >> > in local.conf might help >> > >> > >> > >> >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica >> >> <Monica.Rajasekaran@us.fujitsu.com> wrote: > >> >> Hi Paul, >> >> >> >> Thank you. This is in the target. >> >> >> >> Thanks, >> >> Monica >> >> >> >> -----Original Message----- >> >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >> >> Sent: Wednesday, June 15, 2016 3:25 PM >> >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> >> Cc: yocto@yoctoproject.org >> >> Subject: Re: [yocto] autoreconf >> >> >> >> Hi Monica, >> >> >> >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >> >> >> >>> What is the package to install autoreconf ? (Ubuntu equivalent: >> >>> apt-get install dh-autoreconf ) >> >>> >> >>> I am getting the following error for one of my applications: >> >>> "autoreconf: command not found" >> >> >> >> >> >> autoreconf is part of autoconf. >> >> >> >> Where is this? On the target or within the build system? >> >> >> >> Cheers, >> >> Paul >> >> >> >> -- >> >> >> >> Paul Eggleton >> >> Intel Open Source Technology Centre >> >> -- >> >> _______________________________________________ >> >> yocto mailing list >> >> yocto@yoctoproject.org >> >> https://lists.yoctoproject.org/listinfo/yocto >> > >> > >> >> > > -- > > Paul Eggleton > Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-20 16:18 ` autoreconf Rajasekaran, Monica @ 2016-06-20 16:22 ` Rajasekaran, Monica 2016-06-20 16:23 ` autoreconf Khem Raj 2016-06-20 16:24 ` ubuntu xenial support Fred Ollinger 2 siblings, 0 replies; 16+ messages in thread From: Rajasekaran, Monica @ 2016-06-20 16:22 UTC (permalink / raw) To: Rajasekaran, Monica, Khem Raj; +Cc: Paul Eggleton, yocto@yoctoproject.org It worked by replacing libcap-ng with just "libcap". Thanks, Monica -----Original Message----- From: yocto-bounces@yoctoproject.org [mailto:yocto-bounces@yoctoproject.org] On Behalf Of Rajasekaran, Monica Sent: Monday, June 20, 2016 11:19 AM To: Khem Raj <raj.khem@gmail.com> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org Subject: Re: [yocto] autoreconf Yes, I did the same. Thanks, Monica -----Original Message----- From: Khem Raj [mailto:raj.khem@gmail.com] Sent: Monday, June 20, 2016 11:15 AM To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org Subject: Re: [yocto] autoreconf On Mon, Jun 20, 2016 at 9:12 AM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > Thanks Paul and Khem, that worked! > > I also tried adding libcap-ng but it gives me the following error: where did you add it to ? it is a package so you have to add it to IMAGE_INSTALL > > ERROR: Nothing RPROVIDES 'libcap-ng' (but > /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produc > t/recipes-core/images/fss-image-full.bb RDEPENDS on or otherwise > requires it) > > But, I see it present at http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-support/libcap-ng/.....?? > > Thanks, > Monica > > -----Original Message----- > From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] > Sent: Sunday, June 19, 2016 5:14 PM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Khem Raj <raj.khem@gmail.com>; yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > Hi Monica, > > As shown in Khem's original example you need to add this through EXTRA_IMAGE_FEATURES, not IMAGE_INSTALL (since tools-sdk is a feature name, not a package name). > > Cheers, > Paul > > On Sun, 19 Jun 2016 20:23:53 Rajasekaran, Monica wrote: >> I added the following line to my recipe file, >> >> IMAGE_INSTALL += "tools-sdk" >> >> But there was the following error with the build: >> >> ERROR: Nothing RPROVIDES 'tools-sdk' (but >> /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produ >> c t/rec ipes-core/images/fss-image-full.bb RDEPENDS on or otherwise >> requires it) >> NOTE: Runtime target 'tools-sdk' is unbuildable, removing... >> Missing or unbuildable dependency chain was: ['tools-sdk'] >> ERROR: Required build target 'fss-image-full' has no buildable providers. >> Missing or unbuildable dependency chain was: ['fss-image-full', >> 'tools-sdk'] > >> Any idea on this? >> >> Thanks, >> Monica >> >> -----Original Message----- >> From: Khem Raj [mailto:raj.khem@gmail.com] >> Sent: Wednesday, June 15, 2016 3:48 PM >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >> yocto@yoctoproject.org >> Subject: Re: [yocto] autoreconf >> >> That might work, however you might need more packages, so adding >> tools-sdk will cover all of them in one go > >> >> > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica >> > <Monica.Rajasekaran@us.fujitsu.com> wrote: > >> > Hi Raj, >> > >> > Will adding a line in the image's recipe file like this work ? >> > >> > IMAGE_INSTALL = ”autoconf” >> > >> > I installed "git" and "resolvconf" in the same way. Just not sure >> > about the package name this time. > >> > Thanks, >> > Monica >> > >> > >> > -----Original Message----- >> > From: Khem Raj [mailto:raj.khem@gmail.com] >> > Sent: Wednesday, June 15, 2016 3:42 PM >> > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >> > yocto@yoctoproject.org >> > Subject: Re: [yocto] autoreconf >> > >> > You need to add autoconf to your target image, if you do not use >> > Online package management > >> > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” >> > >> > in local.conf might help >> > >> > >> > >> >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica >> >> <Monica.Rajasekaran@us.fujitsu.com> wrote: > >> >> Hi Paul, >> >> >> >> Thank you. This is in the target. >> >> >> >> Thanks, >> >> Monica >> >> >> >> -----Original Message----- >> >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >> >> Sent: Wednesday, June 15, 2016 3:25 PM >> >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> >> Cc: yocto@yoctoproject.org >> >> Subject: Re: [yocto] autoreconf >> >> >> >> Hi Monica, >> >> >> >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >> >> >> >>> What is the package to install autoreconf ? (Ubuntu equivalent: >> >>> apt-get install dh-autoreconf ) >> >>> >> >>> I am getting the following error for one of my applications: >> >>> "autoreconf: command not found" >> >> >> >> >> >> autoreconf is part of autoconf. >> >> >> >> Where is this? On the target or within the build system? >> >> >> >> Cheers, >> >> Paul >> >> >> >> -- >> >> >> >> Paul Eggleton >> >> Intel Open Source Technology Centre >> >> -- >> >> _______________________________________________ >> >> yocto mailing list >> >> yocto@yoctoproject.org >> >> https://lists.yoctoproject.org/listinfo/yocto >> > >> > >> >> > > -- > > Paul Eggleton > Intel Open Source Technology Centre -- _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-20 16:18 ` autoreconf Rajasekaran, Monica 2016-06-20 16:22 ` autoreconf Rajasekaran, Monica @ 2016-06-20 16:23 ` Khem Raj 2016-06-20 16:44 ` autoreconf Rajasekaran, Monica 2016-06-20 16:24 ` ubuntu xenial support Fred Ollinger 2 siblings, 1 reply; 16+ messages in thread From: Khem Raj @ 2016-06-20 16:23 UTC (permalink / raw) To: Rajasekaran, Monica; +Cc: Paul Eggleton, yocto@yoctoproject.org OK its a library so debian renaming might be tricking you here. IMAGE_INSTALL expects the output package names ( not recipe name) sometimes there is a package with same name as recipe name generated so it may seem like you can use package name or recipe name but thats not how it works. So please do this bitbake libcap-ng then see whats the emitted ipk or rpm in deloy/ area. Add that name to IMAGE_INSTALL On Mon, Jun 20, 2016 at 9:18 AM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > Yes, I did the same. > > Thanks, > Monica > > > -----Original Message----- > From: Khem Raj [mailto:raj.khem@gmail.com] > Sent: Monday, June 20, 2016 11:15 AM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > On Mon, Jun 20, 2016 at 9:12 AM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: >> Thanks Paul and Khem, that worked! >> >> I also tried adding libcap-ng but it gives me the following error: > > where did you add it to ? it is a package so you have to add it to IMAGE_INSTALL > >> >> ERROR: Nothing RPROVIDES 'libcap-ng' (but >> /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produc >> t/recipes-core/images/fss-image-full.bb RDEPENDS on or otherwise >> requires it) >> >> But, I see it present at http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-support/libcap-ng/.....?? >> >> Thanks, >> Monica >> >> -----Original Message----- >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >> Sent: Sunday, June 19, 2016 5:14 PM >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> Cc: Khem Raj <raj.khem@gmail.com>; yocto@yoctoproject.org >> Subject: Re: [yocto] autoreconf >> >> Hi Monica, >> >> As shown in Khem's original example you need to add this through EXTRA_IMAGE_FEATURES, not IMAGE_INSTALL (since tools-sdk is a feature name, not a package name). >> >> Cheers, >> Paul >> >> On Sun, 19 Jun 2016 20:23:53 Rajasekaran, Monica wrote: >>> I added the following line to my recipe file, >>> >>> IMAGE_INSTALL += "tools-sdk" >>> >>> But there was the following error with the build: >>> >>> ERROR: Nothing RPROVIDES 'tools-sdk' (but >>> /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produ >>> c t/rec ipes-core/images/fss-image-full.bb RDEPENDS on or otherwise >>> requires it) >>> NOTE: Runtime target 'tools-sdk' is unbuildable, removing... >>> Missing or unbuildable dependency chain was: ['tools-sdk'] >>> ERROR: Required build target 'fss-image-full' has no buildable providers. >>> Missing or unbuildable dependency chain was: ['fss-image-full', >>> 'tools-sdk'] >> >>> Any idea on this? >>> >>> Thanks, >>> Monica >>> >>> -----Original Message----- >>> From: Khem Raj [mailto:raj.khem@gmail.com] >>> Sent: Wednesday, June 15, 2016 3:48 PM >>> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >>> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >>> yocto@yoctoproject.org >>> Subject: Re: [yocto] autoreconf >>> >>> That might work, however you might need more packages, so adding >>> tools-sdk will cover all of them in one go >> >>> >>> > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica >>> > <Monica.Rajasekaran@us.fujitsu.com> wrote: >> >>> > Hi Raj, >>> > >>> > Will adding a line in the image's recipe file like this work ? >>> > >>> > IMAGE_INSTALL = ”autoconf” >>> > >>> > I installed "git" and "resolvconf" in the same way. Just not sure >>> > about the package name this time. >> >>> > Thanks, >>> > Monica >>> > >>> > >>> > -----Original Message----- >>> > From: Khem Raj [mailto:raj.khem@gmail.com] >>> > Sent: Wednesday, June 15, 2016 3:42 PM >>> > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >>> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >>> > yocto@yoctoproject.org >>> > Subject: Re: [yocto] autoreconf >>> > >>> > You need to add autoconf to your target image, if you do not use >>> > Online package management >> >>> > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” >>> > >>> > in local.conf might help >>> > >>> > >>> > >>> >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica >>> >> <Monica.Rajasekaran@us.fujitsu.com> wrote: >> >>> >> Hi Paul, >>> >> >>> >> Thank you. This is in the target. >>> >> >>> >> Thanks, >>> >> Monica >>> >> >>> >> -----Original Message----- >>> >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >>> >> Sent: Wednesday, June 15, 2016 3:25 PM >>> >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >>> >> Cc: yocto@yoctoproject.org >>> >> Subject: Re: [yocto] autoreconf >>> >> >>> >> Hi Monica, >>> >> >>> >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >>> >> >>> >>> What is the package to install autoreconf ? (Ubuntu equivalent: >>> >>> apt-get install dh-autoreconf ) >>> >>> >>> >>> I am getting the following error for one of my applications: >>> >>> "autoreconf: command not found" >>> >> >>> >> >>> >> autoreconf is part of autoconf. >>> >> >>> >> Where is this? On the target or within the build system? >>> >> >>> >> Cheers, >>> >> Paul >>> >> >>> >> -- >>> >> >>> >> Paul Eggleton >>> >> Intel Open Source Technology Centre >>> >> -- >>> >> _______________________________________________ >>> >> yocto mailing list >>> >> yocto@yoctoproject.org >>> >> https://lists.yoctoproject.org/listinfo/yocto >>> > >>> > >>> >>> >> >> -- >> >> Paul Eggleton >> Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: autoreconf 2016-06-20 16:23 ` autoreconf Khem Raj @ 2016-06-20 16:44 ` Rajasekaran, Monica 0 siblings, 0 replies; 16+ messages in thread From: Rajasekaran, Monica @ 2016-06-20 16:44 UTC (permalink / raw) To: Khem Raj; +Cc: Paul Eggleton, yocto@yoctoproject.org Thanks for the answer. But that threw the following errors: ERROR: Nothing PROVIDES 'libcap-ng'. Close matches: libpng libcap libpcap Thanks, Monica -----Original Message----- From: Khem Raj [mailto:raj.khem@gmail.com] Sent: Monday, June 20, 2016 11:23 AM To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; yocto@yoctoproject.org Subject: Re: [yocto] autoreconf OK its a library so debian renaming might be tricking you here. IMAGE_INSTALL expects the output package names ( not recipe name) sometimes there is a package with same name as recipe name generated so it may seem like you can use package name or recipe name but thats not how it works. So please do this bitbake libcap-ng then see whats the emitted ipk or rpm in deloy/ area. Add that name to IMAGE_INSTALL On Mon, Jun 20, 2016 at 9:18 AM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: > Yes, I did the same. > > Thanks, > Monica > > > -----Original Message----- > From: Khem Raj [mailto:raj.khem@gmail.com] > Sent: Monday, June 20, 2016 11:15 AM > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; > yocto@yoctoproject.org > Subject: Re: [yocto] autoreconf > > On Mon, Jun 20, 2016 at 9:12 AM, Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> wrote: >> Thanks Paul and Khem, that worked! >> >> I also tried adding libcap-ng but it gives me the following error: > > where did you add it to ? it is a package so you have to add it to > IMAGE_INSTALL > >> >> ERROR: Nothing RPROVIDES 'libcap-ng' (but >> /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-produ >> c t/recipes-core/images/fss-image-full.bb RDEPENDS on or otherwise >> requires it) >> >> But, I see it present at http://git.yoctoproject.org/cgit.cgi/poky/plain/meta/recipes-support/libcap-ng/.....?? >> >> Thanks, >> Monica >> >> -----Original Message----- >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >> Sent: Sunday, June 19, 2016 5:14 PM >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >> Cc: Khem Raj <raj.khem@gmail.com>; yocto@yoctoproject.org >> Subject: Re: [yocto] autoreconf >> >> Hi Monica, >> >> As shown in Khem's original example you need to add this through EXTRA_IMAGE_FEATURES, not IMAGE_INSTALL (since tools-sdk is a feature name, not a package name). >> >> Cheers, >> Paul >> >> On Sun, 19 Jun 2016 20:23:53 Rajasekaran, Monica wrote: >>> I added the following line to my recipe file, >>> >>> IMAGE_INSTALL += "tools-sdk" >>> >>> But there was the following error with the build: >>> >>> ERROR: Nothing RPROVIDES 'tools-sdk' (but >>> /data/users/mrajase/l100_label_based_r100poc/repo/poky/meta-fss-prod >>> u c t/rec ipes-core/images/fss-image-full.bb RDEPENDS on or >>> otherwise requires it) >>> NOTE: Runtime target 'tools-sdk' is unbuildable, removing... >>> Missing or unbuildable dependency chain was: ['tools-sdk'] >>> ERROR: Required build target 'fss-image-full' has no buildable providers. >>> Missing or unbuildable dependency chain was: ['fss-image-full', >>> 'tools-sdk'] >> >>> Any idea on this? >>> >>> Thanks, >>> Monica >>> >>> -----Original Message----- >>> From: Khem Raj [mailto:raj.khem@gmail.com] >>> Sent: Wednesday, June 15, 2016 3:48 PM >>> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >>> Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >>> yocto@yoctoproject.org >>> Subject: Re: [yocto] autoreconf >>> >>> That might work, however you might need more packages, so adding >>> tools-sdk will cover all of them in one go >> >>> >>> > On Jun 15, 2016, at 1:47 PM, Rajasekaran, Monica >>> > <Monica.Rajasekaran@us.fujitsu.com> wrote: >> >>> > Hi Raj, >>> > >>> > Will adding a line in the image's recipe file like this work ? >>> > >>> > IMAGE_INSTALL = ”autoconf” >>> > >>> > I installed "git" and "resolvconf" in the same way. Just not sure >>> > about the package name this time. >> >>> > Thanks, >>> > Monica >>> > >>> > >>> > -----Original Message----- >>> > From: Khem Raj [mailto:raj.khem@gmail.com] >>> > Sent: Wednesday, June 15, 2016 3:42 PM >>> > To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >>> > Cc: Paul Eggleton <paul.eggleton@linux.intel.com>; >>> > yocto@yoctoproject.org >>> > Subject: Re: [yocto] autoreconf >>> > >>> > You need to add autoconf to your target image, if you do not use >>> > Online package management >> >>> > EXTRA_IMAGE_FEATURES_append = “ tools-sdk” >>> > >>> > in local.conf might help >>> > >>> > >>> > >>> >> On Jun 15, 2016, at 1:35 PM, Rajasekaran, Monica >>> >> <Monica.Rajasekaran@us.fujitsu.com> wrote: >> >>> >> Hi Paul, >>> >> >>> >> Thank you. This is in the target. >>> >> >>> >> Thanks, >>> >> Monica >>> >> >>> >> -----Original Message----- >>> >> From: Paul Eggleton [mailto:paul.eggleton@linux.intel.com] >>> >> Sent: Wednesday, June 15, 2016 3:25 PM >>> >> To: Rajasekaran, Monica <Monica.Rajasekaran@us.fujitsu.com> >>> >> Cc: yocto@yoctoproject.org >>> >> Subject: Re: [yocto] autoreconf >>> >> >>> >> Hi Monica, >>> >> >>> >> On Wed, 15 Jun 2016 20:17:16 Rajasekaran, Monica wrote: >>> >> >>> >>> What is the package to install autoreconf ? (Ubuntu equivalent: >>> >>> apt-get install dh-autoreconf ) >>> >>> >>> >>> I am getting the following error for one of my applications: >>> >>> "autoreconf: command not found" >>> >> >>> >> >>> >> autoreconf is part of autoconf. >>> >> >>> >> Where is this? On the target or within the build system? >>> >> >>> >> Cheers, >>> >> Paul >>> >> >>> >> -- >>> >> >>> >> Paul Eggleton >>> >> Intel Open Source Technology Centre >>> >> -- >>> >> _______________________________________________ >>> >> yocto mailing list >>> >> yocto@yoctoproject.org >>> >> https://lists.yoctoproject.org/listinfo/yocto >>> > >>> > >>> >>> >> >> -- >> >> Paul Eggleton >> Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 16+ messages in thread
* ubuntu xenial support 2016-06-20 16:18 ` autoreconf Rajasekaran, Monica 2016-06-20 16:22 ` autoreconf Rajasekaran, Monica 2016-06-20 16:23 ` autoreconf Khem Raj @ 2016-06-20 16:24 ` Fred Ollinger 2016-06-20 16:35 ` Khem Raj 2 siblings, 1 reply; 16+ messages in thread From: Fred Ollinger @ 2016-06-20 16:24 UTC (permalink / raw) To: yocto@yoctoproject.org Anyone using Ubuntu Xenial release yet? Any tricks to get it working? Frederick ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: ubuntu xenial support 2016-06-20 16:24 ` ubuntu xenial support Fred Ollinger @ 2016-06-20 16:35 ` Khem Raj 0 siblings, 0 replies; 16+ messages in thread From: Khem Raj @ 2016-06-20 16:35 UTC (permalink / raw) To: Fred Ollinger; +Cc: yocto@yoctoproject.org On Mon, Jun 20, 2016 at 9:24 AM, Fred Ollinger <Fred.Ollinger@seescan.com> wrote: > Anyone using Ubuntu Xenial release yet? > > Any tricks to get it working? master OE just works fine on 16.04 here > > Frederick > -- > _______________________________________________ > yocto mailing list > yocto@yoctoproject.org > https://lists.yoctoproject.org/listinfo/yocto ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2016-06-20 16:44 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2016-06-15 20:17 autoreconf Rajasekaran, Monica 2016-06-15 20:24 ` autoreconf Paul Eggleton 2016-06-15 20:35 ` autoreconf Rajasekaran, Monica 2016-06-15 20:42 ` autoreconf Khem Raj 2016-06-15 20:47 ` autoreconf Rajasekaran, Monica 2016-06-15 20:48 ` autoreconf Khem Raj 2016-06-19 20:23 ` autoreconf Rajasekaran, Monica 2016-06-19 22:13 ` autoreconf Paul Eggleton 2016-06-20 16:12 ` autoreconf Rajasekaran, Monica 2016-06-20 16:14 ` autoreconf Khem Raj 2016-06-20 16:18 ` autoreconf Rajasekaran, Monica 2016-06-20 16:22 ` autoreconf Rajasekaran, Monica 2016-06-20 16:23 ` autoreconf Khem Raj 2016-06-20 16:44 ` autoreconf Rajasekaran, Monica 2016-06-20 16:24 ` ubuntu xenial support Fred Ollinger 2016-06-20 16:35 ` Khem Raj
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.