All of lore.kernel.org
 help / color / mirror / Atom feed
* libsnmp-dev in yocto built image
@ 2013-04-19 14:44 Katu Txakur
  2013-04-19 15:05 ` Paul Eggleton
  0 siblings, 1 reply; 4+ messages in thread
From: Katu Txakur @ 2013-04-19 14:44 UTC (permalink / raw)
  To: yocto

[-- Attachment #1: Type: text/plain, Size: 851 bytes --]

Hi,
I want to include net-snmp in an image that I'm building with the Yocto
project (gumstix-console-image). When I add it net-snmp-client or server to
the local.conf I get this error when bitbake is creating the rootfs.


Processing perl-module-text-soundex...

error: Failed dependencies:

net-snmp-server = ${EXTENDPV} is needed by net-snmp-dev-5.7.1-r0.armv7a

net-snmp-client = ${EXTENDPV} is needed by net-snmp-dev-5.7.1-r0.armv7a

eglibc-binary-localedata-de-de.iso88591 is needed by
locale-base-de-de.iso-8859-1-2.13-r20.armv7a

/home/katu/gumstix-yocto/build/tmp/sysroots/i686-linux/usr/bin/perl-native/perl
is needed by dpkg-1.15.8.7-r16.4.armv7a


I also want to include libsnmp-dev to include the agent_module_config.h in
my development enviroment.

Could somebody please give me a hand with this?

Thanks a lot

[-- Attachment #2: Type: text/html, Size: 1728 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: libsnmp-dev in yocto built image
  2013-04-19 14:44 libsnmp-dev in yocto built image Katu Txakur
@ 2013-04-19 15:05 ` Paul Eggleton
  2013-04-19 15:22   ` Katu Txakur
  0 siblings, 1 reply; 4+ messages in thread
From: Paul Eggleton @ 2013-04-19 15:05 UTC (permalink / raw)
  To: Katu Txakur; +Cc: yocto

On Friday 19 April 2013 15:44:39 Katu Txakur wrote:
> I want to include net-snmp in an image that I'm building with the Yocto
> project (gumstix-console-image). When I add it net-snmp-client or server to
> the local.conf I get this error when bitbake is creating the rootfs.
> 
> Processing perl-module-text-soundex...
> 
> error: Failed dependencies:
> 
> net-snmp-server = ${EXTENDPV} is needed by net-snmp-dev-5.7.1-r0.armv7a
> 
> net-snmp-client = ${EXTENDPV} is needed by net-snmp-dev-5.7.1-r0.armv7a

We don't use EXTENDPV anymore; EXTENDPV is not defined and that's why you're 
seeing that unexpanded value. Where did you get your net-snmp recipe from? 
Which version of the build system are you using?

Cheers,
Paul

-- 

Paul Eggleton
Intel Open Source Technology Centre


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: libsnmp-dev in yocto built image
  2013-04-19 15:05 ` Paul Eggleton
@ 2013-04-19 15:22   ` Katu Txakur
  2013-04-22 12:39     ` Katu Txakur
  0 siblings, 1 reply; 4+ messages in thread
From: Katu Txakur @ 2013-04-19 15:22 UTC (permalink / raw)
  To: Paul Eggleton; +Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 1180 bytes --]

Thanks Paul,

I followed these instructions
https://github.com/gumstix/Gumstix-YoctoProject-Repo
The recipe was in
~/yocto/poky/meta-openembedded/meta-oe/recipes-extended/net-snmp/
net-snmp_5.7.1.bb
I'm using
BB version 1.15.1
Distro Poky 1.2.1

Cheers



2013/4/19 Paul Eggleton <paul.eggleton@linux.intel.com>

> On Friday 19 April 2013 15:44:39 Katu Txakur wrote:
> > I want to include net-snmp in an image that I'm building with the Yocto
> > project (gumstix-console-image). When I add it net-snmp-client or server
> to
> > the local.conf I get this error when bitbake is creating the rootfs.
> >
> > Processing perl-module-text-soundex...
> >
> > error: Failed dependencies:
> >
> > net-snmp-server = ${EXTENDPV} is needed by net-snmp-dev-5.7.1-r0.armv7a
> >
> > net-snmp-client = ${EXTENDPV} is needed by net-snmp-dev-5.7.1-r0.armv7a
>
> We don't use EXTENDPV anymore; EXTENDPV is not defined and that's why
> you're
> seeing that unexpanded value. Where did you get your net-snmp recipe from?
> Which version of the build system are you using?
>
> Cheers,
> Paul
>
> --
>
> Paul Eggleton
> Intel Open Source Technology Centre
>

[-- Attachment #2: Type: text/html, Size: 1927 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: libsnmp-dev in yocto built image
  2013-04-19 15:22   ` Katu Txakur
@ 2013-04-22 12:39     ` Katu Txakur
  0 siblings, 0 replies; 4+ messages in thread
From: Katu Txakur @ 2013-04-22 12:39 UTC (permalink / raw)
  Cc: yocto

[-- Attachment #1: Type: text/plain, Size: 1686 bytes --]

I edited the file
~/yocto/poky/meta-openembedded/meta-oe/recipes-extended/net-snmp/net-snmp.inc
and I changed
EXTENDPV for EXTENDPKGV in all the places (4).
After that, bitbaking the gumstix-console-image with IMAGE_INSTALL +=
"net-snmp-dev"
(and others) in the build/conf/local.conf worked!
This is with net-snmp_5.7.1.bb
Thanks for your help Paul.
Hob is a very useful tool too.


2013/4/19 Katu Txakur <katutxakurra@gmail.com>

> Thanks Paul,
>
> I followed these instructions
> https://github.com/gumstix/Gumstix-YoctoProject-Repo
> The recipe was in
> ~/yocto/poky/meta-openembedded/meta-oe/recipes-extended/net-snmp/
> net-snmp_5.7.1.bb
> I'm using
> BB version 1.15.1
> Distro Poky 1.2.1
>
> Cheers
>
>
>
> 2013/4/19 Paul Eggleton <paul.eggleton@linux.intel.com>
>
>> On Friday 19 April 2013 15:44:39 Katu Txakur wrote:
>> > I want to include net-snmp in an image that I'm building with the Yocto
>> > project (gumstix-console-image). When I add it net-snmp-client or
>> server to
>> > the local.conf I get this error when bitbake is creating the rootfs.
>> >
>> > Processing perl-module-text-soundex...
>> >
>> > error: Failed dependencies:
>> >
>> > net-snmp-server = ${EXTENDPV} is needed by net-snmp-dev-5.7.1-r0.armv7a
>> >
>> > net-snmp-client = ${EXTENDPV} is needed by net-snmp-dev-5.7.1-r0.armv7a
>>
>> We don't use EXTENDPV anymore; EXTENDPV is not defined and that's why
>> you're
>> seeing that unexpanded value. Where did you get your net-snmp recipe from?
>> Which version of the build system are you using?
>>
>> Cheers,
>> Paul
>>
>> --
>>
>> Paul Eggleton
>> Intel Open Source Technology Centre
>>
>
>

[-- Attachment #2: Type: text/html, Size: 3428 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-04-22 12:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-19 14:44 libsnmp-dev in yocto built image Katu Txakur
2013-04-19 15:05 ` Paul Eggleton
2013-04-19 15:22   ` Katu Txakur
2013-04-22 12:39     ` Katu Txakur

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.