All of lore.kernel.org
 help / color / mirror / Atom feed
* busybox mdev
@ 2010-07-16 14:51 George C. Huntington, III
  2010-07-16 23:02 ` Koen Kooi
  0 siblings, 1 reply; 9+ messages in thread
From: George C. Huntington, III @ 2010-07-16 14:51 UTC (permalink / raw)
  To: openembedded-devel

how do i make a distribution use mdev instead of udev?


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

* Re: busybox mdev
  2010-07-16 14:51 busybox mdev George C. Huntington, III
@ 2010-07-16 23:02 ` Koen Kooi
  2010-07-17  0:06   ` Bernhard Reutner-Fischer
  0 siblings, 1 reply; 9+ messages in thread
From: Koen Kooi @ 2010-07-16 23:02 UTC (permalink / raw)
  To: openembedded-devel

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

On 16-07-10 16:51, George C. Huntington, III wrote:
> how do i make a distribution use mdev instead of udev?

You mean "how do I make my image use mdev instead of udev?", right?
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFMQOTwMkyGM64RGpERAmYUAKCg99CQs/eiOtzhDPliahoCdzmuLwCfbnlS
uXrn+V3JQ8812jdHUAcv0Uw=
=p4jb
-----END PGP SIGNATURE-----




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

* Re: busybox mdev
  2010-07-16 23:02 ` Koen Kooi
@ 2010-07-17  0:06   ` Bernhard Reutner-Fischer
  2010-07-17 13:37     ` Phil Blundell
  0 siblings, 1 reply; 9+ messages in thread
From: Bernhard Reutner-Fischer @ 2010-07-17  0:06 UTC (permalink / raw)
  To: openembedded-devel

On Sat, Jul 17, 2010 at 01:02:08AM +0200, Koen Kooi wrote:
>-----BEGIN PGP SIGNED MESSAGE-----
>Hash: SHA1
>
>On 16-07-10 16:51, George C. Huntington, III wrote:
>> how do i make a distribution use mdev instead of udev?
>
>You mean "how do I make my image use mdev instead of udev?", right?

IMAGE_DEV_MANAGER = "busybox-mdev"
in your local.conf (what's the reason micro-base uses udev instead of
mdev, btw?)



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

* Re: busybox mdev
  2010-07-17  0:06   ` Bernhard Reutner-Fischer
@ 2010-07-17 13:37     ` Phil Blundell
  2010-07-17 15:09       ` Bernhard Reutner-Fischer
  0 siblings, 1 reply; 9+ messages in thread
From: Phil Blundell @ 2010-07-17 13:37 UTC (permalink / raw)
  To: openembedded-devel

On Sat, 2010-07-17 at 02:06 +0200, Bernhard Reutner-Fischer wrote:
> (what's the reason micro-base uses udev instead of mdev, btw?)

Er, does it?  My copy of micro-base-image.bb says:

# Include minimum init and init scripts
IMAGE_DEV_MANAGER = "busybox-mdev"
IMAGE_INIT_MANAGER = "sysvinit sysvinit-pidof"
IMAGE_INITSCRIPTS = ""

If it's using udev then that is definitely a bug.

p.





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

* Re: busybox mdev
  2010-07-17 13:37     ` Phil Blundell
@ 2010-07-17 15:09       ` Bernhard Reutner-Fischer
  2010-07-17 15:40         ` pieterg
                           ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Bernhard Reutner-Fischer @ 2010-07-17 15:09 UTC (permalink / raw)
  To: openembedded-devel

Baking micro-base (not -image) tries to build udev for me?

On 17 Jul 2010 15:39, "Phil Blundell" <philb@gnu.org> wrote:

On Sat, 2010-07-17 at 02:06 +0200, Bernhard Reutner-Fischer wrote:
> (what's the reason micro-base u...
Er, does it?  My copy of micro-base-image.bb says:

# Include minimum init and init scripts

IMAGE_DEV_MANAGER = "busybox-mdev"
IMAGE_INIT_MANAGER = "sysvinit sysvinit-pidof"
IMAGE_INITSCRIPTS = ""

If it's using udev then that is definitely a bug.

p.




_______________________________________________
Openembedded-devel mailing list
Openembedded-deve...


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

* Re: busybox mdev
  2010-07-17 15:09       ` Bernhard Reutner-Fischer
@ 2010-07-17 15:40         ` pieterg
  2010-07-17 18:44         ` Koen Kooi
  2010-07-17 19:29         ` Phil Blundell
  2 siblings, 0 replies; 9+ messages in thread
From: pieterg @ 2010-07-17 15:40 UTC (permalink / raw)
  To: Bernhard Reutner-Fischer; +Cc: openembedded-devel

On Saturday 17 July 2010 17:09:28 Bernhard Reutner-Fischer wrote:
> Baking micro-base (not -image) tries to build udev for me?

Many packages (R)DEPEND on udev, it's very hard to build anything these days 
without dragging in udev.

What I usually do is add

PROVIDES += "udev"
RPROVIDES_${PN}-mdev += "udev"

to the busybox recipe, and just assume that whatever all those packages 
claim they need udev for, is provided by mdev as well...

And set a

PREFERRED_PROVIDER_udev = "busybox"

(I do that from the distro. People might argue this has to be an image 
decision instead of a distro decision, but I prefer to set 
IMAGE_DEV_MANAGER in the distro instead of the image..)

Rgds, Pieter



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

* Re: busybox mdev
  2010-07-17 15:09       ` Bernhard Reutner-Fischer
  2010-07-17 15:40         ` pieterg
@ 2010-07-17 18:44         ` Koen Kooi
  2010-07-17 19:29         ` Phil Blundell
  2 siblings, 0 replies; 9+ messages in thread
From: Koen Kooi @ 2010-07-17 18:44 UTC (permalink / raw)
  To: openembedded-devel

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

On 17-07-10 17:09, Bernhard Reutner-Fischer wrote:
> Baking micro-base (not -image) tries to build udev for me?

And does it end up in your image? Bitbaking something also builds quilt
for me, yet it doesn't show up in the image.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)

iD8DBQFMQfoSMkyGM64RGpERAklNAKCn1Xv01ajA1KLNqmqiJZ7npEi9CwCgnh1v
f8JqNkn0Vk3ASdabEZ/Mjvc=
=Qhvx
-----END PGP SIGNATURE-----




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

* Re: busybox mdev
  2010-07-17 15:09       ` Bernhard Reutner-Fischer
  2010-07-17 15:40         ` pieterg
  2010-07-17 18:44         ` Koen Kooi
@ 2010-07-17 19:29         ` Phil Blundell
  2010-07-27 18:21           ` Bernhard Reutner-Fischer
  2 siblings, 1 reply; 9+ messages in thread
From: Phil Blundell @ 2010-07-17 19:29 UTC (permalink / raw)
  To: openembedded-devel

I'm not familiar with that recipe and I don't seem to have a
micro-base.bb in my tree.  But, if it's sucking in udev, it sounds like
a bogus dependency somewhere.  You can use bitbake -g to find out where.

p.

On Sat, 2010-07-17 at 17:09 +0200, Bernhard Reutner-Fischer wrote:
> Baking micro-base (not -image) tries to build udev for me?
> 
> On 17 Jul 2010 15:39, "Phil Blundell" <philb@gnu.org> wrote:
> 
> On Sat, 2010-07-17 at 02:06 +0200, Bernhard Reutner-Fischer wrote:
> > (what's the reason micro-base u...
> Er, does it?  My copy of micro-base-image.bb says:
> 
> # Include minimum init and init scripts
> 
> IMAGE_DEV_MANAGER = "busybox-mdev"
> IMAGE_INIT_MANAGER = "sysvinit sysvinit-pidof"
> IMAGE_INITSCRIPTS = ""
> 
> If it's using udev then that is definitely a bug.
> 
> p.
> 
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-deve...
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel





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

* Re: busybox mdev
  2010-07-17 19:29         ` Phil Blundell
@ 2010-07-27 18:21           ` Bernhard Reutner-Fischer
  0 siblings, 0 replies; 9+ messages in thread
From: Bernhard Reutner-Fischer @ 2010-07-27 18:21 UTC (permalink / raw)
  To: openembedded-devel

On Sat, Jul 17, 2010 at 08:29:11PM +0100, Phil Blundell wrote:
>I'm not familiar with that recipe and I don't seem to have a
>micro-base.bb in my tree.  But, if it's sucking in udev, it sounds like
>a bogus dependency somewhere.  You can use bitbake -g to find out where.

my bad, i ment micro-image.

i'm doing this now locally, fwiw.
cheers,

diff --git a/conf/distro/micro.conf b/conf/distro/micro.conf
index 26265a6..74989b5 100644
--- a/conf/distro/micro.conf
+++ b/conf/distro/micro.conf
@@ -5,7 +5,7 @@
 #@MAINTAINER: Martin Lund <mgl@doredevelopment.dk>
 #@COMMENT: This distribution configuration defines a truely tiny OE Linux  
 #@COMMENT: distribution. The matching buildable image target (micro-image)
-#@COMMENT: basically consists of: libc, busybox, udev, sysv init, and a few
+#@COMMENT: basically consists of: libc, busybox, sysv init, and a few
 #@COMMENT: init scripts for running up the system.
 #############################################################################
 
diff --git a/recipes/images/micro-image.bb b/recipes/images/micro-image.bb
index c2cff93..19cb53b 100644
--- a/recipes/images/micro-image.bb
+++ b/recipes/images/micro-image.bb
@@ -23,7 +23,7 @@ IMAGE_LINGUAS = ""
 IMAGE_LOGIN_MANAGER = "busybox"
 
 # Include minimum init and init scripts
-IMAGE_DEV_MANAGER = "udev"
+IMAGE_DEV_MANAGER = "busybox-mdev"
 IMAGE_INIT_MANAGER = "sysvinit sysvinit-pidof"
 IMAGE_INITSCRIPTS = ""
 

>
>p.
>
>On Sat, 2010-07-17 at 17:09 +0200, Bernhard Reutner-Fischer wrote:
>> Baking micro-base (not -image) tries to build udev for me?
>> 
>> On 17 Jul 2010 15:39, "Phil Blundell" <philb@gnu.org> wrote:
>> 
>> On Sat, 2010-07-17 at 02:06 +0200, Bernhard Reutner-Fischer wrote:
>> > (what's the reason micro-base u...
>> Er, does it?  My copy of micro-base-image.bb says:
>> 
>> # Include minimum init and init scripts
>> 
>> IMAGE_DEV_MANAGER = "busybox-mdev"
>> IMAGE_INIT_MANAGER = "sysvinit sysvinit-pidof"
>> IMAGE_INITSCRIPTS = ""
>> 
>> If it's using udev then that is definitely a bug.
>> 
>> p.



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

end of thread, other threads:[~2010-07-27 18:22 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-16 14:51 busybox mdev George C. Huntington, III
2010-07-16 23:02 ` Koen Kooi
2010-07-17  0:06   ` Bernhard Reutner-Fischer
2010-07-17 13:37     ` Phil Blundell
2010-07-17 15:09       ` Bernhard Reutner-Fischer
2010-07-17 15:40         ` pieterg
2010-07-17 18:44         ` Koen Kooi
2010-07-17 19:29         ` Phil Blundell
2010-07-27 18:21           ` Bernhard Reutner-Fischer

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.