sound driver

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have some problems with an audio driver. The hardware is a multifunction
board and, so far I have managed to install the other drivers but this one.
The following is an extract from the FBA log:

9:47:47 AM - [FBAAddDevInstanceId] MOST_BASE\MOSTCP\4&1BB41E6&0&0001
9:47:50 AM - [FBAAddDevInstanceId] MOST_BASE\MOSTSYNC\4&1BB41E6&0&0002
9:49:23 AM - [PnpEnumThread: InstallDevice] SetupDiCallClassInstaller
Error: 0x715, Device: MOST WDM Audio Driver
9:49:23 AM - [FBAInstallNullDriver] MOST_BASE\MOSTSYNC\4&1BB41E6&0&0002
……..
9:49:48 AM - [FBALaunch] rundll32.exe streamci.dll,StreamingDeviceSetup
{A7C7A5B0-5AF3-11D1-9CED-00A024BF0407},{9B365890-165F-11D0-A195-0020AFD156E4},{A7C7A5B1-5AF3-11D1-9CED-00A024BF0407},C:\WINDOWS\INF\WDMAUDIO.inf,WDM_SYSAUDIO.Interface.Install (ExitCode: 0x0)
9:49:50 AM - [FBALaunch] rundll32.exe streamci,StreamingDeviceSetup
{EEC12DB6-AD9C-4168-8658-B03DAEF417FE},{ABD61E00-9350-47e2-A632-4438B90C6641},{6994AD04-93EF-11D0-A3CC-00A0C9223196},C:\WINDOWS\INF\WDMAUDIO.inf,WDM_DRMKAUD.Interface.Install (ExitCode: 0x0)
9:49:52 AM - [FBALaunch] rundll32.exe streamci,StreamingDeviceSetup
{EEC12DB6-AD9C-4168-8658-B03DAEF417FE},{ABD61E00-9350-47e2-A632-4438B90C6641},{2EB07EA0-7E70-11D0-A5D6-28DB04C10000},C:\WINDOWS\INF\WDMAUDIO.inf,WDM_DRMKAUD.Interface.Install (ExitCode: 0x0)

and so on… Here I see all the support for sound being installed.

During the FBA stage, I get a notification that some files are missing for
my driver. I think the culprit should be Mr. Wdmaudio.inf or some other inf
file. I am positively sure that all the files required for my driver are
there (there are only 2 files an the inf).

My understanding is like this: My driver depends on ks.sys and wdmaud.sys.
And I should install it after these two. But I don’t know how to impose such
a dependency (for the FBA). Any suggestions?

Regards
 
Hi Yalos,

Does this and related articles help to your case?
http://msdn.microsoft.com/embedded/community/community/tips/xp/compo/default.aspx


Anyhow drivers are usually installed by FBA PnP at phase 3100 from inf files and their issues are logged in setupapi.log not in
FBA.log
What you mention here are usermode programs (services/filters, etc) and their registrations.

When creating your component you can set FBA phase at which most of registration will happen if nedded.

Best regards,
Slobodan


Yalos said:
I have some problems with an audio driver. The hardware is a multifunction
board and, so far I have managed to install the other drivers but this one.
The following is an extract from the FBA log:

9:47:47 AM - [FBAAddDevInstanceId] MOST_BASE\MOSTCP\4&1BB41E6&0&0001
9:47:50 AM - [FBAAddDevInstanceId] MOST_BASE\MOSTSYNC\4&1BB41E6&0&0002
9:49:23 AM - [PnpEnumThread: InstallDevice] SetupDiCallClassInstaller
Error: 0x715, Device: MOST WDM Audio Driver
9:49:23 AM - [FBAInstallNullDriver] MOST_BASE\MOSTSYNC\4&1BB41E6&0&0002
....
9:49:48 AM - [FBALaunch] rundll32.exe streamci.dll,StreamingDeviceSetup
{A7C7A5B0-5AF3-11D1-9CED-00A024BF0407},{9B365890-165F-11D0-A195-0020AFD156E4},{A7C7A5B1-5AF3-11D1-9CED-00A024BF0407},C:\WINDOWS\INF\
WDMAUDIO.inf,WDM_SYSAUDIO.Interface.Install (ExitCode: 0x0)
9:49:50 AM - [FBALaunch] rundll32.exe streamci,StreamingDeviceSetup
{EEC12DB6-AD9C-4168-8658-B03DAEF417FE},{ABD61E00-9350-47e2-A632-4438B90C6641},{6994AD04-93EF-11D0-A3CC-00A0C9223196},C:\WINDOWS\INF\
WDMAUDIO.inf,WDM_DRMKAUD.Interface.Install (ExitCode: 0x0)
9:49:52 AM - [FBALaunch] rundll32.exe streamci,StreamingDeviceSetup
{EEC12DB6-AD9C-4168-8658-B03DAEF417FE},{ABD61E00-9350-47e2-A632-4438B90C6641},{2EB07EA0-7E70-11D0-A5D6-28DB04C10000},C:\WINDOWS\INF\
WDMAUDIO.inf,WDM_DRMKAUD.Interface.Install (ExitCode: 0x0)
 
Back
Top