* [gentoo-embedded] udev
@ 2006-06-20 21:00 Morgan, Austin D.
2006-06-20 21:08 ` Henrik Brix Andersen
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Morgan, Austin D. @ 2006-06-20 21:00 UTC (permalink / raw
To: gentoo-embedded
Is anyone useing udev in their embedded systems? If not what has become the
defacto standard for filling /dev? I hate to manually create all the nodes
although it is probably the most efficient use of space.
Austin Morgan
--
gentoo-embedded@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-embedded] udev
2006-06-20 21:00 Morgan, Austin D.
@ 2006-06-20 21:08 ` Henrik Brix Andersen
2006-06-20 21:14 ` Natanael Copa
2006-06-20 21:26 ` Anish Patel
2 siblings, 0 replies; 8+ messages in thread
From: Henrik Brix Andersen @ 2006-06-20 21:08 UTC (permalink / raw
To: gentoo-embedded
[-- Attachment #1: Type: text/plain, Size: 481 bytes --]
On Tue, Jun 20, 2006 at 02:00:54PM -0700, Morgan, Austin D. wrote:
> Is anyone useing udev in their embedded systems? If not what has become the
> defacto standard for filling /dev? I hate to manually create all the nodes
> although it is probably the most efficient use of space.
You don't need to create them manually - you can 'emerge sys-fs/static-dev' :)
Regards,
Brix
--
Henrik Brix Andersen <brix@gentoo.org>
Gentoo Metadistribution | Mobile computing herd
[-- Attachment #2: Type: application/pgp-signature, Size: 213 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-embedded] udev
2006-06-20 21:00 Morgan, Austin D.
2006-06-20 21:08 ` Henrik Brix Andersen
@ 2006-06-20 21:14 ` Natanael Copa
2006-06-20 21:27 ` Ned Ludd
2006-06-20 21:26 ` Anish Patel
2 siblings, 1 reply; 8+ messages in thread
From: Natanael Copa @ 2006-06-20 21:14 UTC (permalink / raw
To: gentoo-embedded
On Tue, 2006-06-20 at 14:00 -0700, Morgan, Austin D. wrote:
> Is anyone useing udev in their embedded systems? If not what has become the
> defacto standard for filling /dev? I hate to manually create all the nodes
> although it is probably the most efficient use of space.
I am using udev. When I get time I will look at how to replace it with
busybox's mdev.
--
Natanael Copa
--
gentoo-embedded@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-embedded] udev
2006-06-20 21:00 Morgan, Austin D.
2006-06-20 21:08 ` Henrik Brix Andersen
2006-06-20 21:14 ` Natanael Copa
@ 2006-06-20 21:26 ` Anish Patel
2 siblings, 0 replies; 8+ messages in thread
From: Anish Patel @ 2006-06-20 21:26 UTC (permalink / raw
To: gentoo-embedded
no, i use mdev, its pretty easy to setup and get goin and pretty
light-weight
----- Original Message -----
From: "Morgan, Austin D." <AUSTIN.D.MORGAN@saic.com>
To: <gentoo-embedded@lists.gentoo.org>
Sent: Tuesday, June 20, 2006 5:00 PM
Subject: [gentoo-embedded] udev
>
> Is anyone useing udev in their embedded systems? If not what has become
> the
> defacto standard for filling /dev? I hate to manually create all the
> nodes
> although it is probably the most efficient use of space.
>
> Austin Morgan
>
> --
> gentoo-embedded@gentoo.org mailing list
>
--
gentoo-embedded@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-embedded] udev
2006-06-20 21:14 ` Natanael Copa
@ 2006-06-20 21:27 ` Ned Ludd
2006-06-20 22:06 ` Natanael Copa
0 siblings, 1 reply; 8+ messages in thread
From: Ned Ludd @ 2006-06-20 21:27 UTC (permalink / raw
To: gentoo-embedded
On Tue, 2006-06-20 at 23:14 +0200, Natanael Copa wrote:
> On Tue, 2006-06-20 at 14:00 -0700, Morgan, Austin D. wrote:
> > Is anyone useing udev in their embedded systems? If not what has become the
> > defacto standard for filling /dev? I hate to manually create all the nodes
> > although it is probably the most efficient use of space.
>
> I am using udev. When I get time I will look at how to replace it with
> busybox's mdev.
mdev is the route to go for dynamic device nod creation for
embedded/busybox 2.6 based systems. but be sure you still have
the base nods urandom,zero,stdin,stdout,stderr,null,ttyS0 there anyway.
Example conf used when I initially slapped the conf logic together.
Not sure how much Rob changed it however from where I left off.
I think he only extended on it allow it to shell out etc..
http://tinderbox.dev.gentoo.org/misc/mdev.conf
--
Ned Ludd <solar@gentoo.org>
Gentoo Linux
--
gentoo-embedded@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [gentoo-embedded] udev
@ 2006-06-20 21:53 Morgan, Austin D.
0 siblings, 0 replies; 8+ messages in thread
From: Morgan, Austin D. @ 2006-06-20 21:53 UTC (permalink / raw
To: gentoo-embedded
That is exacctly what I was looking for. Thank you very much. The problem
with a swiss-army knife is sometimes it is hard to figure out what all tools
are included.
Austin
-----Original Message-----
From: gentoo-embedded+bounces-919-AUSTIN.D.MORGAN=saic.com@gentoo.org on
behalf of Ned Ludd
Sent: Tue 6/20/2006 4:27 PM
To: gentoo-embedded@lists.gentoo.org
Subject: Re: [gentoo-embedded] udev
On Tue, 2006-06-20 at 23:14 +0200, Natanael Copa wrote:
> On Tue, 2006-06-20 at 14:00 -0700, Morgan, Austin D. wrote:
> > Is anyone useing udev in their embedded systems? If not what has become
the
> > defacto standard for filling /dev? I hate to manually create all the
nodes
> > although it is probably the most efficient use of space.
>
> I am using udev. When I get time I will look at how to replace it with
> busybox's mdev.
mdev is the route to go for dynamic device nod creation for
embedded/busybox 2.6 based systems. but be sure you still have
the base nods urandom,zero,stdin,stdout,stderr,null,ttyS0 there anyway.
Example conf used when I initially slapped the conf logic together.
Not sure how much Rob changed it however from where I left off.
I think he only extended on it allow it to shell out etc..
http://tinderbox.dev.gentoo.org/misc/mdev.conf
--
Ned Ludd <solar@gentoo.org>
Gentoo Linux
--
gentoo-embedded@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-embedded] udev
2006-06-20 21:27 ` Ned Ludd
@ 2006-06-20 22:06 ` Natanael Copa
2006-06-20 22:31 ` Mike Frysinger
0 siblings, 1 reply; 8+ messages in thread
From: Natanael Copa @ 2006-06-20 22:06 UTC (permalink / raw
To: gentoo-embedded
On Tue, 2006-06-20 at 17:27 -0400, Ned Ludd wrote:
> On Tue, 2006-06-20 at 23:14 +0200, Natanael Copa wrote:
> > On Tue, 2006-06-20 at 14:00 -0700, Morgan, Austin D. wrote:
> > > Is anyone useing udev in their embedded systems? If not what has become the
> > > defacto standard for filling /dev? I hate to manually create all the nodes
> > > although it is probably the most efficient use of space.
> >
> > I am using udev. When I get time I will look at how to replace it with
> > busybox's mdev.
>
> mdev is the route to go for dynamic device nod creation for
> embedded/busybox 2.6 based systems. but be sure you still have
> the base nods urandom,zero,stdin,stdout,stderr,null,ttyS0 there anyway.
I needed those before udev got started to so thats no difference.
> Example conf used when I initially slapped the conf logic together.
> Not sure how much Rob changed it however from where I left off.
> I think he only extended on it allow it to shell out etc..
> http://tinderbox.dev.gentoo.org/misc/mdev.conf
Thank you very much! I really appreciated that one.
How does it work with hotplugging? I currently use:
echo /sbin/udevsend > /proc/sys/kernel/hotplug
--
Natanael Copa
--
gentoo-embedded@gentoo.org mailing list
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [gentoo-embedded] udev
2006-06-20 22:06 ` Natanael Copa
@ 2006-06-20 22:31 ` Mike Frysinger
0 siblings, 0 replies; 8+ messages in thread
From: Mike Frysinger @ 2006-06-20 22:31 UTC (permalink / raw
To: gentoo-embedded; +Cc: Natanael Copa
[-- Attachment #1: Type: text/plain, Size: 215 bytes --]
On Tuesday 20 June 2006 18:06, Natanael Copa wrote:
> How does it work with hotplugging? I currently use:
>
> echo /sbin/udevsend > /proc/sys/kernel/hotplug
yes, you should be able to echo mdev there instead
-mike
[-- Attachment #2: Type: application/pgp-signature, Size: 827 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2006-06-20 22:28 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-20 21:53 [gentoo-embedded] udev Morgan, Austin D.
-- strict thread matches above, loose matches on Subject: below --
2006-06-20 21:00 Morgan, Austin D.
2006-06-20 21:08 ` Henrik Brix Andersen
2006-06-20 21:14 ` Natanael Copa
2006-06-20 21:27 ` Ned Ludd
2006-06-20 22:06 ` Natanael Copa
2006-06-20 22:31 ` Mike Frysinger
2006-06-20 21:26 ` Anish Patel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox