All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] init-ifupdown: RDEPENDS on procps
@ 2017-09-18 12:43 liu.ming50
  2017-09-18 12:47 ` Mike Looijmans
  2017-09-18 16:51 ` Khem Raj
  0 siblings, 2 replies; 4+ messages in thread
From: liu.ming50 @ 2017-09-18 12:43 UTC (permalink / raw)
  To: openembedded-core; +Cc: Ming Liu

From: Ming Liu <liu.ming50@gmail.com>

sysctl is being called in /etc/init.d/networking, so it needs RDEPENDS
on procps.

Signed-off-by: Ming Liu <liu.ming50@gmail.com>
---
 meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
index 733ae41..8774386 100644
--- a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
+++ b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
@@ -35,7 +35,7 @@ do_install_append_qemuall () {
 }
 
 PACKAGE_ARCH_qemuall = "${MACHINE_ARCH}"
-RDEPENDS_${PN} = "netbase"
+RDEPENDS_${PN} = "netbase procps"
 RCONFLICTS_${PN} = "netbase (< 1:5.0)"
 
 CONFFILES_${PN} = "${sysconfdir}/network/interfaces"
-- 
2.7.4



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

* Re: [PATCH] init-ifupdown: RDEPENDS on procps
  2017-09-18 12:43 [PATCH] init-ifupdown: RDEPENDS on procps liu.ming50
@ 2017-09-18 12:47 ` Mike Looijmans
  2017-09-18 16:51 ` Khem Raj
  1 sibling, 0 replies; 4+ messages in thread
From: Mike Looijmans @ 2017-09-18 12:47 UTC (permalink / raw)
  To: openembedded-core

Busybox can also provide sysctl so there's no hard dependency on procps.


On 18-09-17 14:43, liu.ming50@gmail.com wrote:
> From: Ming Liu <liu.ming50@gmail.com>
> 
> sysctl is being called in /etc/init.d/networking, so it needs RDEPENDS
> on procps.
> 
> Signed-off-by: Ming Liu <liu.ming50@gmail.com>
> ---
>   meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> index 733ae41..8774386 100644
> --- a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> +++ b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> @@ -35,7 +35,7 @@ do_install_append_qemuall () {
>   }
>   
>   PACKAGE_ARCH_qemuall = "${MACHINE_ARCH}"
> -RDEPENDS_${PN} = "netbase"
> +RDEPENDS_${PN} = "netbase procps"
>   RCONFLICTS_${PN} = "netbase (< 1:5.0)"
>   
>   CONFFILES_${PN} = "${sysconfdir}/network/interfaces"
> 



Kind regards,

Mike Looijmans
System Expert

TOPIC Products
Materiaalweg 4, NL-5681 RJ Best
Postbus 440, NL-5680 AK Best
Telefoon: +31 (0) 499 33 69 79
E-mail: mike.looijmans@topicproducts.com
Website: www.topicproducts.com

Please consider the environment before printing this e-mail





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

* Re: [PATCH] init-ifupdown: RDEPENDS on procps
  2017-09-18 12:43 [PATCH] init-ifupdown: RDEPENDS on procps liu.ming50
  2017-09-18 12:47 ` Mike Looijmans
@ 2017-09-18 16:51 ` Khem Raj
  2017-09-19  2:09   ` Ming Liu
  1 sibling, 1 reply; 4+ messages in thread
From: Khem Raj @ 2017-09-18 16:51 UTC (permalink / raw)
  To: liu.ming50; +Cc: openembedded-core

On Mon, Sep 18, 2017 at 12:43:06PM +0000, liu.ming50@gmail.com wrote:
> From: Ming Liu <liu.ming50@gmail.com>
> 
> sysctl is being called in /etc/init.d/networking, so it needs RDEPENDS
> on procps.
> 
> Signed-off-by: Ming Liu <liu.ming50@gmail.com>
> ---
>  meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> index 733ae41..8774386 100644
> --- a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> +++ b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> @@ -35,7 +35,7 @@ do_install_append_qemuall () {
>  }
>  
>  PACKAGE_ARCH_qemuall = "${MACHINE_ARCH}"
> -RDEPENDS_${PN} = "netbase"
> +RDEPENDS_${PN} = "netbase procps"

busybox can provide the sysctl applet too. Do we take care of that somewhere ?

>  RCONFLICTS_${PN} = "netbase (< 1:5.0)"
>  
>  CONFFILES_${PN} = "${sysconfdir}/network/interfaces"
> -- 
> 2.7.4
> 
> -- 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


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

* Re: [PATCH] init-ifupdown: RDEPENDS on procps
  2017-09-18 16:51 ` Khem Raj
@ 2017-09-19  2:09   ` Ming Liu
  0 siblings, 0 replies; 4+ messages in thread
From: Ming Liu @ 2017-09-19  2:09 UTC (permalink / raw)
  To: Khem Raj; +Cc: OE-core

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

Hi, Khem:

> busybox can provide the sysctl applet too. Do we take care of that
somewhere ?

sysctl applet has been already compiled since CONFIG_BB_SYSCTL is being
enabled in busybox defconfig.

//Ming Liu


2017-09-18 18:51 GMT+02:00 Khem Raj <raj.khem@gmail.com>:

> On Mon, Sep 18, 2017 at 12:43:06PM +0000, liu.ming50@gmail.com wrote:
> > From: Ming Liu <liu.ming50@gmail.com>
> >
> > sysctl is being called in /etc/init.d/networking, so it needs RDEPENDS
> > on procps.
> >
> > Signed-off-by: Ming Liu <liu.ming50@gmail.com>
> > ---
> >  meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> > index 733ae41..8774386 100644
> > --- a/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> > +++ b/meta/recipes-core/init-ifupdown/init-ifupdown_1.0.bb
> > @@ -35,7 +35,7 @@ do_install_append_qemuall () {
> >  }
> >
> >  PACKAGE_ARCH_qemuall = "${MACHINE_ARCH}"
> > -RDEPENDS_${PN} = "netbase"
> > +RDEPENDS_${PN} = "netbase procps"
>
> busybox can provide the sysctl applet too. Do we take care of that
> somewhere ?
>
> >  RCONFLICTS_${PN} = "netbase (< 1:5.0)"
> >
> >  CONFFILES_${PN} = "${sysconfdir}/network/interfaces"
> > --
> > 2.7.4
> >
> > --
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-core
>

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

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

end of thread, other threads:[~2017-09-19  2:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-18 12:43 [PATCH] init-ifupdown: RDEPENDS on procps liu.ming50
2017-09-18 12:47 ` Mike Looijmans
2017-09-18 16:51 ` Khem Raj
2017-09-19  2:09   ` Ming Liu

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.