Help in compiling/linking a DEVICE DRIVER in SOLARIS10 x86

hello!
PROBLEM:
++++++++++++++++++++++++++++++++++
i need assistance in compiling/linking a video capture
driver (bt848x) (http://bt848x.sourceforge.net/) for
solaris 10 x86.
the driver uses the /usr/lib/libc.a (specifically the _xtoll.o)
which, if im not mistaken, is not available in solaris 10
anymore. so how am i going to compile it?
BACKGROUND:
++++++++++++++++++++++++++++++++++
the original compile/link code in the makefile is:
/usr/ccs/bin/ld -o bt848x -r bt848-cards.o bt848-driver.o
bt848-kern.o i2c.o tuner.o sound-tda9875.o
sound-msp3400.o _xtoll.o
i modified it to:
/usr/ccs/bin/ld -o bt848x bt848-cards.o bt848-driver.o
bt848-kern.o i2c.o tuner.o sound-tda9875.o
sound-msp3400.o -L/usr/lib -lc
(NOTE: i removed the -r and _xtoll.o; and added
-L/usr/lib -lc)
the output was:
Undefined ____________ first referenced
symbol ______________ in file
mod_install bt848-kern.o
delay bt848-cards.o
ddi_get_instance bt848-kern.o
nodev bt848-kern.o
ddi_create_minor_node bt848-kern.o
ddi_regs_map_free bt848-kern.o
pci_config_getw bt848-driver.o
pci_config_getb bt848-driver.o
ddi_soft_state_zalloc bt848-kern.o
ddi_dma_unbind_handle bt848-kern.o
kmem_alloc i2c.o
cv_broadcast bt848-driver.o
ddi_remove_intr bt848-kern.o
ddi_get_soft_state bt848-kern.o
mod_driverops bt848-kern.o
ddi_get_lbolt bt848-cards.o
mutex_tryenter bt848-kern.o
ddi_get_iblock_cookie bt848-kern.o
nochpoll bt848-kern.o
ddi_copyin bt848-kern.o
mod_info bt848-kern.o
ddi_remove_minor_node bt848-kern.o
nulldev bt848-kern.o
ddi_dma_sync bt848-driver.o
ddi_dma_addr_bind_handle bt848-kern.o
mod_remove bt848-kern.o
ddi_prop_lookup_int_array bt848-cards.o
_pagesize                           bt848-driver.o
ddi_prop_op bt848-kern.o
ddi_dma_free_handle bt848-kern.o
ddi_set_driver_private bt848-kern.o
cv_wait_sig bt848-kern.o
ddi_intr_hilevel bt848-kern.o
ddi_regs_map_setup bt848-kern.o
pci_config_teardown bt848-driver.o
ddi_dma_mem_alloc bt848-kern.o
ddi_copyout bt848-kern.o
cmn_err bt848-cards.o
ddi_dma_alloc_handle bt848-kern.o
ddi_prop_exists bt848-cards.o
cv_init bt848-kern.o
pci_config_setup bt848-driver.o
cv_destroy bt848-kern.o
timeout sound-msp3400.o
untimeout sound-msp3400.o
devmap_umem_setup bt848-kern.o
ddi_prop_get_int bt848-kern.o
uiomove bt848-kern.o
kmem_free i2c.o
ddi_add_intr bt848-kern.o
ddi_report_dev bt848-kern.o
getminor bt848-kern.o
mutex_exit bt848-driver.o
ddi_prop_free bt848-cards.o
ddi_soft_state_fini bt848-kern.o
ddi_soft_state_free bt848-kern.o
ddi_soft_state_init bt848-kern.o
mutex_enter bt848-driver.o
ddi_mem_putl bt848-cards.o
ddi_mem_getl bt848-cards.o
drv_usecwait bt848-cards.o
drv_usectohz bt848-cards.o
ddi_dma_mem_free bt848-kern.o
ld: fatal: Symbol referencing errors. No output written to bt848x
QUESTIONS:
++++++++++++++++++++++++++++++++++
1.) What other libraries do i need to include so that
there would no more "symbol referencing errors" ???
2.) Is my linking code correct?
/usr/ccs/bin/ld -o bt848x bt848-cards.o bt848-driver.o
bt848-kern.o i2c.o tuner.o sound-tda9875.o
sound-msp3400.o -L/usr/lib -lc
i mean, is it ok to build a driver with dynamic libraries?
or the device driver should always be statically linked?
COMPUTER SPECS:
++++++++++++++++++++++++++++++++++
Solaris 10 (6/06 release)
SunOS 5.10 Generic_118844-26 i86pc i386 i86pc
Pentium 4 - 1.4GHz
1GB RDRAM
32 BIT
Video Capture Card: PixelView PV-BT878P+FM.RC (rev.9F)
thanks!!!
-kllc

i think i already found the answers to my questions
(i partially read SUN docs WRITING DEVICE DRIVER in
http://docs.sun.com/app/docs/doc/816-4854 specifically
the BUILDING A DEVICE DRIVER) =)
i used:
/usr/ccs/bin/ld -o bt848x -dy -r bt848-cards.o bt848-driver.o
bt848-kern.o i2c.o tuner.o sound-tda9875.o sound-msp3400.o
-L/usr/lib -lc
(NOTE: i used the flags -dy -r -L/usr/lib -lc)
so far, the TV-TUNER is working hehehehe!!
any comments/suggestions/tips from other people are still welcome!
thanks!!
-kllc

Similar Messages

  • Realtek PCIe GBE network card driver for Solaris10 x86

    Hi Gurus,
    My laptop has a Realtek PCIe GBE network card but I could not find the driver for Solaris10 x86 anywhere, can anybody help me with this issue?
    Thanks

    how about this?
    http://homepage2.nifty.com/mrym3/taiyodo/eng/
    other google hits indicate that there is a realtek driver in OpenSolaris.

  • "gcc" vs device driver

    Is "gcc" suitable for compiling a Solaris device driver?
    Thanks.

    It is possible to compile device drivers with gcc.
    Use the flags "-O -D_KERNEL -fno-builtin" as a starting point.
    There may be some rough edges with varargs (/usr/include/sys/varargs.h) and on the sparc-v9 64bit platform, though.

  • Problem while compiling the Device Driver source code onSolaris 8 intel pla

    Hello!
    We are writing Device Driver for PCI (PMC) based HS serial
    communication card on Solaris 8(intel edition).The Processor
    used is Celeron/Pentium III.
    We are facing following problems.
    1) Kindly let us know the cc compiler options for xarch=isa.
    2) Presently we have included following header files.
         #include <sys/ddi.h>
         #include <sys/sunddi.h>
    3)We tried to compile our driver soure file (pmc.c) using
    FORTE DEVELOPER 6 UPDATE 1 with the following command.
         # cc -Xa -D_KERNEL -c pmc.c
    4) The compiler is not able to reach to our source code. It prematurely fails
    while compiling the system header files
    5) The errors were reported during Preprocessor
    compilation in /SYS/*.h header files.
    cc: Warning: using -Xa, ignoring all other -X options
    "/usr/include/iso/limits_iso.h", line 54: warning: macro redefined: SHRT_MIN
    "/usr/include/iso/limits_iso.h", line 56: warning: macro redefined: USHRT_MAX
    "/usr/include/iso/limits_iso.h", line 59: warning: macro redefined: UINT_MAX
    "/usr/include/sys/vnode.h", line 486: syntax error before or at: rlim64_t
    "/usr/include/sys/vnode.h", line 486: warning: undefined or missing type for: rlim64_t
    "/usr/include/sys/vnode.h", line 487: warning: undefined or missing type for: cred_t
    "/usr/include/sys/vnode.h", line 487: warning: undefined or missing type for: ssize_t
    "/usr/include/vm/page.h", line 468: undefined or not a type: pgcnt_t
    6)Kindly let us know :-
    a) if any Environment variables to be set.
    b) What all the system include headre files are required & in what sequence if any.
    Expecting a early reply .
    Can anybody help us.
    Thanking you for your kind co-operation.
    A.P.SINGH
    INDIA               

    Try to use cc comiler from /opt/SUNWspro/bin/ like
    /opt/SUNWspro/bin/cc -Xa -D_KERNEL -c pmc.c

  • Can some one help me with diagnostic test result " apple mobile device driver not found"?

    I bought an iPhone 4gs 32gb from Singapore. iso 4. I'm living in Chennai, India. To connect it to my computer (windows XP,), I have downloaded iTunes 10.6.1.7. Unfortunately iTunes is not recognizing my iPhone.  I had tried to troubleshoot it by reinstalling iTunes (2 times). I have restarted the apple mobile device from control panel. I try connecting my iphone in another usb port. but no use. I don't know what am I missing?.  iTunes opens on my computer. but doesn't recognize my device. when I click on help. it says an "unknown error has occurred. your computer is not connected to internet. please check your internet connection and try again later". I don't know what to do? could you please help me? thank you so much for your help and time.
    when I update the usb driver (C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers.Double-click the usbaapl file.) I followed the procedure from this site. http://support.apple.com/kb/TS1538 when I finished, it says "the specified location does not contain information about your software"
    I did the apple's diagnostics test on my computer. I'm pasting the result for your info.
    Microsoft Windows XP Professional Service Pack 3 (Build 2600)
    System manufacturer System Product Name
    iTunes 10.6.3.25
    QuickTime not available
    FairPlay 1.14.43
    Apple Application Support 2.1.9
    iPod Updater Library 10.0d2
    CD Driver 2.2.0.1
    CD Driver DLL 2.1.1.1
    Apple Mobile Device 5.2.0.6
    Apple Mobile Device Driver not found.
    Bonjour 3.0.0.10 (333.10)
    Gracenote SDK 1.9.6.502
    Gracenote MusicID 1.9.6.115
    Gracenote Submit 1.9.6.143
    Gracenote DSP 1.9.6.45
    iTunes Serial Number 0013AC2C08548378
    Current user is an administrator.
    The current local date and time is 2012-06-28 15:23:45.
    iTunes is not running in safe mode.
    WebKit accelerated compositing is enabled.
    HDCP is not supported.
    Core Media is supported.
    Video Display Information
    Intel(R) G41 Express Chipset
    **** External Plug-ins Information ****
    No external plug-ins installed.
    **** Network Connectivity Tests ****
    Network Adapter Information
    Adapter Name:        {D85300A1-330D-41ED-AC5A-EC032B22FBF0}
    Description:            Atheros AR8121/AR8113/AR8114 PCI-E Ethernet Controller - Packet Scheduler Miniport
    IP Address:             192.168.1.3
    Subnet Mask:          255.255.255.0
    Default Gateway:    192.168.1.1
    DHCP Enabled:      Yes
    DHCP Server:         192.168.1.1
    Lease Obtained:     Thu Jun 28 15:17:19 2012
    Lease Expires:       Fri Jun 29 03:17:19 2012
    DNS Servers:         192.168.1.1
    Active Connection: LAN Connection
    Connected:             Yes
    Online:                    Yes
    Using Modem:        No
    Using LAN:             Yes
    Using Proxy:           No
    Firewall Information
    Windows Firewall is on.
    iTunes is enabled in Windows Firewall.
    Connection attempt to Apple web site was unsuccessful.
    The network connection timed out.
    Basic connection to the store failed.
    The network connection timed out.
    Connection attempt to Gracenote server was successful.
    The network connection timed out.
    iTunes has never successfully accessed the iTunes Store.
    **** CD/DVD Drive Tests ****
    No drivers in LowerFilters.
    UpperFilters: GEARAspiWDM (2.2.0.1),
    G: Optiarc DVD RW AD-7220A, Rev 1.01
    Drive is empty.
    **** Device Connectivity Tests ****
    iPodService 10.6.3.25 is currently running.
    iTunesHelper 10.6.3.25 is currently running.
    Apple Mobile Device service 3.3.0.0 is currently running.
    Universal Serial Bus Controllers:
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C8.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27C9.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CA.  Device is working properly.
    Intel(R) N10/ICH7 Family USB Universal Host Controller - 27CB.  Device is working properly.
    Intel(R) N10/ICH7 Family USB2 Enhanced Host Controller - 27CC.  Device is working properly.
    No FireWire (IEEE 1394) Host Controller found.
    **** Device Sync Tests ****
    No iPod, iPhone, or iPad found.

    I have the same problem. I think that someone tried my iphone before me because when I want to reset it, I'm invited to enter a password that I didn't set. Also, when I go the Map application, the iphone indicate that I'm locateded in China while I'm in Tunisia. Now, I can't connect to my iphone to itunes, and I can't reset it because it ask me to enter a password that I didn't set.
    This is my post:
    https://discussions.apple.com/thread/4063223
    Please, we need your help.

  • HT1296 When I connect my iPhone 4 to my computer it says that there is no device driver. I click fix it now and it does nothing. How do I fix this so that I can transfer my pictures from my phone to my computer? Please help. Thank you

    I cannot get my computer to find a device driver to connect my iPhone 4 to my computer so that I can transfer my pictures from my phone to my computer in order to free up some memory on my phone. Can you please help me. I have used the troubleshoot method on my computer and it does nothing. I have a Windows 8 computer. Thank you for your help.

    Reinstall iTunes. Make sure you follow the instructions in this support document to the letter. http://support.apple.com/kb/HT1923.
    You may have some problems because Apple has not certified that everything works with Windows 8 yet.

  • WES 7 OSD standalone (works) vs bootable (fails) - Failed to find suitable device driver for device (help)

    Hi everyone,
    I'm trying to deploy a Windows Embedded Standard 7 (trial key at the moment) image in SCCM 2012 SP1 with a very simple task sequence.
    I have a 'build and capture' and an OSD TS. I'm testing these on Hyper-V PCs and both work fine when i create stand alone media. The problem arrises when I try to deploy (or build & capture) with a bootable media;
    The TS starts, formats the disk, applies the OS, Windows and network settings, Apply Device Drivers etc., but when it reboots into Windows
    (or WES7 to be exact) it cant boot. The Windows Boot Manager reports a 0xc0000359 for storvsc.sys
    And I can't figure out what's wrong. I will post the SMSTS log further down below. The SAME TS works fine when it's a stand alone media.
    I have tried to:
    - Apply the WIM manually (nothing wrong - boots fine)
    - Create and apply driver package for the Hyper-V machines (from the MSI's Windows5.x-HyperVIntegrationServices-x86 and Windows5.x-HyperVIntegrationServices-x64)
    - No dice
    - Create a new boot image with the hyper-v drivers in it. No dice
    - Google everything related I can think of.
    I suspect it has something to do with the lines where it says:
    "Failed to find a suitable device driver for device xxx”
    It also has a couple of 401 errors when trying to get the packages, but it seems like it DOES end up getting the content.
    Please help! What could it be?
    I have 2 Hyper-V machines; one w. legacy network adapter - one not. Both have same issue.
    I have 2 Hyper-V machines; one w. legacy network adapter - one not. Both have same issue.
    SMSTS log key points are (the log is too long to post here):
    401 - Authentication failure on request with anonymous access, retrying with context credentials.                     
    OSDDriverClient               
    5/6/2014 4:03:41 PM     612 (0x0264)
    401 - Authentication failure on request with context credentials, retrying with supplied credentials.                     
    OSDDriverClient               
    5/6/2014 4:03:41 PM     612 (0x0264)
    Downloaded file from http://<CUSTOMER DP REMOVED>:80/SMS_DP_SMSPKG$/56D13589-D906-4697-8A1E-1CC3211902AA/sccm?/s3cap.inf to C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA\s3cap.inf   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Downloaded file from http://<CUSTOMER DP REMOVED>:80/SMS_DP_SMSPKG$/56D13589-D906-4697-8A1E-1CC3211902AA/sccm?/vmbusvideo.cat to C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA\vmbusvideo.cat              
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Downloaded file from http://<CUSTOMER DP REMOVED>:80/SMS_DP_SMSPKG$/56D13589-D906-4697-8A1E-1CC3211902AA/sccm?/vms3cap.sys to C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA\vms3cap.sys                   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Download done setting progress bar to 100                  
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) VerifyContentHash: Hash algorithm is 32780                 
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type          
    OSDDriverClient               
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type          
    OSDDriverClient               
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Failed to open Software\Microsoft\Sms\Mobile Client\Software Distribution registry key. The client should not get checked for RWH OpLock Type          
    OSDDriverClient               
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Installing driver "Microsoft Emulated S3 Device Cap"    
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Adding "C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA" to Windows driver store.            
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Setting %SystemRoot% to "C:\WINDOWS"                   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Getting namespace "Microsoft-Windows-PnpCustomizationsNonWinPE" for architecture "amd64"
    OSDDriverClient                     
    5/6/2014 4:03:41 PM         
    612 (0x0264) Added list item with key value '1'             
    OSDDriverClient                  
    5/6/2014 4:03:41 PM         
    612 (0x0264) Writing configuration information to C:\_SMSTaskSequence\PkgMgrTemp\drivers.xml                   
    OSDDriverClient                     
    5/6/2014 4:03:41 PM         
    612 (0x0264) Successfully saved configuration information to C:\_SMSTaskSequence\PkgMgrTemp\drivers.xml
    OSDDriverClient                     
    5/6/2014 4:03:41 PM         
    612 (0x0264) Setting temporary directory to 'C:\_SMSTaskSequence\PkgMgrTemp'.                     
    OSDDriverClient                     
    5/6/2014 4:03:41 PM         
    612 (0x0264) Calling Package manager to add drivers to the offline driver store.     
    OSDDriverClient                  
    5/6/2014 4:03:41 PM    612 (0x0264)
    Command line for extension .exe is "%1" %*               
    OSDDriverClient                  
    5/6/2014 4:03:41 PM                     
    612 (0x0264) Set command line: "X:\windows\Pkgmgr\dism.exe" /image:"C:" /windir:"WINDOWS" /apply-unattend:"C:\_SMSTaskSequence\PkgMgrTemp\drivers.xml" /logpath:"C:\_SMSTaskSequence\PkgMgrTemp\dism.log"                   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM    612 (0x0264)
    Executing command line: "X:\windows\Pkgmgr\dism.exe" /image:"C:" /windir:"WINDOWS" /apply-unattend:"C:\_SMSTaskSequence\PkgMgrTemp\drivers.xml" /logpath:"C:\_SMSTaskSequence\PkgMgrTemp\dism.log"                   
    OSDDriverClient                  
    5/6/2014 4:03:41 PM    612 (0x0264)
    Process completed with exit code 0        
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Dism successfully added drivers to the offline driver store.                
    OSDDriverClient                  
    5/6/2014 4:03:45 PM    612 (0x0264)
    Successfully added "C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA" to the Windows driver store.        
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Successfully installed driver "Microsoft Emulated S3 Device Cap".      
    OSDDriverClient                  
    5/6/2014 4:03:45 PM    612 (0x0264)
    Entering ReleaseSource() for C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA                     
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) reference count 1 for the source C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA before releasing              
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Released the resolved source C:\_SMSTaskSequence\ContentCache\56D13589-D906-4697-8A1E-1CC3211902AA                   
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Ranking compatible drivers for VMBUS\{57164F39-9115-4E78-AB55-382F3BD5422D}\{FD149E91-82E0-4A7D-AFA6-2A4166CBD7C0}       
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_0E4046FEF6FF1BC7776A060DF1B19003E0B5640936488E08E61C41D47A8B26C2 (SMS Driver Rank = 0x0000)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_8E607B402D9A9C9A0FBC0881F11231BDA52B4C8851F1BA00F7E8B3D932FC4871 (SMS Driver Rank = 0x0000)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_54E81CFA62FCB88FCA9D60C01594AA5FCEE40F9D5B28F47DE2A7B70C91268F17 (SMS Driver Rank = 0x0000)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Driver "Hyper-V Heartbeat" has already been installed. 
    OSDDriverClient                  
    5/6/2014 4:03:45 PM                     
    612 (0x0264) Failed to find a suitable device driver for device 'Intel 82443BX Pentium(R) II Processor to PCI Bridge'.                     
    OSDDriverClient               
    5/6/2014 4:03:45 PM    
    612 (0x0264) Failed to find a suitable device driver for device 'Generic Monitor'.                   
    OSDDriverClient                     
    5/6/2014 4:03:45 PM    
    612 (0x0264) Ranking compatible drivers for VMBUS\{A9A0F4E7-5A45-4D96-B827-8A841E8C03E6}\{242FF919-07DB-4180-9C2E-B86CB68C8C55}       
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_0E4046FEF6FF1BC7776A060DF1B19003E0B5640936488E08E61C41D47A8B26C2 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_8E607B402D9A9C9A0FBC0881F11231BDA52B4C8851F1BA00F7E8B3D932FC4871 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_54E81CFA62FCB88FCA9D60C01594AA5FCEE40F9D5B28F47DE2A7B70C91268F17 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Driver "Hyper-V Heartbeat" has already been installed. 
    OSDDriverClient                  
    5/6/2014 4:03:45 PM                     
    612 (0x0264) Failed to find a suitable device driver for device 'Numeric data processor'.      
    OSDDriverClient                     
    5/6/2014 4:03:45 PM    
    612 (0x0264) Ranking compatible drivers for VMBUS\{35FA2E29-EA23-4236-96AE-3A6EBACBA440}\{2450EE40-33BF-4FBD-892E-9FB06E9214CF}        
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_8E607B402D9A9C9A0FBC0881F11231BDA52B4C8851F1BA00F7E8B3D932FC4871 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_54E81CFA62FCB88FCA9D60C01594AA5FCEE40F9D5B28F47DE2A7B70C91268F17 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) SCOPEID_4AA3EF76-E8E6-4FC3-8E79-00F39F7D1CB5/DRIVER_C01B80DA1C014302CC793357FF0F1C0486554D11_0E4046FEF6FF1BC7776A060DF1B19003E0B5640936488E08E61C41D47A8B26C2 (SMS Driver Rank = 0x0001)                    
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264) Driver "Hyper-V Heartbeat" has already been installed. 
    OSDDriverClient                  
    5/6/2014 4:03:45 PM                     
    612 (0x0264) Failed to find a suitable device driver for device 'Microsoft System Management BIOS Driver'.                     
    OSDDriverClient               
    5/6/2014 4:03:45 PM    
    612 (0x0264) Failed to find a suitable device driver for device 'CD-ROM Drive'.
    OSDDriverClient               
    5/6/2014 4:03:45 PM  612 (0x0264)
    Exiting with return code 0x00000000      
    OSDDriverClient                  
    5/6/2014 4:03:45 PM         
    612 (0x0264)
    In advance: Sorry...

    Hi,
    0xc0000359 for storvsc.sys
    Looks like Hyper-v Storage Controller driver issue.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • HT4623 I cannot install my ipod to my computer. Says something about the device driver. I did not get it new either and so have no info about it. And I have never used one before and have no friends who have either. Can someone help me?

    I cannot install my ipod to my computer. Says something about the device driver. I did not get it new either and so have no info about it. And I have never used one before and have no friends who have either. Can someone help me?

    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

  • Help! No Audio Output device is installed

    My speaker in bottom right for My sound say "No Audio Output Device Is Installed" and i have tried to go through many things to solve such as go into device manager and enable or update through there etc...to no avail.  
    I stumbled across a thing that worked for most people. Recovery Manager. but. I don't have it on my computer to try so i have no other options to turn to. Can someone please help on how to fix this issue

    Dear Customer,
    Welcome to the HP Consumer Support Forum!!
    To isolate the issue please perform the steps below:
    1. Restart the computer.
    2. Check the Sound icon in the taskbar.
    3. If the icon has an X in the lower corner, click the Sound icon in the taskbar or
    4. Right-click the icon, and then click Troubleshoot sound problems.
    5. The audio troubleshooter checks for sound problems. When the troubleshooter finishes, it displays the results.
    6. If the computer has sound, the issue is resolved.
    Install Original Realtek High Definition Audio Driver from the link below:
    http://support.hp.com/us-en/drivers/selfservice/HP-Pavilion-Slimline-s5000-Desktop-PC-series/3942804...
    From the above link click on Driver-Original > Original Realtek High Definition Audio Driver > Download and install the same.
    In case the issue still persists and if the audio was working fine earlier, you may perform system restore to previous working condition using the steps mentioned in the link below:
    http://bertk.mvps.org/html/restoresysv.html
    Hope this helps, for any further queries reply to the post and feel free to join us again.
    **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    GR1
    Although I am an HP employee, I am speaking for myself and not for HP

  • PCI-6534 Device Driver Availabili​ty

    I am thinking of using a PCI-6534 for continious streaming 32 bit digital pattern generation from a host PC and clocked via an external clock at 1 - 10 MHz. From the benchmarks it seems that the PCI-6534 will meet these needs. My question involves device drivers. Windows is not an option for the system I am constructing as we have stability requirements that border on the need for a hard real time system. Is there enough information available about the card to allow a device driver to be written for an operating system such as Linux or RTLinux? Alternatively are such drivers available or alternatively for a RTOS such as QNX or VxWorks?

    National Instruments does not provide drivers for the Operating Systems you listed.
    However, there is a lot of information available on the PCI-DIO-32HS and register level programming available on the National Instruments website at:
    www.ni.com/support/daqsupp.htm
    view the Register Level programming link.
    under that link there is some information about programming the card through the registers. Also view the DAQ Register Programming link in the register programming site for examples and header files.
    In addition you may want to visit http://www.ni.com/linux/daq_comedi.htm
    where National Instruments provides information and a link to the Comedi group which has developed a Driver for Linux that has had success with the PCI-DIO-32HS.
    Hope this help you get starte
    d.

  • Interface with device driver (API or DLL files)

    I want to make my C++ program interface with an instrument which has a device driver available at the OEM's website. It's a DLL file (not a .cpp file), but I don't know how to call DLL file from C++. I am using Measurement Studio for Visual C++ and Microsoft Visual C++ compiler. Do you have a C++ example code or tutorial about calling DLL (or API) from C++ ?

    Irene,
    Measurement Studio is simply a plug-in for Visual Studio C++. Calling a DLL is general to C/C++. It usually amounts to #including the .h file that comes with the library, like this:
    #include "MyDLL.h"
    I found the following website through Google, which is pretty thorough on calling DLLs:
    http://www.codeproject.com/dll/XDllPt1.asp
    I hope that helps.
    Matt P.
    NI

  • Bluetooth Peripheral Device driver failure in Windows Vista

    I've linked my computer and my Palm Centro using a Bluetooth connection and now I keep getting an error message that says...
    "Device driver was not successfully installed...Bluetooth Peripheral Device - Failed"
    It tries to search the computer to find the driver and when it can't it asks me to put in the CD that came with the phone.  I do that and it still can't find the driver.
    Does anyone know where I can find this mystery driver???   Please help!!  Thanks
    Post relates to: Centro (Sprint)

    I am having the same problem with a new RocketFish Bluetooth adapter.  I did NOT have this problem when I was using a Kensington USB Bluetooth adapter.  One big difference that I notice between the two adapters is that the Kensington adapter came with an updated version of the Toshiba Bluetooth Stack software which contained its own DUN drivers.  However, the new RocketFish Bluetooth 2.0 EDR USB adapter does not seem to work with the Toshibal BT Stack.
    Maybe this helps.  Maybe it doesn't.  Either way, I don't care.  It's how I roll.  I'm a smart ass.
    I will check back for any additions to this thread.  I hope we can figure it out!  I will also post more Prose of Indifference.
    Post relates to: Centro (AT&T)

  • Windows cannot load the device driver for this hardware. The driver may be corrupted or missing.

    I'm having the error "Windows cannot load the device driver for this hardware. The driver may be corrupted or missing. (Code 39)" and I can't read/write CDs/DVDs. When I try to update the driver  I have the message that it is already up to date.
    I can't find the driver to dowload and try to fix the problem. Where can I download it or solve somehow my problem?

    Hi juigarashi,
    Microsofts automated troubleshooting service on the link below may help
    CD/DVD Repair
    Hope it works for you.
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Equium A60-157: error caused by device driver

    Hi all,
    I'm trying to write my PhD thesis at the moment and am being hampered by my laptop! It keeps randomly bringing up the blue screen of death and then restarting; when it's all loaded up, I get a 'serious error' message that says 'error caused by device driver'. As far as I know, all the programs I have are compatible... I was advised to restore factory settings, which I did a few months ago. And I've had the BIOS update suitable for my computer. But it's still happening!!
    If it helps, the programs I use daily are Microsoft Word, Access and Powerpoint, Internet Explorer and MSN Messenger. I don't run any high spec games (only Minesweeper occasionally!)
    What can I do? Does anyone else have this problem? Any advice would be much appreciated, as these crashes are not helping my work!
    Thanks...

    Hi guys,
    I seem to have a similar problem. About a month ago I reinstalled windows using the product recovery cd and three days later I started getting a blue screen. But the error occurs only when shutting down (not always, I can`t see any pattern)- right before the shut down itself, windows has already logged off and settings are saved. The error code is 0x50 and the report says it is caused by an unknown device driver.
    The day that stop error started I installed an educational software (Leankey's) for which I used a virtual cd. But at the initial launch the program "freezed" and I had to close it and open it again, there wasn`t a problem. After that I tried to copy some files on a blank cd (without using any burning software) and it said that the device was not accessible.
    I tried disabling DMA but that didn`t help. In the event viewer I saw error messages that say the cdrom has a bad block. I`m not sure whether this has something to do with the stop error but they started at the same time. I can still burn cds with other software (nero). I tried to update the device driver but it didn`t help.
    Maybe I have to uninstall the driver first but from the device manager when I check the properties of the device (driver details) it uninstalls the device and the driver remains. Should I delete the driver files manually? I have checked all device drivers and they are all compatible. All installed software is digitally signed. (I immediately removed the Learnkey`s software but I think it has changed some dll...
    I will appreciate any suggestions.
    P.S. When I run the toshiba diagnostic tool it skips testing the cd/dvd but it doesn`t say why.
    Details about my system:
    Satellite Pro L10
    MS Widows XP Pro 5.1.2600 SP2
    BIOS: v 2.60 (updated 2 days ago)
    Intel Celeron M 1.60 GHz
    496 MB Ram
    55.890 GB
    Video: Intel 82852/82855 GM/GME Graphics Controller ver=6.14.10.3929
    Sound: Conexant AC-Link Audio
    Network: Realtek RTL8139/810x Family Fast Ethernet NIC
    Modem: AC97 SoftV92 Data Fax Modem with SmartCP ver=7.12.13.50
    IDE Device 1: Fujitsu MHV2060AT
    IDE Device 2: None
    IDE Device 3: Mat****a DVD-Ram UJ-831S Firmware=1.90
    Internet Explorer:
    6.0.2900.2180

  • Stread Device Driver Development

    Hai,
    I am doing "Stream Device Driver" in "SunOs 5.8" Using "Forte C++ " Compiler. This Driver Type is Multiplexer.
    My Coding is Over but i can compile my code. But I am not able Link the object file.
    Compiler giving error is
    # make
    cc -r -o /wacom /wacom.o
    ld: fatal: symbol `_fini' is multiply-defined:
    (file /opt/SUNWspro/WS6U2/lib/crti.o and file /wacom.o);
    ld: fatal: symbol `_init' is multiply-defined:
    (file /opt/SUNWspro/WS6U2/lib/crti.o and file /wacom.o);
    ld: fatal: File processing errors. No output written to /wacom
    make: *** [wacom] Error 1
    Compiler giving "Multiply-defined" for "_file", "_init" functions.
    pls send the solution for me.

    Try
    cc -c -Xa -D_KERNEL /wacom.c
    ld -r -o wacom wacom.o

Maybe you are looking for