All of lore.kernel.org
 help / color / mirror / Atom feed
* [Xenomai-help] rtp[0-9]*
@ 2007-12-04 23:01 Racconico Lambrati
  2007-12-04 23:28 ` Gilles Chanteperdrix
  0 siblings, 1 reply; 2+ messages in thread
From: Racconico Lambrati @ 2007-12-04 23:01 UTC (permalink / raw)
  To: xenomai

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

Hi.
       I have developed a Library to handle inter process communication
using the /dev/rtp[0-9]* device.

Now I'm porting all on an embedded distro, that haven't this device.

My question (very newbie at all) is how to create this special, considering
that I have no compiler on this distro (it's a very small distribution)

Thanks, Racconico

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

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

* Re: [Xenomai-help] rtp[0-9]*
  2007-12-04 23:01 [Xenomai-help] rtp[0-9]* Racconico Lambrati
@ 2007-12-04 23:28 ` Gilles Chanteperdrix
  0 siblings, 0 replies; 2+ messages in thread
From: Gilles Chanteperdrix @ 2007-12-04 23:28 UTC (permalink / raw)
  To: Racconico Lambrati; +Cc: xenomai

Racconico Lambrati wrote:
 > Hi.
 >        I have developed a Library to handle inter process communication
 > using the /dev/rtp[0-9]* device.
 > 
 > Now I'm porting all on an embedded distro, that haven't this device.
 > 
 > My question (very newbie at all) is how to create this special, considering
 > that I have no compiler on this distro (it's a very small distribution)

Usually, utilities used to create filesystem images for embedded distros
have a way to pass the list of devices nodes in /dev. /dev/rtp[0-9]*
devices are character devices with major number 150 and the same minor
number as their name.

To create these devices manually, run:
for((i=0; i<32; i++)); do mknod /dev/rtp$i c 150 $i; done

-- 


					    Gilles Chanteperdrix.


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

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

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-12-04 23:01 [Xenomai-help] rtp[0-9]* Racconico Lambrati
2007-12-04 23:28 ` Gilles Chanteperdrix

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.