All of lore.kernel.org
 help / color / mirror / Atom feed
* Add nfs package to image minimal for atom-pc
@ 2013-09-16  9:37 Jack
  2013-09-16 10:31 ` Jegan Chandru
  0 siblings, 1 reply; 6+ messages in thread
From: Jack @ 2013-09-16  9:37 UTC (permalink / raw)
  To: yocto

Hi,

I built a core-image-minimal for atom-pc. Then, I want to add it nfs and ssh
packages. I added IMAGE_INSTALL_append_pn-core-image-minimal = "
packagegroup-core-ssh-openssh packagegroup-core-nfs" line to local.conf
file. Package packagegroup-core-ssh-openssh was built but I got error for
packagegroup-core-nfs. Error is:

Error: packagegroup-core-nfs not found in the base feeds (atom_pc core2 i686
i586 i486 i386 x86 noarch any all).

How can I solve this error ?
Thanks.




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

* Re: Add nfs package to image minimal for atom-pc
  2013-09-16  9:37 Add nfs package to image minimal for atom-pc Jack
@ 2013-09-16 10:31 ` Jegan Chandru
  2013-09-16 11:04   ` Jack
  0 siblings, 1 reply; 6+ messages in thread
From: Jegan Chandru @ 2013-09-16 10:31 UTC (permalink / raw)
  To: Jack; +Cc: yocto@yoctoproject.org

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

I reckon it should be packagegroup-core-nfs-server??! Can you try adding
this in local.conf?


On Mon, Sep 16, 2013 at 3:07 PM, Jack <jackrubby2010@gmail.com> wrote:

> Hi,
>
> I built a core-image-minimal for atom-pc. Then, I want to add it nfs and
> ssh
> packages. I added IMAGE_INSTALL_append_pn-core-image-minimal = "
> packagegroup-core-ssh-openssh packagegroup-core-nfs" line to local.conf
> file. Package packagegroup-core-ssh-openssh was built but I got error for
> packagegroup-core-nfs. Error is:
>
> Error: packagegroup-core-nfs not found in the base feeds (atom_pc core2
> i686
> i586 i486 i386 x86 noarch any all).
>
> How can I solve this error ?
> Thanks.
>
>
> _______________________________________________
> yocto mailing list
> yocto@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/yocto
>



-- 
JCP

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

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

* Re: Add nfs package to image minimal for atom-pc
  2013-09-16 10:31 ` Jegan Chandru
@ 2013-09-16 11:04   ` Jack
  2013-09-16 17:06     ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Jack @ 2013-09-16 11:04 UTC (permalink / raw)
  To: yocto

I have already tested it. But I got error again. Error is :

Computing transaction...error: Can't install nfs-utils-1.2.7-r0@core2: no
package provides /bin/bash

What can I do? 



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

* Re: Add nfs package to image minimal for atom-pc
  2013-09-16 11:04   ` Jack
@ 2013-09-16 17:06     ` Khem Raj
  2013-09-16 19:32       ` Philipp Wagner
  0 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2013-09-16 17:06 UTC (permalink / raw)
  To: Jack; +Cc: yocto


On Sep 16, 2013, at 4:04 AM, Jack <jackrubby2010@gmail.com> wrote:

> I have already tested it. But I got error again. Error is :
> 
> Computing transaction...error: Can't install nfs-utils-1.2.7-r0@core2: no
> package provides /bin/bash
> 
> What can I do? 

well, you can add bash to your image using IMAGE_INSTALL or something however that might
hide potential problem where may be there is one script in nfs-utils wanting bash which
can be split into a package of its own. If you can file a bug in yocto bugzilla to track it as well


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



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

* Re: Add nfs package to image minimal for atom-pc
  2013-09-16 17:06     ` Khem Raj
@ 2013-09-16 19:32       ` Philipp Wagner
  2013-09-16 21:31         ` Khem Raj
  0 siblings, 1 reply; 6+ messages in thread
From: Philipp Wagner @ 2013-09-16 19:32 UTC (permalink / raw)
  To: yocto

Am 16.09.2013 19:06, Khem Raj wrote:
> 
> On Sep 16, 2013, at 4:04 AM, Jack <jackrubby2010@gmail.com> wrote:
> 
>> I have already tested it. But I got error again. Error is :
>>
>> Computing transaction...error: Can't install nfs-utils-1.2.7-r0@core2: no
>> package provides /bin/bash
>>
>> What can I do? 
> 
> well, you can add bash to your image using IMAGE_INSTALL or something however that might
> hide potential problem where may be there is one script in nfs-utils wanting bash which
> can be split into a package of its own. If you can file a bug in yocto bugzilla to track it as well

nfs-utils contains a couple bash scripts, e.g. osd_login or start-statd.
Both use in its current state at least some bash specifics, so they need
to either be modified to work with any shell, split out or bash needs
to be added as dependency. I already reported this on the mailing list
some months ago, but since then I simply added bash to the image, as I
was told that adding bash as dependency is a no-go.

Philipp


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

* Re: Add nfs package to image minimal for atom-pc
  2013-09-16 19:32       ` Philipp Wagner
@ 2013-09-16 21:31         ` Khem Raj
  0 siblings, 0 replies; 6+ messages in thread
From: Khem Raj @ 2013-09-16 21:31 UTC (permalink / raw)
  To: Philipp Wagner; +Cc: yocto@yoctoproject.org

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

On Monday, September 16, 2013, Philipp Wagner <lists@philipp-wagner.com>
wrote:
> Am 16.09.2013 19:06, Khem Raj wrote:
>>
>> On Sep 16, 2013, at 4:04 AM, Jack <jackrubby2010@gmail.com> wrote:
>>
>>> I have already tested it. But I got error again. Error is :
>>>
>>> Computing transaction...error: Can't install nfs-utils-1.2.7-r0@core2:
no
>>> package provides /bin/bash
>>>
>>> What can I do?
>>
>> well, you can add bash to your image using IMAGE_INSTALL or something
however that might
>> hide potential problem where may be there is one script in nfs-utils
wanting bash which
>> can be split into a package of its own. If you can file a bug in yocto
bugzilla to track it as well
>
> nfs-utils contains a couple bash scripts, e.g. osd_login or start-statd.
> Both use in its current state at least some bash specifics, so they need
> to either be modified to work with any shell, split out or bash needs
> to be added as dependency. I already reported this on the mailing list
> some months ago, but since then I simply added bash to the image, as I
> was told that adding bash as dependency is a no-go.

its really not a no go but its not a depend but rdepend and even better id
bashism can be removed

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

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

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

end of thread, other threads:[~2013-09-16 21:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-16  9:37 Add nfs package to image minimal for atom-pc Jack
2013-09-16 10:31 ` Jegan Chandru
2013-09-16 11:04   ` Jack
2013-09-16 17:06     ` Khem Raj
2013-09-16 19:32       ` Philipp Wagner
2013-09-16 21:31         ` 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.