All of lore.kernel.org
 help / color / mirror / Atom feed
* Enable a recipe/package only when other dependent recipe/package is part of image.
@ 2016-04-22 11:09 Valluri, Amarnath
  2016-04-25  7:03 ` Amarnath Valluri
  0 siblings, 1 reply; 6+ messages in thread
From: Valluri, Amarnath @ 2016-04-22 11:09 UTC (permalink / raw)
  To: yocto@yoctoproject.org

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

Hello,

I have my own layer, that provides configuration packages for core Linux components, for example 'connman-conf' for 'connman' package.

I would like to provide a pakcagegroup-config, that should automatically select the configuration packages that are part of image configuration. Say if 'connman' is part of image then it should add 'connman-conf' to its RDEPENDS_${PN}.

For this I try to use 'oe.packagedata.pkgmap', to check if the core component exists as below:
--------------------------------------------------------------------
def check_if_enabled(comp, trueval, d):
   import oe.packagedata
   pkgmap = oe.packagedata.pkgmap(d)

   if pkgmap is not None and pkgmap.get(comp) is not None:
      return trueval

   return ""

RDEPENDS_${PN} = " \
   ${@check_if_enabled("connman", "connman-conf", d)} \
"
-----------------------------------------------------------

This works as expected when the packagedata is available, i.e., image is build at least once first, then my layer is added to BBLAYERS and then rebuild the image.
But this fails when there is no packagedata cache available.

Can someone help me to resolve this properly.

Thanks,
Amarnath
---------------------------------------------------------------------
Intel Finland Oy
Registered Address: PL 281, 00181 Helsinki 
Business Identity Code: 0357606 - 4 
Domiciled in Helsinki 

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.

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

^ permalink raw reply	[flat|nested] 6+ messages in thread
* Enable a recipe/package only when other dependent recipe/package is part of image.
@ 2016-04-25  6:46 Amarnath Valluri
  2016-04-25 11:46 ` Burton, Ross
  0 siblings, 1 reply; 6+ messages in thread
From: Amarnath Valluri @ 2016-04-25  6:46 UTC (permalink / raw)
  To: yocto

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

Hello,

I have my own layer, that provides configuration packages for core Linux 
components, for example ‘connman-conf’ for ‘connman’ package.

I would like to provide a pakcagegroup-config, that should automatically 
select the configuration packages that are part of image configuration. 
Say if ‘connman’ is part of image then it should add ‘connman-conf’ to 
its RDEPENDS_${PN}.


For this I tried to use ‘oe.packagedata.pkgmap’, to check if the core 
component exists as below:

--------------------------------------------------------------------

def check_if_enabled(comp, trueval, d):

    import oe.packagedata

    pkgmap = oe.packagedata.pkgmap(d)

   if pkgmap is not None and pkgmap.get(comp) is not None:
      return trueval

    return “”

RDEPENDS_${PN} = “ \
    ${@check_if_enabled(“connman”, “connman-conf”, d)} \
“

-----------------------------------------------------------

This works as expected when the packagedata is available, i.e., image is 
build at least once first, then my layer is added to BBLAYERS and then 
rebuild the image.

But this fails when there is no packagedata cache available.

Can someone help me to resolve this properly.


Thanks,
Amarnath

---------------------------------------------------------------------
Intel Finland Oy
Registered Address: PL 281, 00181 Helsinki 
Business Identity Code: 0357606 - 4 
Domiciled in Helsinki 

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.

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

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

end of thread, other threads:[~2016-04-28 12:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-22 11:09 Enable a recipe/package only when other dependent recipe/package is part of image Valluri, Amarnath
2016-04-25  7:03 ` Amarnath Valluri
  -- strict thread matches above, loose matches on Subject: below --
2016-04-25  6:46 Amarnath Valluri
2016-04-25 11:46 ` Burton, Ross
2016-04-25 12:04   ` Amarnath Valluri
2016-04-28 12:30     ` Amarnath Valluri

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.