All of lore.kernel.org
 help / color / mirror / Atom feed
* New recipes not installing in core-image-minimal
@ 2012-01-27  1:29 Darren Hart
  2012-01-27  1:42 ` Saul Wold
  2012-01-27  8:02 ` Martin Jansa
  0 siblings, 2 replies; 11+ messages in thread
From: Darren Hart @ 2012-01-27  1:29 UTC (permalink / raw)
  To: Yocto Project

In support of a new BSP I've written two new recipes and appended to
another to depend on them. The new recipes files are not appearing in
the resulting images. I'm sure I'm overlooking something trivial, but
I'm not sure what it would be. The layer is available here:

http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=dvhart/sys940x

I've added ranpwd, genmac, and appended to netbase.

netbase RDEPENDS on genmac and genmac RDEPENDS on ranpwd. Building
core-image-minimal triggers the build of genmac and ranpwd, and the
modified /etc/network/interfaces appears in the rootfs. genmac and
ranpwd place the appropriate files in their workdir/image directory, but
those files don't make it into the rootfs.

Can anyone offer an explanation as to why that might be? The top 4
commits of the repository linked to above will list the new recipes and
the bbappend for reference.

Thanks,

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


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

* Re: New recipes not installing in core-image-minimal
  2012-01-27  1:29 New recipes not installing in core-image-minimal Darren Hart
@ 2012-01-27  1:42 ` Saul Wold
  2012-01-27  1:57   ` Darren Hart
  2012-01-27  8:02 ` Martin Jansa
  1 sibling, 1 reply; 11+ messages in thread
From: Saul Wold @ 2012-01-27  1:42 UTC (permalink / raw)
  To: Darren Hart; +Cc: Yocto Project

On 01/26/2012 05:29 PM, Darren Hart wrote:
> In support of a new BSP I've written two new recipes and appended to
> another to depend on them. The new recipes files are not appearing in
> the resulting images. I'm sure I'm overlooking something trivial, but
> I'm not sure what it would be. The layer is available here:
>
> http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=dvhart/sys940x
>
> I've added ranpwd, genmac, and appended to netbase.
>
> netbase RDEPENDS on genmac and genmac RDEPENDS on ranpwd. Building
> core-image-minimal triggers the build of genmac and ranpwd, and the
> modified /etc/network/interfaces appears in the rootfs. genmac and
> ranpwd place the appropriate files in their workdir/image directory, but
> those files don't make it into the rootfs.
>
RDEPENDS_${PN} would work much better !

Sau!

> Can anyone offer an explanation as to why that might be? The top 4
> commits of the repository linked to above will list the new recipes and
> the bbappend for reference.
>
> Thanks,
>


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

* Re: New recipes not installing in core-image-minimal
  2012-01-27  1:42 ` Saul Wold
@ 2012-01-27  1:57   ` Darren Hart
  2012-01-27  8:08     ` Martin Jansa
  0 siblings, 1 reply; 11+ messages in thread
From: Darren Hart @ 2012-01-27  1:57 UTC (permalink / raw)
  To: Saul Wold; +Cc: Yocto Project



On 01/26/2012 05:42 PM, Saul Wold wrote:
> On 01/26/2012 05:29 PM, Darren Hart wrote:
>> In support of a new BSP I've written two new recipes and appended to
>> another to depend on them. The new recipes files are not appearing in
>> the resulting images. I'm sure I'm overlooking something trivial, but
>> I'm not sure what it would be. The layer is available here:
>>
>> http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=dvhart/sys940x
>>
>> I've added ranpwd, genmac, and appended to netbase.
>>
>> netbase RDEPENDS on genmac and genmac RDEPENDS on ranpwd. Building
>> core-image-minimal triggers the build of genmac and ranpwd, and the
>> modified /etc/network/interfaces appears in the rootfs. genmac and
>> ranpwd place the appropriate files in their workdir/image directory, but
>> those files don't make it into the rootfs.
>>
> RDEPENDS_${PN} would work much better !

Perhaps, but it didn't fix this particular problem. Neither
/usr/bin/ranpwd nor /etc/init.d/genmac appear in the rootfs. However,
each still appears in their respective workdir/image:

$ find
tmp/work/sys940x_noemgd-poky-linux/core-image-minimal-1.0-r0/rootfs
-name "ranpwd"
<NULL>

$ find
tmp/work/sys940x_noemgd-poky-linux/core-image-minimal-1.0-r0/rootfs
-name "genmac"
<NULL>

$ ls tmp/work/core2-poky-linux/genmac-1.0-r0/image/etc/init.d/
genmac

$ ls tmp/work/core2-poky-linux/ranpwd-git-r0/image/usr/bin/
ranpwd

genmac doesn't have a log.do_install in the workdir/temp directory. Is
that significant?

ranpwd does, but it isn't instructive:

$ cat tmp/work/core2-poky-linux/ranpwd-git-r0/temp/log.do_install
DEBUG: SITE files ['endian-little', 'bit-32', 'ix86-common',
'common-linux', 'common-glibc', 'i586-linux', 'common']

Any other thoughts?


> 
> Sau!
> 
>> Can anyone offer an explanation as to why that might be? The top 4
>> commits of the repository linked to above will list the new recipes and
>> the bbappend for reference.
>>
>> Thanks,
>>

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


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

* Re: New recipes not installing in core-image-minimal
  2012-01-27  1:29 New recipes not installing in core-image-minimal Darren Hart
  2012-01-27  1:42 ` Saul Wold
@ 2012-01-27  8:02 ` Martin Jansa
  2012-01-27  8:06   ` Darren Hart
  1 sibling, 1 reply; 11+ messages in thread
From: Martin Jansa @ 2012-01-27  8:02 UTC (permalink / raw)
  To: Darren Hart; +Cc: Yocto Project

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

On Thu, Jan 26, 2012 at 05:29:19PM -0800, Darren Hart wrote:
> In support of a new BSP I've written two new recipes and appended to
> another to depend on them. The new recipes files are not appearing in
> the resulting images. I'm sure I'm overlooking something trivial, but
> I'm not sure what it would be. The layer is available here:
> 
> http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=dvhart/sys940x
> 
> I've added ranpwd, genmac, and appended to netbase.
> 
> netbase RDEPENDS on genmac and genmac RDEPENDS on ranpwd. Building
> core-image-minimal triggers the build of genmac and ranpwd, and the
> modified /etc/network/interfaces appears in the rootfs. genmac and
> ranpwd place the appropriate files in their workdir/image directory, but
> those files don't make it into the rootfs.
> 
> Can anyone offer an explanation as to why that might be? The top 4
> commits of the repository linked to above will list the new recipes and
> the bbappend for reference.

Have you tried correct version of RDEPENDS? RDEPENDS_${PN} ?

Cheers,
> 
> Thanks,
> 
> -- 
> Darren Hart
> Intel Open Source Technology Center
> Yocto Project - Linux Kernel
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: New recipes not installing in core-image-minimal
  2012-01-27  8:02 ` Martin Jansa
@ 2012-01-27  8:06   ` Darren Hart
  2012-01-31 18:21     ` Darren Hart
  0 siblings, 1 reply; 11+ messages in thread
From: Darren Hart @ 2012-01-27  8:06 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Yocto Project

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1



On 01/27/2012 12:02 AM, Martin Jansa wrote:
> On Thu, Jan 26, 2012 at 05:29:19PM -0800, Darren Hart wrote:
>> In support of a new BSP I've written two new recipes and appended
>> to another to depend on them. The new recipes files are not
>> appearing in the resulting images. I'm sure I'm overlooking
>> something trivial, but I'm not sure what it would be. The layer
>> is available here:
>> 
>> http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=dvhart/sys940x
>>
>>
>> 
I've added ranpwd, genmac, and appended to netbase.
>> 
>> netbase RDEPENDS on genmac and genmac RDEPENDS on ranpwd.
>> Building core-image-minimal triggers the build of genmac and
>> ranpwd, and the modified /etc/network/interfaces appears in the
>> rootfs. genmac and ranpwd place the appropriate files in their
>> workdir/image directory, but those files don't make it into the
>> rootfs.
>> 
>> Can anyone offer an explanation as to why that might be? The top
>> 4 commits of the repository linked to above will list the new
>> recipes and the bbappend for reference.
> 
> Have you tried correct version of RDEPENDS? RDEPENDS_${PN} ?

I have, yes, this is what Saul suggested in his response. Same end result.

- --
Darren

> 
> Cheers,
>> 
>> Thanks,
>> 
>> -- Darren Hart Intel Open Source Technology Center Yocto Project
>> - Linux Kernel _______________________________________________ 
>> yocto mailing list yocto@yoctoproject.org 
>> https://lists.yoctoproject.org/listinfo/yocto
> 

- -- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPIlrzAAoJEKbMaAwKp364JC4IAJWQOfoNUlbXUSMfe3OQda5V
NOSBcFSEfkkk7c/cvxWHq9B298BRvqMDXzTY2kqZOOjx5a8zocg/+wRLdkvPjx7F
x9ZpSVjp+UDoHeQDDh9Qx3My7r2w1h2RK6YTM1sc+y3Ubc1USxdvedOLAVCzoE7O
Imr2aDKFWgyaK2C5dmxC4kTVwwIVStlciX1KaomcJv2kfvVpV1Cg2jDdEkwwPAu7
m09JcasPnukS+T7yF6XBMelYrWLbkJnH4O19pvaHXbZIDBLBon72zpXC+dahpCmm
41KNwrRKTIzW/iSk562ZF+KwD+tVLnpxGKYqxpmsJ7HyU0dOylSDfcsj8Yf9nsc=
=JAHD
-----END PGP SIGNATURE-----


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

* Re: New recipes not installing in core-image-minimal
  2012-01-27  1:57   ` Darren Hart
@ 2012-01-27  8:08     ` Martin Jansa
  2012-01-27 10:22       ` Joshua Immanuel
  0 siblings, 1 reply; 11+ messages in thread
From: Martin Jansa @ 2012-01-27  8:08 UTC (permalink / raw)
  To: Darren Hart; +Cc: Yocto Project

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

On Thu, Jan 26, 2012 at 05:57:11PM -0800, Darren Hart wrote:
> 
> 
> On 01/26/2012 05:42 PM, Saul Wold wrote:
> > On 01/26/2012 05:29 PM, Darren Hart wrote:
> >> In support of a new BSP I've written two new recipes and appended to
> >> another to depend on them. The new recipes files are not appearing in
> >> the resulting images. I'm sure I'm overlooking something trivial, but
> >> I'm not sure what it would be. The layer is available here:
> >>
> >> http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=dvhart/sys940x
> >>
> >> I've added ranpwd, genmac, and appended to netbase.
> >>
> >> netbase RDEPENDS on genmac and genmac RDEPENDS on ranpwd. Building
> >> core-image-minimal triggers the build of genmac and ranpwd, and the
> >> modified /etc/network/interfaces appears in the rootfs. genmac and
> >> ranpwd place the appropriate files in their workdir/image directory, but
> >> those files don't make it into the rootfs.
> >>
> > RDEPENDS_${PN} would work much better !
> 
> Perhaps, but it didn't fix this particular problem. Neither
> /usr/bin/ranpwd nor /etc/init.d/genmac appear in the rootfs. However,
> each still appears in their respective workdir/image:

Are they in workdir/packages-split/genmac/etc/init.d/genmac
workdir/packages-split/ranpwd/etc/init.d/ranpwd

Maybe log.do_package even reports them as unpackaged files..

I don't think that update-rc.d adds /etc/init.d to FILES_${PN} for you.

Cheers,

> 
> $ find
> tmp/work/sys940x_noemgd-poky-linux/core-image-minimal-1.0-r0/rootfs
> -name "ranpwd"
> <NULL>
> 
> $ find
> tmp/work/sys940x_noemgd-poky-linux/core-image-minimal-1.0-r0/rootfs
> -name "genmac"
> <NULL>
> 
> $ ls tmp/work/core2-poky-linux/genmac-1.0-r0/image/etc/init.d/
> genmac
> 
> $ ls tmp/work/core2-poky-linux/ranpwd-git-r0/image/usr/bin/
> ranpwd
> 
> genmac doesn't have a log.do_install in the workdir/temp directory. Is
> that significant?
> 
> ranpwd does, but it isn't instructive:
> 
> $ cat tmp/work/core2-poky-linux/ranpwd-git-r0/temp/log.do_install
> DEBUG: SITE files ['endian-little', 'bit-32', 'ix86-common',
> 'common-linux', 'common-glibc', 'i586-linux', 'common']
> 
> Any other thoughts?
> 
> 
> > 
> > Sau!
> > 
> >> Can anyone offer an explanation as to why that might be? The top 4
> >> commits of the repository linked to above will list the new recipes and
> >> the bbappend for reference.
> >>
> >> Thanks,
> >>
> 
> -- 
> Darren Hart
> Intel Open Source Technology Center
> Yocto Project - Linux Kernel
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: New recipes not installing in core-image-minimal
  2012-01-27  8:08     ` Martin Jansa
@ 2012-01-27 10:22       ` Joshua Immanuel
  2012-01-27 10:30         ` Martin Jansa
  0 siblings, 1 reply; 11+ messages in thread
From: Joshua Immanuel @ 2012-01-27 10:22 UTC (permalink / raw)
  To: Yocto Project

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

Hello Martin,

On Fri, 2012-01-27 at 09:08 +0100, Martin Jansa wrote:
> > Perhaps, but it didn't fix this particular problem. Neither
> > /usr/bin/ranpwd nor /etc/init.d/genmac appear in the rootfs.
> > However, each still appears in their respective workdir/image:
> 
> Are they in workdir/packages-split/genmac/etc/init.d/genmac
> workdir/packages-split/ranpwd/etc/init.d/ranpwd 

I too have a similar issue when I try to include a manually constructed
fstab file into the rootfs image. The file is available in the following
locations
     1. core2-poky-linux/${PN}-${PV}-${PR}/etc/fstab
     2. core2-poky-linux/${PN}-${PV}-${PR}/packages-split/${PN}/etc/fstab

but not in the final rootfs image. May be I am missing something
trivial.

Eager to know the solution on this thread.

Regards
Joshua
-- 
Joshua Immanuel
HiPro IT Solutions Private Limited
http://hipro.co.in

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: New recipes not installing in core-image-minimal
  2012-01-27 10:22       ` Joshua Immanuel
@ 2012-01-27 10:30         ` Martin Jansa
  2012-01-27 17:13           ` Darren Hart
  0 siblings, 1 reply; 11+ messages in thread
From: Martin Jansa @ 2012-01-27 10:30 UTC (permalink / raw)
  To: Joshua Immanuel; +Cc: Yocto Project

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

On Fri, Jan 27, 2012 at 03:52:58PM +0530, Joshua Immanuel wrote:
> Hello Martin,
> 
> On Fri, 2012-01-27 at 09:08 +0100, Martin Jansa wrote:
> > > Perhaps, but it didn't fix this particular problem. Neither
> > > /usr/bin/ranpwd nor /etc/init.d/genmac appear in the rootfs.
> > > However, each still appears in their respective workdir/image:
> > 
> > Are they in workdir/packages-split/genmac/etc/init.d/genmac
> > workdir/packages-split/ranpwd/etc/init.d/ranpwd 
> 
> I too have a similar issue when I try to include a manually constructed
> fstab file into the rootfs image. The file is available in the following
> locations
>      1. core2-poky-linux/${PN}-${PV}-${PR}/etc/fstab
>      2. core2-poky-linux/${PN}-${PV}-${PR}/packages-split/${PN}/etc/fstab
> 
> but not in the final rootfs image. May be I am missing something
> trivial.

Maybe it depends on used package-manager bud I guess that at least
opkg will refuse to overwrite /etc/fstab provided by base-files by
/etc/fstab from your fancy PN and even if it allows it in do_rootfs, 
then it's not good idea for image with online package management,
because your custom fstab will be overwritten as soon as base-files are
changed.

Why not .bbappend base-files and customize fstab there?

> Eager to know the solution on this thread.
> 
> Regards
> Joshua
> -- 
> Joshua Immanuel
> HiPro IT Solutions Private Limited
> http://hipro.co.in



> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto


-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: New recipes not installing in core-image-minimal
  2012-01-27 10:30         ` Martin Jansa
@ 2012-01-27 17:13           ` Darren Hart
  2012-01-30 11:02             ` Joshua Immanuel
  0 siblings, 1 reply; 11+ messages in thread
From: Darren Hart @ 2012-01-27 17:13 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Yocto Project



On 01/27/2012 02:30 AM, Martin Jansa wrote:
> On Fri, Jan 27, 2012 at 03:52:58PM +0530, Joshua Immanuel wrote:
>> Hello Martin,
>>
>> On Fri, 2012-01-27 at 09:08 +0100, Martin Jansa wrote:
>>>> Perhaps, but it didn't fix this particular problem. Neither
>>>> /usr/bin/ranpwd nor /etc/init.d/genmac appear in the rootfs.
>>>> However, each still appears in their respective workdir/image:
>>>
>>> Are they in workdir/packages-split/genmac/etc/init.d/genmac
>>> workdir/packages-split/ranpwd/etc/init.d/ranpwd 
>>
>> I too have a similar issue when I try to include a manually constructed
>> fstab file into the rootfs image. The file is available in the following
>> locations
>>      1. core2-poky-linux/${PN}-${PV}-${PR}/etc/fstab
>>      2. core2-poky-linux/${PN}-${PV}-${PR}/packages-split/${PN}/etc/fstab
>>
>> but not in the final rootfs image. May be I am missing something
>> trivial.
> 
> Maybe it depends on used package-manager bud I guess that at least
> opkg will refuse to overwrite /etc/fstab provided by base-files by
> /etc/fstab from your fancy PN and even if it allows it in do_rootfs, 
> then it's not good idea for image with online package management,
> because your custom fstab will be overwritten as soon as base-files are
> changed.
> 
> Why not .bbappend base-files and customize fstab there?

This is how I am modifying /etc/network/interfaces and this is working
fine for me. Joshua, I'd second Martin's suggestion.

--
Darren

> 
>> Eager to know the solution on this thread.
>>
>> Regards
>> Joshua
>> -- 
>> Joshua Immanuel
>> HiPro IT Solutions Private Limited
>> http://hipro.co.in
> 
> 
> 
>> _______________________________________________
>> yocto mailing list
>> yocto@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/yocto
> 
> 
> 
> 
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel


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

* Re: New recipes not installing in core-image-minimal
  2012-01-27 17:13           ` Darren Hart
@ 2012-01-30 11:02             ` Joshua Immanuel
  0 siblings, 0 replies; 11+ messages in thread
From: Joshua Immanuel @ 2012-01-30 11:02 UTC (permalink / raw)
  To: Yocto Project

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

Hello Darren, Martin,

Thanks for the reply.

On Fri, 2012-01-27 at 09:13 -0800, Darren Hart wrote:
> > Why not .bbappend base-files and customize fstab there?
> 
> This is how I am modifying /etc/network/interfaces and this is working
> fine for me. Joshua, I'd second Martin's suggestion. 

As you suggested I'll use this approach instead of creating a new
package.

Regards
Joshua
-- 
Joshua Immanuel
HiPro IT Solutions Private Limited
http://hipro.co.in

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: New recipes not installing in core-image-minimal
  2012-01-27  8:06   ` Darren Hart
@ 2012-01-31 18:21     ` Darren Hart
  0 siblings, 0 replies; 11+ messages in thread
From: Darren Hart @ 2012-01-31 18:21 UTC (permalink / raw)
  To: Martin Jansa; +Cc: Yocto Project, Wold, Saul

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1



On 01/27/2012 12:06 AM, Darren Hart wrote:
> 
> 
> On 01/27/2012 12:02 AM, Martin Jansa wrote:
>> On Thu, Jan 26, 2012 at 05:29:19PM -0800, Darren Hart wrote:
>>> In support of a new BSP I've written two new recipes and
>>> appended to another to depend on them. The new recipes files
>>> are not appearing in the resulting images. I'm sure I'm
>>> overlooking something trivial, but I'm not sure what it would
>>> be. The layer is available here:
>>> 
>>> http://git.yoctoproject.org/cgit.cgi/meta-intel-contrib/log/?h=dvhart/sys940x
>>>
>>>
>>>
>
>>> 
I've added ranpwd, genmac, and appended to netbase.
>>> 
>>> netbase RDEPENDS on genmac and genmac RDEPENDS on ranpwd. 
>>> Building core-image-minimal triggers the build of genmac and 
>>> ranpwd, and the modified /etc/network/interfaces appears in
>>> the rootfs. genmac and ranpwd place the appropriate files in
>>> their workdir/image directory, but those files don't make it
>>> into the rootfs.
>>> 
>>> Can anyone offer an explanation as to why that might be? The
>>> top 4 commits of the repository linked to above will list the
>>> new recipes and the bbappend for reference.
> 
>> Have you tried correct version of RDEPENDS? RDEPENDS_${PN} ?
> 
> I have, yes, this is what Saul suggested in his response. Same end
> result.
> 

Apparently I had failed to cleanall my genmac recipe. So while netbase
depended on genmac, genmac was not depending on ranpwd. I can't explain
why this resulted in neither genmac nor ranpwd appearing in the rootfs
at the time. My current build installed both.

- -- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPKDETAAoJEKbMaAwKp364ca8IAL5eHwcDENdZlknPUVpUIuDj
BVSRbtqKTAzVQgQb8ewWY1Yyt4EEPqlvBl1isKbmNKGz5uyYj+xoHAaQl4Xak2Hp
Q8fkTDuUrpMPlJGJYKt9hV9aXHYf/f2lXU0OXRsq389QVHP9JW/Jvjvs7ynx+KcA
4P6pJav+PXfuKBGAu6by+SFnIZYM3DUyVKZANUcVQChC5siLWHNbwMhfPNurnIbe
3+vrr1acXa9/q4e++apkIENLHY8Omasu/JuKa92aM+7dcUp4gNetj/6oPmkBr1OC
407weio81nC8G5nCSXJcbG58Yf12jXDt6605jjOU9R6fBfFrQMquY3QpeNaeZNk=
=Mlbi
-----END PGP SIGNATURE-----


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

end of thread, other threads:[~2012-01-31 18:21 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-27  1:29 New recipes not installing in core-image-minimal Darren Hart
2012-01-27  1:42 ` Saul Wold
2012-01-27  1:57   ` Darren Hart
2012-01-27  8:08     ` Martin Jansa
2012-01-27 10:22       ` Joshua Immanuel
2012-01-27 10:30         ` Martin Jansa
2012-01-27 17:13           ` Darren Hart
2012-01-30 11:02             ` Joshua Immanuel
2012-01-27  8:02 ` Martin Jansa
2012-01-27  8:06   ` Darren Hart
2012-01-31 18:21     ` Darren Hart

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.