Re: [yocto] Remove/prevent a package's installed files if another package present

2017-04-11 Thread Colin Helliwell
> On 07 April 2017 at 12:57 Alexander Kanavin > wrote: > > On 04/07/2017 02:53 PM, colin.helliw...@ln-systems.com wrote: > > > I'd like to do a mod to my ppp recipe such that ip-up & ip-down aren't > > installed if another package is in the image recipe i.e. set in > > CORE_IMAGE_EXTRA_INSTALL

Re: [yocto] Remove/prevent a package's installed files if another package present

2017-04-07 Thread Alexander Kanavin
On 04/07/2017 02:53 PM, colin.helliw...@ln-systems.com wrote: I'd like to do a mod to my ppp recipe such that ip-up & ip-down aren't installed if another package is in the image recipe i.e. set in CORE_IMAGE_EXTRA_INSTALL. I guess I could do a do_install_append() or a pkg_postinst_(), but is the

[yocto] Remove/prevent a package's installed files if another package present

2017-04-07 Thread colin.helliwell
I'd like to do a mod to my ppp recipe such that ip-up & ip-down aren't installed if another package is in the image recipe i.e. set in CORE_IMAGE_EXTRA_INSTALL. I guess I could do a do_install_append() or a pkg_postinst_(), but is there a way to detect the other package within the recipe? E.g. alo