Search

Technical Discussion Group Forum

This forum is provided for user discussion. While Beacon EmbeddedWorks support staff and engineers participate, Beacon EmbeddedWorks does not guarantee the accuracy of all information within in the Technical Discussion Group (TDG).

The "Articles" forums provide brief Articles written by Beacon EmbeddedWorks engineers that address the most frequently asked technical questions.

To receive email notifications when updates are posted for a Beacon EmbeddedWorks product download, please subscribe to the TDG Forum of interest.

TDG Forum

PrevPrev Go to previous topic
NextNext Go to next topic
Last Post 13 Dec 2007 03:55 AM by  DrOctavius
How to create /dev/snd node device
 2 Replies
Sort:
You are not authorized to post a reply.
Author Messages
DrOctavius
New Member
New Member
Posts:


--
12 Dec 2007 07:20 PM
    mx31# cat /proc/asound/devices
    0: [ 0] : control
    1: : sequencer
    16: [ 0- 0]: digital audio playback
    17: [ 0- 1]: digital audio playback
    24: [ 0- 0]: digital audio capture
    33: : timer

    mx31# mkdir /dev/snd
    mx31# cd /dev/snd
    mx31# mknod controlC0 c 116 0
    mx31# mknod seq c 116 1
    mx31# mknod pcmC0D0p c 116 16
    mx31# mknod pcmC0D1p c 116 17
    mx31# mknod pcmC0D0c c 116 24
    mx31# mknod timer c 116 33
    prashm_77@yahoo.com
    New Member
    New Member
    Posts:


    --
    12 Dec 2007 09:00 PM
    When the kernel 2.6.19-2 zImage is loaded and the proper ALSA sounce device is detected , the /dev/snd devices are created dynamically

    You dont need to create manually


    Posted By DrOctavius on 10 Dec 2007 8:55 PM
    mx31# cat /proc/asound/devices
    0: [ 0] : control
    1: : sequencer
    16: [ 0- 0]: digital audio playback
    17: [ 0- 1]: digital audio playback
    24: [ 0- 0]: digital audio capture
    33: : timer

    mx31# mkdir /dev/snd
    mx31# cd /dev/snd
    mx31# mknod controlC0 c 116 0
    mx31# mknod seq c 116 1
    mx31# mknod pcmC0D0p c 116 16
    mx31# mknod pcmC0D1p c 116 17
    mx31# mknod pcmC0D0c c 116 24
    mx31# mknod timer c 116 33


    DrOctavius
    New Member
    New Member
    Posts:


    --
    13 Dec 2007 03:55 AM
    Thanks for your advice.
    You are not authorized to post a reply.