Solved!== Wince 6.0---Serial Driver or Kernel Problem?

Samsung SMDKV210 Dev Board with a LCD and 4 serial ports (COM1 to COM4). A computer sends data (in packet one by one) regularly to the board through COM1. When the interval time of the packets is over 120ms, the application run on the Dev board receives
each packet on time (T + 120xN). If the interval time is less than 110ms, such as 60ms, the app receives the data in 360ms intervally, 6 packets once a time (T + 360xN). I checked the source code but found nothing. Is there anything wrong in the CE
kernel? Could anyone help me? Thanks.
2014.12.21

BOOL CPSerialPort::OpenPort(LPCTSTR Port,int BaudRate,int DataBits,int StopBits,int Parity,LPDataArriveProc proc,DWORD userdata)
    m_lpDataArriveProc=proc;
    m_dwUserData=userdata;
    if(m_hComm==INVALID_HANDLE_VALUE)
        m_hComm=CreateFile(Port,GENERIC_READ|GENERIC_WRITE,0,0,OPEN_EXISTING,0,0);
        if(m_hComm==INVALID_HANDLE_VALUE )
            AfxMessageBox(_T("Cannot open Port"));
            return FALSE;
        GetCommState(m_hComm,&dcb);
        dcb.BaudRate=BaudRate;
        dcb.ByteSize=DataBits;
        dcb.Parity=Parity;
        dcb.StopBits=StopBits;
        dcb.fParity=FALSE;
        dcb.fBinary=TRUE;
        dcb.fDtrControl=0;
        dcb.fRtsControl=0;
        dcb.fOutX=dcb.fInX=dcb.fTXContinueOnXoff=0;
        SetCommMask(m_hComm,EV_RXCHAR);        
        SetupComm(m_hComm,16384,16384);        
        if(!SetCommState(m_hComm,&dcb))
            AfxMessageBox(_T("Cannot setup Comm"));
            PurgeComm(m_hComm,PURGE_TXCLEAR|PURGE_RXCLEAR);
            ClosePort();
            return FALSE;
        GetCommTimeouts(m_hComm,&CommTimeOuts);        
        CommTimeOuts.ReadIntervalTimeout=100;
        CommTimeOuts.ReadTotalTimeoutMultiplier=1;
        CommTimeOuts.ReadTotalTimeoutConstant=100;
        CommTimeOuts.WriteTotalTimeoutMultiplier=0;
        CommTimeOuts.WriteTotalTimeoutConstant=0;    
        if(!SetCommTimeouts(m_hComm,&CommTimeOuts))
            AfxMessageBox(_T("Cannot setup Timerouts"));
            PurgeComm(m_hComm,PURGE_TXCLEAR|PURGE_RXCLEAR);
            ClosePort();
            return FALSE;
        PurgeComm(m_hComm,PURGE_TXCLEAR|PURGE_RXCLEAR);        
        return TRUE;        
    return FALSE;
Dear Bruce,
I hope you "hit the target". Those parameters underlined above will be adjusted in tomorrow morning's test, and I will inform you the result asap.
BEST RGDS
JWenbin 
                                

Similar Messages

  • Carl9170 driver causes kernel problem

    I am an arch linux newb, just switched from ubuntu. However I do know just enough about linux to screw stuff up.
    So, I have a SMCWUSB-N2 (USB atheros wireless N). Don't remember the exact chipset, but I do know the carl9170 driver supports it. The default arch version of carl9170 worked, but with horrible speed and frequent disconnects. So I downloaded the latest compat-wireless, built, and installed it. Now when I plug in the adapter the light on it stays solid (normally blinks with activity) and nothing else happens. Dmesg prints the following when I plug it in:
    [ 49.333357] usb 1-5: new high speed USB device using ehci_hcd and address 7
    [ 49.640199] cfg80211: Calling CRDA to update world regulatory domain
    [ 49.780031] usb 1-5: reset high speed USB device using ehci_hcd and address 7
    [ 49.943426] usbcore: registered new interface driver carl9170
    [ 49.948631] usb 1-5: driver API: 1.9.0 2010-10-29 [1-1]
    [ 49.948638] usb 1-5: firmware API: 1.9.2 2010-12-25
    [ 50.283047] ath: EEPROM regdomain: 0x809c
    [ 50.283052] ath: EEPROM indicates we should expect a country code
    [ 50.283055] ath: doing EEPROM country->regdmn map search
    [ 50.283057] ath: country maps to regdmn code: 0x52
    [ 50.283059] ath: Country alpha2 being used: CN
    [ 50.283061] ath: Regpair used: 0x52
    [ 50.283064] ------------[ cut here ]------------
    [ 50.283077] WARNING: at /home/<USER>/wireless/compat-wireless-2011-05-16/net/wireless/reg.c:1222 wiphy_apply_custom_regulatory+0x182/0x190 [cfg80211]()
    [ 50.283080] Hardware name: EG194AA-ABA A1250N
    [ 50.283082] Modules linked in: carl9170 mac80211 ath cfg80211 fuse ipv6 ext3 jbd usb_storage uas usbhid hid btusb bluetooth rfkill s5h1409 cx88_dvb cx88_vp3054_i2c videobuf_dvb dvb_core rc_pinnacle_pctv_hd xc5000 snd_seq_dummy ir_lirc_codec lirc_dev snd_seq_oss snd_seq_midi_event snd_seq snd_seq_device tuner ir_sony_decoder ir_jvc_decoder ir_rc6_decoder radeon ir_rc5_decoder snd_pcm_oss snd_mixer_oss cx8800 cx8802 cx88_alsa ir_nec_decoder cx88xx rc_core ttm tveeprom v4l2_common snd_atiixp drm_kms_helper ppdev videodev snd_ac97_codec v4l2_compat_ioctl32 btcx_risc ac97_bus 8139cp ohci_hcd videobuf_dma_sg videobuf_core drm snd_pcm i2c_algo_bit firewire_ohci evdev ehci_hcd snd_timer snd parport_pc sg i2c_piix4 firewire_core crc_itu_t 8139too soundcore snd_page_alloc usbcore psmouse lp processor mii button parport edac_core edac_mce_amd i2c_core k8temp pcspkr serio_raw ext4 mbcache jbd2 crc16 sd_mod sr_mod cdrom pata_acpi pata_atiixp sata_sil libata scsi_mod
    [ 50.283156] Pid: 3473, comm: firmware/carl91 Not tainted 2.6.38-ARCH #1
    [ 50.283158] Call Trace:
    [ 50.283167] [<ffffffff81058caa>] ? warn_slowpath_common+0x7a/0xb0
    [ 50.283170] [<ffffffff81058cf5>] ? warn_slowpath_null+0x15/0x20
    [ 50.283176] [<ffffffffa089cfe2>] ? wiphy_apply_custom_regulatory+0x182/0x190 [cfg80211]
    [ 50.283182] [<ffffffffa091a050>] ? carl9170_reg_notifier+0x0/0x40 [carl9170]
    [ 50.283187] [<ffffffffa08cd776>] ? ath_regd_init+0x346/0x430 [ath]
    [ 50.283192] [<ffffffffa091cbea>] ? carl9170_register+0x1ea/0x4b0 [carl9170]
    [ 50.283197] [<ffffffff812c35e0>] ? request_firmware_work_func+0x0/0x80
    [ 50.283201] [<ffffffffa091e7e0>] ? carl9170_usb_firmware_step2+0x60/0xd0 [carl9170]
    [ 50.283205] [<ffffffff812c3622>] ? request_firmware_work_func+0x42/0x80
    [ 50.283210] [<ffffffff81079a47>] ? kthread+0x87/0x90
    [ 50.283214] [<ffffffff8100bc24>] ? kernel_thread_helper+0x4/0x10
    [ 50.283218] [<ffffffff810799c0>] ? kthread+0x0/0x90
    [ 50.283221] [<ffffffff8100bc20>] ? kernel_thread_helper+0x0/0x10
    [ 50.283224] ---[ end trace 7d16e3a764ee0f8f ]---
    [ 50.283228] ------------[ cut here ]------------
    [ 50.283234] WARNING: at /home/<USER>/wireless/compat-wireless-2011-05-16/net/wireless/core.c:492 wiphy_register+0x31c/0x380 [cfg80211]()
    [ 50.283237] Hardware name: EG194AA-ABA A1250N
    [ 50.283238] Modules linked in: carl9170 mac80211 ath cfg80211 fuse ipv6 ext3 jbd usb_storage uas usbhid hid btusb bluetooth rfkill s5h1409 cx88_dvb cx88_vp3054_i2c videobuf_dvb dvb_core rc_pinnacle_pctv_hd xc5000 snd_seq_dummy ir_lirc_codec lirc_dev snd_seq_oss snd_seq_midi_event snd_seq snd_seq_device tuner ir_sony_decoder ir_jvc_decoder ir_rc6_decoder radeon ir_rc5_decoder snd_pcm_oss snd_mixer_oss cx8800 cx8802 cx88_alsa ir_nec_decoder cx88xx rc_core ttm tveeprom v4l2_common snd_atiixp drm_kms_helper ppdev videodev snd_ac97_codec v4l2_compat_ioctl32 btcx_risc ac97_bus 8139cp ohci_hcd videobuf_dma_sg videobuf_core drm snd_pcm i2c_algo_bit firewire_ohci evdev ehci_hcd snd_timer snd parport_pc sg i2c_piix4 firewire_core crc_itu_t 8139too soundcore snd_page_alloc usbcore psmouse lp processor mii button parport edac_core edac_mce_amd i2c_core k8temp pcspkr serio_raw ext4 mbcache jbd2 crc16 sd_mod sr_mod cdrom pata_acpi pata_atiixp sata_sil libata scsi_mod
    [ 50.283294] Pid: 3473, comm: firmware/carl91 Tainted: G W 2.6.38-ARCH #1
    [ 50.283296] Call Trace:
    [ 50.283299] [<ffffffff81058caa>] ? warn_slowpath_common+0x7a/0xb0
    [ 50.283302] [<ffffffff81058cf5>] ? warn_slowpath_null+0x15/0x20
    [ 50.283307] [<ffffffffa0899c2c>] ? wiphy_register+0x31c/0x380 [cfg80211]
    [ 50.283318] [<ffffffffa08d6238>] ? ieee80211_register_hw+0xa8/0x5d0 [mac80211]
    [ 50.283324] [<ffffffffa08d6353>] ? ieee80211_register_hw+0x1c3/0x5d0 [mac80211]
    [ 50.283329] [<ffffffffa091cc41>] ? carl9170_register+0x241/0x4b0 [carl9170]
    [ 50.283355] [<ffffffff812c35e0>] ? request_firmware_work_func+0x0/0x80
    [ 50.283359] [<ffffffffa091e7e0>] ? carl9170_usb_firmware_step2+0x60/0xd0 [carl9170]
    [ 50.283363] [<ffffffff812c3622>] ? request_firmware_work_func+0x42/0x80
    [ 50.283367] [<ffffffff81079a47>] ? kthread+0x87/0x90
    [ 50.283370] [<ffffffff8100bc24>] ? kernel_thread_helper+0x4/0x10
    [ 50.283374] [<ffffffff810799c0>] ? kthread+0x0/0x90
    [ 50.283377] [<ffffffff8100bc20>] ? kernel_thread_helper+0x0/0x10
    [ 50.283379] ---[ end trace 7d16e3a764ee0f90 ]---
    I blacklisted the ar9170usb driver as the wiki suggests, yet I still have problems. Is this a kernel bug that I should report, or am I doing something wrong?
    Thanks!

    Have you installed the firmware? You can download it from here (http://linuxwireless.org/en/users/Drivers/carl9170) and put it in /lib/firmware.

  • I wanted to know explain my problem down package cc2014 where I put the serial number of the problem that I have is that when you open the program asks me start of session in which he put it and go but back inside and it drives me to request the start of

    I wanted to know explain my problem down package cc2014 where I put the serial number of the problem that I have is that when you open the program asks me start of session in which he put it and go but back inside and it drives me to request the start of session and I take 3 weeks or more with this problem if they can support me solve it was the number of seire wearing this being installed at a private university

    Cloud programs do not use serial numbers... you log in to your paid Cloud account to download & install & activate... you MAY need to log out of the Cloud and restart your computer and log back in to the Cloud for things to work
    Some general information for a Cloud subscription
    Log out of your Cloud account... Restart your computer... Log in to your paid Cloud account
    -Sign in help http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html
    Does your Cloud subscription properly show on your account page?
    If you have more than one email, are you sure you are using the correct Adobe ID?
    https://www.adobe.com/account.html for subscriptions on your Adobe page

  • 64 bit serial driver with 32 bit VISA causing problems?

    I'm running LabView 2012 on Linux (kernel 3.10) on an x86_64 machine. I think that VISA is not playing nicely with my 64-bit serial driver. I have a few instuments connected through an NPort serial to ethernet converter. Instruments which output data constantly (unpolled) are working fine. I'm reading ASCII data from those using both minicom and LabView / VISA with no problem. Instruments which need to be polled for data are not working.
    The same software and drivers are working fine on a 32-bit machine in the same lab (although I compiled the NPort serial driver for 32-bit on that machine). All I can think is that 32-bit VISA doesn't like the "bitness" of the 64 bit serial driver, and it's mashing anything I try to write to a serial port. This being the case:
    1) Can I install 64-bit VISA for Linux in conjunction with 32-bit Labview? Would that work?
    2) If I have to go for a 64-bit LabView, do I really need to downgrade my kernel to 2.x as suggested in a hidden NI compatibility document that I now can't find?
    3) Why is Linux such an after-thought with NI?

    OK. Panic over. Could be down to differences in control codes that the newer version of the driver is acting on.
    [james@IceMan ~]$ stty -a -F /dev/ttyr00
    speed 9600 baud; rows 0; columns 0; line = 0;
    intr = <undef>; quit = <undef>; erase = <undef>; kill = <undef>; eof = <undef>; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S;
    susp = <undef>; rprnt = <undef>; werase = <undef>; lnext = <undef>; flush = <undef>; min = 0; time = 0;
    -parenb -parodd cs8 -hupcl -cstopb cread clocal -crtscts -cdtrdsr
    -ignbrk -brkint -ignpar parmrk inpck -istrip -inlcr -igncr -icrnl -ixon -ixoff -iuclc -ixany -imaxbel -iutf8
    -opost -olcuc -ocrnl -onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
    -isig -icanon -iexten -echo -echoe -echok -echonl -noflsh -xcase -tostop -echoprt -echoctl -echoke
    [james@IceMan ~]$ stty -g -F /dev/ttyr00
    18:0:8bd:4000:0:0:0:0:0:0:0:0:11:13:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0
    [james@IceMan2 ~]$ stty -a -F /dev/ttyr00
    speed 9600 baud; rows 0; columns 0; line = 0;
    intr = ^C; quit = ^\; erase = ^?; kill = ^U; eof = ^D; eol = <undef>; eol2 = <undef>; swtch = <undef>; start = ^Q; stop = ^S; susp = ^Z; rprnt = ^R;
    werase = ^W; lnext = ^V; flush = ^O; min = 1; time = 0;
    -parenb -parodd -cmspar cs8 hupcl -cstopb cread clocal -crtscts
    -ignbrk -brkint -ignpar -parmrk -inpck -istrip -inlcr -igncr icrnl ixon -ixoff -iuclc -ixany -imaxbel -iutf8
    opost -olcuc -ocrnl onlcr -onocr -onlret -ofill -ofdel nl0 cr0 tab0 bs0 vt0 ff0
    isig icanon iexten echo echoe echok -echonl -noflsh -xcase -tostop -echoprt echoctl echoke
    [james@IceMan2 ~]$ stty -g -F /dev/ttyr00
    500:5:cbd:8a3b:3:1c:7f:15:4:0:1:0:11:13:1a:0:12:f:17:16:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0

  • Time machine backups to external drive causing kernel panics

    Hi,
    I am using an early 2011 MBP with a 1TB WD My Passport as a Time Machine backup disc.
    Time Machine has been working fine until 2 days ago when I tried to perform its backup to disc.
    It performed the usual backup but only up to 50MB of 2GB before it caused a KP.
    Tried it using a different USB port with the same results.
    Here's the report:
    Interval Since Last Panic Report:  1466729 sec
    Panics Since Last Report:          6
    Anonymous UUID:                    A63997A0-A90D-471D-A39B-CC79EBB585A3
    Thu Dec 20 09:18:19 2012
    panic(cpu 2 caller 0xffffff80004e6b17): "hfs_vnop_link: error 2 updating vp @ 0xffffff8015d4f3e0\n"@/SourceCache/xnu/xnu-1699.32.7/bsd/hfs/hfs_link.c:643
    Backtrace (CPU 2), Frame : Return Address
    0xffffff807f5bb9f0 : 0xffffff8000220792
    0xffffff807f5bba70 : 0xffffff80004e6b17
    0xffffff807f5bbb80 : 0xffffff800031a158
    0xffffff807f5bbbe0 : 0xffffff800030c4a7
    0xffffff807f5bbf50 : 0xffffff80005ce4cb
    0xffffff807f5bbfb0 : 0xffffff80002daea3
    BSD process name corresponding to current thread: backupd
    Mac OS version:
    11G63
    Kernel version:
    Darwin Kernel Version 11.4.2: Thu Aug 23 16:25:48 PDT 2012; root:xnu-1699.32.7~1/RELEASE_X86_64
    Kernel UUID: FF3BB088-60A4-349C-92EA-CA649C698CE5
    System model name: MacBookPro8,1 (Mac-94245B3640C91C81)
    System uptime in nanoseconds: 1642602634871
    last loaded kext at 950709485490: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f807e0000, size 16384)
    last unloaded kext at 1018418960143: com.apple.driver.AppleUSBCDC          4.1.22 (addr 0xffffff7f807e0000, size 12288)
    loaded kexts:
    com.huawei.driver.HuaweiDataCardACMData          4.11.00
    com.Cycling74.driver.Soundflower          1.5.1
    com.eltima.SyncMate.kext          0.2.5b15
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.2.5a5
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AppleMikeyDriver          2.2.5a5
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AGPM          100.12.75
    com.apple.driver.AppleIntelHD3000Graphics          7.3.2
    com.apple.driver.SMCMotionSensor          3.0.2d6
    com.apple.driver.AppleSMCPDRC          5.0.0d8
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.iokit.IOBluetoothSerialManager          4.0.8f17
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.ApplePolicyControl          3.1.33
    com.apple.driver.ACPI_SMC_PlatformPlugin          5.0.0d8
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleBacklight          170.2.2
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleUSBTCButtons          227.6
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.8f17
    com.apple.driver.AppleUSBTCKeyboard          227.6
    com.apple.driver.AppleIRController          312
    com.apple.iokit.SCSITaskUserClient          3.2.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCISerialATAPI          2.0.3
    com.apple.iokit.IOAHCIBlockStorage          2.1.0
    com.apple.driver.AppleUSBHub          5.1.0
    com.apple.driver.AppleFWOHCI          4.9.0
    com.apple.driver.AirPort.Brcm4331          561.7.22
    com.apple.driver.AppleSDXC          1.2.2
    com.apple.iokit.AppleBCM5701Ethernet          3.2.4b8
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleAHCIPort          2.3.1
    com.apple.driver.AppleUSBEHCI          5.1.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.4
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.nke.ppp          1.7
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.2.1
    com.apple.iokit.IOUSBMassStorageClass          3.0.3
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.2.5a5
    com.apple.iokit.IOFireWireIP          2.2.5
    com.apple.iokit.IOSurface          80.0.2
    com.apple.driver.AppleHDAController          2.2.5a5
    com.apple.iokit.IOHDAFamily          2.2.5a5
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginLegacy          5.0.0d8
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.driver.AppleGraphicsControl          3.1.33
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.driver.AppleIntelSNBGraphicsFB          7.3.2
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.8f17
    com.apple.iokit.IOBluetoothFamily          4.0.8f17
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.driver.AppleUSBMultitouch          230.5
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.1.0
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice          3.2.1
    com.apple.iokit.IOBDStorageFamily          1.7
    com.apple.iokit.IODVDStorageFamily          1.7.1
    com.apple.iokit.IOCDStorageFamily          1.7.1
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOFireWireFamily          4.4.8
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IOEthernetAVBController          1.0.1b1
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBFamily          5.1.0
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.8
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i7, 2.7 GHz, 4 GB, SMC 1.68f98
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333235533642465238432D48392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 11 devices, 1 incoming serial ports
    Serial ATA Device: TOSHIBA MK5065GSXF, 500.11 GB
    Serial ATA Device: OPTIARC DVD RW AD-5970H
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: HUAWEI Mobile, 0x12d1  (Huawei Technologies Co., Ltd.), 0x1001, 0xfa130000 / 7
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0245, 0xfa120000 / 5
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    Am I correct in assuming that my external drive is the problem?
    Is there any way around it?
    Any help is much appreciated!
    Thanks.

    I will hand you over to the Master...
    See this Excellent Link by Pondini on Using TM...
    http://web.me.com/pondini/AppleTips/Index.html

  • Nvidia is not working after upgrading nvidia driver and kernel

    I upgraded nvidia driver and kernel. After rebooting graphic mode is not working. Here xorg.o.log
    [ 281.180]
    This is a pre-release version of the X server from The X.Org Foundation.
    It is not supported in any way.
    Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
    Select the "xorg" product for bugs you find in this release.
    Before reporting bugs in pre-release versions please check the
    latest version in the X.Org Foundation git repository.
    See http://wiki.x.org/wiki/GitPage for git access instructions.
    [ 281.181]
    X.Org X Server 1.10.0.902 (1.10.1 RC 2)
    Release Date: 2011-04-08
    [ 281.181] X Protocol Version 11, Revision 0
    [ 281.181] Build Operating System: Linux 2.6.38-ARCH i686
    [ 281.181] Current Operating System: Linux localhost 2.6.38-ARCH #1 SMP PREEMPT Wed Mar 30 07:14:27 UTC 2011 i686
    [ 281.181] Kernel command line: BOOT_IMAGE=/boot/vmlinuz26 root=/dev/disk/by-uuid/b766e332-2aad-4047-8562-567180150189 ro quiet
    [ 281.182] Build Date: 11 April 2011 10:49:12AM
    [ 281.182]
    [ 281.182] Current version of pixman: 0.20.2
    [ 281.182] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 281.182] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 281.183] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Apr 14 17:11:37 2011
    [ 281.183] (==) Using config file: "/etc/X11/xorg.conf"
    [ 281.183] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 281.183] (==) ServerLayout "Layout0"
    [ 281.183] (**) |-->Screen "Screen0" (0)
    [ 281.183] (**) | |-->Monitor "Monitor0"
    [ 281.184] (**) | |-->Device "Videocard0"
    [ 281.184] (**) |-->Input Device "Keyboard0"
    [ 281.184] (**) |-->Input Device "Mouse0"
    [ 281.184] (**) Option "Xinerama" "0"
    [ 281.184] (==) Automatically adding devices
    [ 281.184] (==) Automatically enabling devices
    [ 281.184] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 281.184] Entry deleted from font path.
    [ 281.184] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 281.184] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 281.184] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 281.184] (WW) Disabling Keyboard0
    [ 281.184] (WW) Disabling Mouse0
    [ 281.184] (II) Loader magic: 0x822e120
    [ 281.184] (II) Module ABI versions:
    [ 281.184] X.Org ANSI C Emulation: 0.4
    [ 281.184] X.Org Video Driver: 10.0
    [ 281.184] X.Org XInput driver : 12.2
    [ 281.184] X.Org Server Extension : 5.0
    [ 281.185] (--) PCI:*(0:1:0:0) 10de:0322:0000:0000 rev 161, Mem @ 0xfd000000/16777216, 0xe8000000/134217728, BIOS @ 0x????????/131072
    [ 281.185] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 281.185] (II) LoadModule: "extmod"
    [ 281.185] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 281.185] (II) Module extmod: vendor="X.Org Foundation"
    [ 281.185] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.185] Module class: X.Org Server Extension
    [ 281.185] ABI class: X.Org Server Extension, version 5.0
    [ 281.185] (II) Loading extension MIT-SCREEN-SAVER
    [ 281.185] (II) Loading extension XFree86-VidModeExtension
    [ 281.185] (II) Loading extension XFree86-DGA
    [ 281.185] (II) Loading extension DPMS
    [ 281.185] (II) Loading extension XVideo
    [ 281.185] (II) Loading extension XVideo-MotionCompensation
    [ 281.185] (II) Loading extension X-Resource
    [ 281.185] (II) LoadModule: "dbe"
    [ 281.185] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 281.185] (II) Module dbe: vendor="X.Org Foundation"
    [ 281.185] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.185] Module class: X.Org Server Extension
    [ 281.185] ABI class: X.Org Server Extension, version 5.0
    [ 281.185] (II) Loading extension DOUBLE-BUFFER
    [ 281.185] (II) LoadModule: "glx"
    [ 281.186] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 281.216] (II) Module glx: vendor="NVIDIA Corporation"
    [ 281.217] compiled for 4.0.2, module version = 1.0.0
    [ 281.217] Module class: X.Org Server Extension
    [ 281.217] (II) NVIDIA GLX Module 173.14.28 Wed Sep 29 10:17:05 PDT 2010
    [ 281.217] (II) Loading extension GLX
    [ 281.217] (II) LoadModule: "record"
    [ 281.217] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 281.217] (II) Module record: vendor="X.Org Foundation"
    [ 281.217] compiled for 1.10.0.902, module version = 1.13.0
    [ 281.217] Module class: X.Org Server Extension
    [ 281.217] ABI class: X.Org Server Extension, version 5.0
    [ 281.217] (II) Loading extension RECORD
    [ 281.217] (II) LoadModule: "dri"
    [ 281.217] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 281.217] (II) Module dri: vendor="X.Org Foundation"
    [ 281.217] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.217] ABI class: X.Org Server Extension, version 5.0
    [ 281.217] (II) Loading extension XFree86-DRI
    [ 281.217] (II) LoadModule: "dri2"
    [ 281.217] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 281.218] (II) Module dri2: vendor="X.Org Foundation"
    [ 281.218] compiled for 1.10.0.902, module version = 1.2.0
    [ 281.218] ABI class: X.Org Server Extension, version 5.0
    [ 281.218] (II) Loading extension DRI2
    [ 281.218] (II) LoadModule: "nvidia"
    [ 281.218] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 281.218] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 281.218] compiled for 4.0.2, module version = 1.0.0
    [ 281.218] Module class: X.Org Video Driver
    [ 281.218] ================ WARNING WARNING WARNING WARNING ================
    [ 281.219] This server has a video driver ABI version of 10.0 that is not
    supported by this NVIDIA driver. Please check
    http://www.nvidia.com/ for driver updates or downgrade to an X
    server with a supported driver ABI.
    [ 281.219] =================================================================
    [ 281.219] (II) NVIDIA dlloader X Driver 173.14.28 Wed Sep 29 09:55:18 PDT 2010
    [ 281.219] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 281.219] (--) using VT number 7
    [ 281.222] (II) Loading sub module "fb"
    [ 281.222] (II) LoadModule: "fb"
    [ 281.222] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 281.222] (II) Module fb: vendor="X.Org Foundation"
    [ 281.222] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.222] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 281.222] (II) Loading sub module "wfb"
    [ 281.222] (II) LoadModule: "wfb"
    [ 281.222] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 281.223] (II) Module wfb: vendor="X.Org Foundation"
    [ 281.223] compiled for 1.10.0.902, module version = 1.0.0
    [ 281.223] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 281.223] (II) Loading sub module "ramdac"
    [ 281.223] (II) LoadModule: "ramdac"
    [ 281.223] (II) Module "ramdac" already built-in
    [ 281.223] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 281.226] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 281.226] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 281.226] (II) UnloadModule: "nvidia"
    [ 281.226] (II) Unloading nvidia
    [ 281.226] (II) UnloadModule: "wfb"
    [ 281.226] (II) Unloading wfb
    [ 281.226] (II) UnloadModule: "fb"
    [ 281.226] (II) Unloading fb
    [ 281.226] (EE) Screen(s) found, but none have a usable configuration.
    [ 281.226]
    Fatal server error:
    [ 281.226] no screens found
    [ 281.226]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 281.226] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 281.226]

    bilgee0629 wrote:
    Arjann wrote:
    I think the new xorg-server is the problem as it isn't supported by this nvidia driver yet.
    You could try to install the nouveau driver until nvidia comes with a new version of the 173 branch that supports xorg-server 1.10, see: https://wiki.archlinux.org/index.php/Nouveau for information. As lower-grade options, you might also consider xf86-video-nv and xf86-video-vesa.
    Should i uninstall nvidia driver, then install it?
    I think thats the easy way yes, else you have to blacklist the nvidia kernel module.. check the wiki link of nouveau for details.

  • [SOLVED] CD Drive causing boot problems

    I'm trying to install Arch, but booting the install disk causes these errors to come up:
    Loading /arch/x86_64/vmlinuz.....
    Loading /arch/x86_64/archiso.img.............ready.
    Decompressing Linux... Parsing ELF... done.
    Booting the kernel.
    : : Starting udevd...
    done.
    : : Running Hook [udev]
    : : Triggering uevents...[ 19.934456] usb 5-1.6: device descriptor read/64, error -110
    [ 35.098044] usb 5-1.6: device descriptor read/64, error -110
    [ 36.869505] ata8.00: exception Emask 0x52 SAct 0x0 SErr 0xffffffff action 0xe frozen
    [ 36.869549] ata8: SError: { RecovData RecovComm UnrecovData Persist Proto HostInt PHYRdyChg PHYInt CommWake 10B8B Dispar BadCRC Handshk LinkSeq TrStaTrns UnrecFIS DevExch }
    [ 36.869598] ata8.0: failed command: IDENTIFY PACKET DEVICE
    [ 36.869639] ata8.0: cmd a1/00:01:00:00:00/00:00:00:00:00/00 tag 0 pio 512 in
    [ 36.869640] res 40/00:00:00:00:00/00:00:00:00:00 Emask 0x56 (ATA bus error)
    [ 36.869721] ata 8.0: status: { DRDY }
    It just stops there and won't continue to boot. Disconnecting the SATA cable from my CD drive and using a flash drive to boot fixes these issues, but I didn't continue with the install because I wasn't sure if I would be unable to boot with the drive plugged in later. This is my CD drive. It's connected to a SATA 6GB/s port on my motherboard. The drive works perfectly in Windows.
    Also, if anyone knows anything about the USB error, help would be appreciated. That was the only error that did not go away after disconnecting my CD drive. I only have a keyboard, mouse, and WiFi dongle plugged in.
    Last edited by nigh (2012-05-29 09:28:01)

    Your issue with the SATA disc drive is a problem with Udev. Namely that some SATA disc drives do not support 16-byte pass-through commands coming from Udev. See this post for a longer explanation and the correct workaround:
    https://bbs.archlinux.org/viewtopic.php?pid=895404
    Other guides online will say to comment out parts of Udev's 60-persistent-storage.rules file, but I have found that to not only not work, but mess up detection of the SATA hard drives.
    So, after, or during, Arch installation using your USB stick:
    Add
    options libata atapi_passthru16=0
    to /etc/modprobe.d/modprobe.conf
    Add
    FILES="/etc/modprobe.d/modprobe.conf"
    to /etc/mkinitcpio.conf
    Rebuild kernel image with:
    mkinitcpio -p linux
    reboot
    To narrow down your USB issue, maybe you could try booting with only one plugged in at a time to identify which one has the issue. Do they all three work even though one gives this message?

  • USB Console (Serial) Driver fails to install on Windows 8.1 x64

    The USB console cable driver v3.1 will not install on Windows 8.1 x64.  Had a similar problem with Windows 7 x64 but this was fixed using Greg's (greggar25) excellent step-by-step procedure (see post: https://supportforums.cisco.com/discussion/11492306/usb-console-driver-install-failing).
    I am using the driver from this link: http://software.cisco.com/download/release.html?mdfid=282774228&flowid=7442&softwareid=282855122&release=3.1&relind=AVAILABLE&rellifecycle=&reltype=latest
    I followed the same procedures I did for Windows 7 and the install goes without a hitch.  Reboot and connect the USB cable, opened Device Manager and now I have a COM Port randomly appearing and disappearing with its number incrementing well above 1,000.
    A few times while it appeared for a few seconds, I was able to right click on the properties, update the driver and chose Cisco Serial and it settled down but it did not assign a COM port.  Then a few seconds later, it starts the disappearing/reappearing thing again.
    Anyone have luck getting this to work with Windows 8.1 x64?

     Hi,
    open Device Manager by simply typing the words on the Windows 8.1 Start Screen. The Search Charm opens and click Device Manager in the displayed list. 
    In Device Manager a new hardware category, CiscoUsbConsoleWindowsDriver, is displayed. It has two components: the Cisco Bus enumerator and the Cisco USB to Serial adapter. Expanding the Ports hardware category shows a new Cisco Serial port. 
     or 
    Look into below 
    https://supportforums.cisco.com/discussion/11492306/usb-console-driver-install-failing
    1) Install the usb console driver\windows 64\setup(x64)
    2) Follow the wizard and accept the defaults
    3) Restart the computer (the installer usually says it needs a restart)
    4) After restarting the computer, plug in the usb cable
    5) The computer should say installing Device driver software and fail at the Cisco Virtual Comm Port00
    6) Click the Windows button, right click computer, manage
    7) Under Computer Management, Click Device Management
    8) Go to Ports (COM & LPT)
    9) You should see the Cisco Virtual Comm Port00 with a Yellow Exclamation point on it
    10) Right Click on the Cisco Virtual Comm Port00 and select Properties
    11) Click the Driver Tab
    12) Click Update Driver
    13) Select Browse my computer for driver software
    14) Select Let me pick from a list of device drivers on my computer
    15) Choose the Cisco Serial Driver
    16) Device Driver is installed successfully, take note of the com port it is using and enjoy.
    HTH 
    Sandy 

  • What do I port serial driver to Intel Solaris8?

    How do I port a serial driver from linux to intel solaris8 ?
    Because I can't find the serial driver sample, so it is difficult
    to make it work in intel solaris8.
    Are there someone knows how to handle? or any suggestions?
    Thanks.

    That kind of depends. Very old versions of LabVIEW only had one serial driver called serpdrv and several LabVIEW functions that called it. There were some advantages to using these when you built an exe since serpdrv was same and easily included with the exe distribution. Several years ago, a new communication API called VISA was introduced. VISA gave programmers a single driver to communicate with serial, gpib, VXI, ethernet, and now USB instruments. The downside to VISA for built applications was that the installation of the driver was a bit more difficult to include and it required quite a bit more disk space. I've preferred using VISA for quite a long time and since I typically use a mix of serial and gpib, VISA made the most sense to me. Now, in Lab
    VIEW 7, VISA is the only supported interface and NI has made the installation easier and the disk requirements smaller. So, if you're looking forward, I would recomend the VISA functions - VISA Write to send data to the serial port, and VISA Read to receive data. The older functions can be found on the I/O Compatability>Serial Compatability palette. LabVIEW 7 has a compability palette as well but they are VISA functions writeen to look like the old ones.

  • Open Serial Driver VI runs in user interface thread - why?

    I know the serial port compatibility functions are "phased out" and you should use the newer VISA functions - but why on earth is the open serial driver VI set to run in the user interface thread?  If you happen to use these compatibility VIs your serial communication will be blocked by e.g. a user that opens the calendar view of a date and time control...- and the only reason for that is that that particular VI is running in the user interface.
    Change the thread of that VI - and the serial communication runs as it should, so why is it that that particular VI, unlike all the other VIs in that library, is configured that way?
    MTO

    The S/N dialog is part of the process model.
    For the Sequential Model (SequentialModel.seq), the default S/N dialog in found in the 'PreUUT' sub-sequence and implemented as a DLL call.
    The PreUUT sub-sequence of the SequentialModel is a callback, so you can override it in your own test sequence.
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Looking for a serial driver for an agilent 4395A to work with labview

    Can only find one for gpib I have no interface for gpib on my PC but i do have a rs232/gpib converter and was wondering if I could get a serial driver for the agilent 4395A for this.
    Thanks

    I've only used the RS232/GPIB converter to go from a GPIB bus to a serial instrument so I can't speak for going the other direction but I would give it a try. However, you have big problems with the driver if its the same one I just downloaded from NI. It's not really what I would call a driver at all but an application program meant to be used stand alone. There is no breakout of instrument functions into subVIs and none of the controls or indicators are on the connector so you can't even use the high level app as a subVI without a lot of work. It is a contributed driver but I'm surprised NI accepted it because it doesn't follow any of the published rules for an instrument driver. It's not even a good example of program design, imho. There is a VISA dr
    iver available from Agilent here and I would try that instead. To use a VISA driver with a serial port, you just specify the VISA resource name for that port instead of the GPIB resource name. For example, a GPIB resource name of an instrument with an address of 5 would be "GPIB::5::INSTR". To communicate to your instrument over com port 1, the VISA resource name is "ASRL1::INSTR". If the instrument has a serial port in addition to the GPIB, you could also try skipping the converter. Some VISA drivers work fine either way.

  • Developing serial driver for hp54615B

    Hellow LabVIEW User's,
    I am dveloping a serial driver for hp54615B scope. i went through the GPIB driver for the hp54615B which NI has developed. In this driver hp546xx Read Delay.vi which commands of hp54615B you are setting to the following inputs.
    1) what does the following parameters corresponds to
    a) Channel1 edge count
    b) Channel2 edge count
    2 ) Similarly in hp546xx Read Min Max Waveform.vi
    what is the min waveform array and max waveform array consists of when i acquire some 5000 points.
    3) Similarly in hp546xx Configure Record length.vi
    what are these parameters corresponds to
    a) time per record .
    b) minimum record length (is this input same as no of points to acquire ).
    c) acquisition start time
    inputs corresponds to and which command should i pass to achieve this.
    waiting for reply
    Thanks & Regards
    anil

    I'm thinking that you are using IVI driver. IVI driver from NI site is distributed with source code. This driver does not support serial interface, but you can change source code and recompile DLL. LabVIEW IVI driver is calling DLL.
    Driver will require following changes:
    1) in IviInit function you must set for serial interface some attributes. (VI_ATTR_TERMCHAR, etc.)
    2) for serial interface you cannot use events. WaitForOPCCallback must be changed.
    3) All functions which read binary data must be changed. You must disable term. character during binary transfer.
    For more details download tktds3x0 driver. This driver supports serial interface.
    >-----------------------------------------------------
    * hp546xx Read Delay.vi call for edge count param
    etrers following command:
    MEASEF DEL,,
    If slope is set to falling, value is inverted.
    For example:
    Channel1 Slope: Rising
    Channel1 Edge Count: 2
    Channel2 slope: Falling
    Channel1 Edge Count: 5
    Command: MEASEF DEL,2,-5
    * Read Min Max Waveform you can call only if the acquisition type is peak detect. In this case scope returns two waveforms. Odd elements in buffer(WAVATA?) are elements of min waveform and even elements are elements of max waveform.
    * hp546xx Configure Record Length.vi
    * minimum record length - is the minimum number of points which you require. If you set this value to value which is not supported but is less as maximum for example 4901, driver sets to instrument number of points WAVOIN 5000. Driver will guarantee that read function returns wavefrom with this size.
    * time per record is time for aquire all points. (TIM:RANG)
    * This time represents the time of first element in waveform. if you set 0.0 -> first el
    ement of waveform is trigger. (TIMEL) the range depends on the time per record.
    Regards,
    Zdenek

  • Usb flash drive read only problem [solved]

    Hi, im using spacefm, i have udevil and udisks2 installed, i can read my USB flash drive but i cannot delete files, i tried gparted that use spacefm as well and i can delete files from the usb flash drive with no problems, any ideas?
    i solved i installed ntfs-3g and i can delete files again
    thanks
    Last edited by adcdam (2013-04-08 01:01:22)

    I installed it and got this error : now my Macbook wont even see the flash drive...

  • Can I install an OS to a serial drive

    Hi a friend of mine is building a system almosty identical to mine except he only has an s-ata drive. The problem arises with the fact that windows install (2K and XP) procedure won't recognise his drive despite loading the driver from the floppy. I noted in the manual that a RAID array cannot be booted unless there is a pre-existing OS install is this true for a lone S-ATA drive too?
    Cheers

    Should?
     i did have a little trouble, the first time i did it thought, as windows xp just
    did not want to see the drive, but after formatting the drive on another pc
    worked fine?

  • Kernel problem in brand new Macbook Air

    I have been having kernel problems with my brand new computer. Two weeks ago I bought my computer and after 14 hours it began. Apple decided to switch my computer out for another that I got yesterday. And today the kernel problems began with this one...
    It only happens when i´m connected to the internet at home but not at school. I have updated everything and tried to restart it and hold the shift button down and everything I found that could help me with this problem...
    Interval Since Last Panic Report:  23867 sec
    Panics Since Last Report:          3
    Anonymous UUID: 2011A6AD-4068-EA35-FAE9-424D4F56A1A0
    Tue Jun 4 19:49:05 2013
    panic(cpu 0 caller 0xffffff8003f72262): assertion failed: p->m_tag_cookie == M_TAG_VALID_PATTERN, file: /SourceCache/xnu/xnu-2050.22.13/bsd/kern/uipc_mbuf2.c, line: 593
    Backtrace (CPU 0), Frame : Return Address
    0xffffff8082ea3be0 : 0xffffff8003c1d626
    0xffffff8082ea3c50 : 0xffffff8003f72262
    0xffffff8082ea3c60 : 0xffffff8003f93b4d
    0xffffff8082ea3c90 : 0xffffff8003f6f3fb
    0xffffff8082ea3cd0 : 0xffffff7f84a56ca5
    0xffffff8082ea3d00 : 0xffffff7f84a92cb6
    0xffffff8082ea3e30 : 0xffffff7f84aed0e9
    0xffffff8082ea3ec0 : 0xffffff7f84a5ce99
    0xffffff8082ea3ef0 : 0xffffff80040467a8
    0xffffff8082ea3f30 : 0xffffff80040452aa
    0xffffff8082ea3f80 : 0xffffff80040453d9
    0xffffff8082ea3fb0 : 0xffffff8003cb2977
    Kernel Extensions in backtrace:
    com.apple.driver.AirPort.Brcm4331(614.20.16)[737B7F44-B423-3EEB-B03E-A097BA7418 C2]@0xffffff7f84a4f000->0xffffff7f84c47fff
    dependency: com.apple.iokit.IOPCIFamily(2.7.3)[1D668879-BEF8-3C58-ABFE-FAC6B3E9A292]@0xffff ff7f84281000
    dependency: com.apple.iokit.IO80211Family(522.4)[236113FC-214D-3BAE-A734-11B904E05A74]@0xff ffff7f849e2000
    dependency: com.apple.iokit.IONetworkingFamily(3.0)[FE3163C6-2874-3843-A96F-5DB796ED27CA]@0 xffffff7f843ca000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000003a00000
    Kernel text base: 0xffffff8003c00000
    System model name: MacBookAir5,2 (Mac-2E6FAB96566FE58C)
    System uptime in nanoseconds: 158393206466
    last loaded kext at 5995877552: com.apple.driver.AudioAUUC 1.60 (addr 0xffffff7f84eac000, size 32768)
    last unloaded kext at 111516295736: com.apple.driver.AppleFileSystemDriver        3.0.1 (addr 0xffffff7f85735000, size 8192)
    loaded kexts:
    com.apple.driver.AudioAUUC           1.60
    com.apple.iokit.IOBluetoothSerialManager            4.1.3f3
    com.apple.filesystems.autofs            3.0
    com.apple.driver.ApplePlatformEnabler    2.0.6d1
    com.apple.driver.AGPM        100.12.87
    com.apple.driver.X86PlatformShim            1.0.0
    com.apple.driver.AppleMikeyHIDDriver     122
    com.apple.driver.AppleHDA 2.3.7fc4
    com.apple.iokit.IOUserEthernet       1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X      7.0.0
    com.apple.driver.AppleMikeyDriver           2.3.7fc4
    com.apple.driver.AppleSMCLMU     2.0.3d0
    com.apple.driver.AppleSMCPDRC   1.0.0
    com.apple.driver.AppleLPC  1.6.0
    com.apple.driver.ApplePolicyControl          3.3.0
    com.apple.driver.AppleBacklight     170.2.5
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport            4.1.3f3
    com.apple.driver.AppleIntelHD4000Graphics       8.1.0
    com.apple.driver.AppleIntelFramebufferCapri     8.1.0
    com.apple.driver.AppleUSBTCButtons        237.1
    com.apple.driver.AppleUSBTCKeyboard    237.1
    com.apple.driver.AppleUSBCardReader     3.1.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless      1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib  1.0.0d1
    com.apple.BootCache            34
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage           2.3.1
    com.apple.driver.AppleUSBHub      5.5.5
    com.apple.driver.AirPort.Brcm4331           614.20.16
    com.apple.driver.AppleAHCIPort     2.5.1
    com.apple.driver.AppleUSBXHCI     5.5.5
    com.apple.driver.AppleUSBEHCI     5.5.0
    com.apple.driver.AppleSmartBatteryManager      161.0.0
    com.apple.driver.AppleEFINVRAM  1.7
    com.apple.driver.AppleHPET           1.8
    com.apple.driver.AppleRTC  1.5
    com.apple.driver.AppleACPIButtons           1.7
    com.apple.driver.AppleSMBIOS       1.9
    com.apple.driver.AppleACPIEC        1.7
    com.apple.driver.AppleAPIC            1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall   4.0.39
    com.apple.security.quarantine        2
    com.apple.driver.AppleIntelCPUPowerManagement        196.0.0
    com.apple.iokit.IOSerialFamily         10.0.6
    com.apple.kext.triggers         1.0
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOAudioFamily         1.8.9fc11
    com.apple.kext.OSvKernDSPLib      1.6
    com.apple.iokit.IOSurface     86.0.4
    com.apple.iokit.IOBluetoothFamily  4.1.3f3
    com.apple.driver.AppleSMBusPCI   1.0.11d0
    com.apple.driver.AppleGraphicsControl     3.3.0
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.3.0d51
    com.apple.driver.AppleHDAController        2.3.7fc4
    com.apple.iokit.IOHDAFamily           2.3.7fc4
    com.apple.driver.AppleBacklightExpert     1.0.4
    com.apple.driver.AppleSMBusController    1.0.11d0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport       4.1.3f3
    com.apple.driver.AppleSMC 3.1.4d2
    com.apple.iokit.IOAcceleratorFamily           30.14
    com.apple.iokit.IONDRVSupport      2.3.7
    com.apple.iokit.IOGraphicsFamily    2.3.7
    com.apple.driver.AppleUSBMultitouch       237.3
    com.apple.iokit.IOUSBHIDDriver     5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice       3.5.5
    com.apple.iokit.IOUSBMassStorageClass     3.5.1
    com.apple.iokit.IOSCSIArchitectureModelFamily   3.5.5
    com.apple.driver.AppleThunderboltDPInAdapter            1.8.9
    com.apple.driver.AppleThunderboltDPAdapterFamily    1.8.9
    com.apple.driver.AppleThunderboltPCIDownAdapter     1.2.6
    com.apple.driver.AppleUSBMergeNub       5.5.5
    com.apple.driver.AppleUSBComposite        5.2.5
    com.apple.driver.AppleThunderboltNHI    1.6.3
    com.apple.iokit.IOThunderboltFamily         2.2.6
    com.apple.iokit.IOUSBUserClient     5.5.5
    com.apple.iokit.IO80211Family       522.4
    com.apple.iokit.IONetworkingFamily           3.0
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IOUSBFamily            5.5.5
    com.apple.driver.AppleEFIRuntime            1.7
    com.apple.iokit.IOHIDFamily            1.8.1
    com.apple.iokit.IOSMBusFamily       1.1
    com.apple.security.sandbox 220.2
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet     7
    com.apple.driver.DiskImages           345
    com.apple.iokit.IOStorageFamily      1.8
    com.apple.driver.AppleKeyStore     28.21
    com.apple.driver.AppleACPIPlatform         1.7
    com.apple.iokit.IOPCIFamily 2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto     1.0
    Model: MacBookAir5,2, BootROM MBA51.00EF.B02, 2 processors, Intel Core i5, 1.8 GHz, 4 GB, SMC 2.5f7
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238412D50422020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333235533643465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.100.16)
    Bluetooth: Version 4.1.3f3 11349, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM128E, 121,33 GB
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8404, 0x1d183000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x024d, 0x1d182000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821f, 0x1d181300 / 9

    Your warranty includes 90 days of phone support. Contact Apple.

Maybe you are looking for