[SOLVED] Kernel 3.2.1 and USB Touchscreen Failure

With the upgrade from linux 3.1.9 to 3.2.1, my touchscreen device is no longer recognised.
Hoping someone may be able to shed some light on the situation.
Here are my Xorg logs for both kernels:
http://home.exetel.com.au/padfoot/logs/xorg.log.3.1.9
http://home.exetel.com.au/padfoot/logs/xorg.log.3.2.1
xinput list for 3.1.9
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ SONiX USB Keyboard id=12 [slave pointer (2)]
⎜ ↳ eGalaxTouch Virtual Device for Multi id=14 [slave pointer (2)]
⎜ ↳ eGalaxTouch Virtual Device for Single id=15 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Power Button id=8 [slave keyboard (3)]
↳ 1.3M Rear id=9 [slave keyboard (3)]
↳ 1.3M Front id=10 [slave keyboard (3)]
↳ SONiX USB Keyboard id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
xinput list for 3.2.1
⎡ Virtual core pointer id=2 [master pointer (3)]
⎜ ↳ Virtual core XTEST pointer id=4 [slave pointer (2)]
⎜ ↳ SONiX USB Keyboard id=12 [slave pointer (2)]
⎣ Virtual core keyboard id=3 [master keyboard (2)]
↳ Virtual core XTEST keyboard id=5 [slave keyboard (3)]
↳ Power Button id=6 [slave keyboard (3)]
↳ Video Bus id=7 [slave keyboard (3)]
↳ Power Button id=8 [slave keyboard (3)]
↳ 1.3M Rear id=9 [slave keyboard (3)]
↳ 1.3M Front id=10 [slave keyboard (3)]
↳ SONiX USB Keyboard id=11 [slave keyboard (3)]
↳ AT Translated Set 2 keyboard id=13 [slave keyboard (3)]
↳ Acer WMI hotkeys id=14 [slave keyboard (3)]
dmesg extract for 3.1.9
[ 4.920911] input: eGalax Inc. USB TouchController as /devices/pci0000:00/0000:00:13.0/usb5/5-1/5-1:1.0/input/input10
[ 4.923565] generic-usb 0003:0EEF:7302.0001: input,hiddev0,hidraw0: USB HID v2.10 Pointer [eGalax Inc. USB TouchController] on usb-0000:00:13.0-1/input0
[ 7.701218] input: eGalaxTouch Virtual Device for Multi as /devices/virtual/input/input13
[ 7.701692] input: eGalaxTouch Virtual Device for Single as /devices/virtual/input/input14
dmesg extract for 3.2.1
[ 3.853443] usb 5-1: new full-speed USB device number 2 using ohci_hcd
[ 3.990164] usb 5-1: device descriptor read/64, error -62
[ 4.226771] usb 5-1: device descriptor read/64, error -62
[ 4.460091] usb 5-1: new full-speed USB device number 3 using ohci_hcd
[ 4.593421] usb 5-1: device descriptor read/64, error -62
[ 4.830326] usb 5-1: device descriptor read/64, error -62
[ 5.063660] usb 5-1: new full-speed USB device number 4 using ohci_hcd
[ 5.470315] usb 5-1: device not accepting address 4, error -62
[ 5.600320] usb 5-1: new full-speed USB device number 5 using ohci_hcd
[ 6.006989] usb 5-1: device not accepting address 5, error -62
[ 6.256982] usb 5-5: new full-speed USB device number 6 using ohci_hcd
Holding off on upgrading to kernel 3.2 until this can be resolved
Appreciate your help.
Cheers.
Last edited by Padfoot (2012-01-21 01:35:03)

Ok, I have the solution. Multitouch is now working with kernel 3.2.1. It seems the kernel devs are separating multitouch devices from the generic input stack as they can cause issues. Here is the reply I got from the linux-input mailing list:
Well, many eGalax devices are multitouch devices, and can not be
handled by the generic input hid layer without having strange issues.
We have a patch in 3.2 that auto detect such devices and release them
from the generic input stack.
Then, it's easier for people to handle the devices through
hid-multitouch as the recompilation of the kernel is not required
anymore.
I also submitted a patch to catch multitouch devices in
hid-multitouch, but it has not been accepted as it would require
everybody to load hid-multitouch for every hid device.
To enable your device, do (as root)
# modprobe hid-multitouch
# echo 3 VID PID 104 >
/sys/module/hid_multitouch/drivers/hid\:hid-multitouch/new_id
where:
- 3 is the bus, usb here
- VID: vendor ID (must be 0eef in your case)
- PID: product ID
- 104 is the number of the right class of multitouch device to use
(see MT_CLS_* definitions in hid-multitouch)
VID/PID  can be retrieved from lsusb.
If it's working, then you should also give us your PID so that we can
add it in the source of hid-multitouch.
So, I did the following to enable multitouch:
1. Before upgrading your kernel (should also work after, but may as well be prepared):
# lsusb
Bus 005 Device 002: ID 0eef:7302 D-WAV Scientific Co., Ltd
VID is 0eef
PID is 7302
2. Now we need to get the MT_CLS_* definition for our device (extracted from http://lxr.free-electrons.com/source/dr … titouch.c)
86
87 /* classes of device behavior */
88 #define MT_CLS_DEFAULT 0x0001
89
90 #define MT_CLS_SERIAL 0x0002
91 #define MT_CLS_CONFIDENCE 0x0003
92 #define MT_CLS_CONFIDENCE_MINUS_ONE 0x0004
93 #define MT_CLS_DUAL_INRANGE_CONTACTID 0x0005
94 #define MT_CLS_DUAL_INRANGE_CONTACTNUMBER 0x0006
95 #define MT_CLS_DUAL_NSMU_CONTACTID 0x0007
96
97 /* vendor specific classes */
98 #define MT_CLS_3M 0x0101
99 #define MT_CLS_CYPRESS 0x0102
100 #define MT_CLS_EGALAX 0x0103
101
I have an eGalax device, so I need MT_CLS_* = 0x0103 (259 in decimal)
3. We have all we need to set up the device. Install kernel 3.2.1
# pacman -S linux
4. Start the hid-multitouch module on boot
# nano /etc/rc.conf
# HARDWARE
# MODULES: Modules to load at boot-up. Blacklisting is no longer supported.
# Replace every !module by an entry as on the following line in a file in
# /etc/modprobe.d:
# blacklist module
# See "man modprobe.conf" for details.
MODULES=(hid-multitouch)
Now reboot to see if your device is auto configured with the hid-multitouch module. If so, you are all good to go. If not, continue as follows:
5. Ensure your device details are passed to the hid-multitouch module
# nano /etc/rc.local
echo 3 0eef 7302 259 > /sys/module/hid_multitouch/drivers/hid\:hid-multitouch/new_id
The command above contains my device details, replace with your details obtained from steps 1 & 2 above:
echo 3 VID PID MT_CLS_*
(If someone can point me in a better direction for setting up these details at boot, it would be appreciated)
Reboot again to see if the device is now working. If not, you may need binary drivers from the vendor. I know in my case, my device needs the eGalax touch daemon driver. A package for this is available in the AUR https://aur.archlinux.org/packages.php?ID=55050
Of course, as the email states, if you have a device that is not automatically configured with the hid-multitouch module, yet it does work after step 5, submit your device details to the linux-input mailing list so it may be added to the source.
Cheers.
Last edited by Padfoot (2012-01-21 01:34:42)

Similar Messages

  • [Solved] Kernel 2.6.34 and bad sound

    Hello everyone, I've just updated to kernel 2.6.34 and... surprise! Sound is jerkily if I play a video on my machine. If I watch a video, for instance, from YouTube, both video and audio runs faster.
    I'm running Arch x86_64 and
    00:14.2 Audio device: ATI Technologies Inc SBx00 Azalia (Intel HDA)
    is the audio card.
    Last edited by abraxas88 (2010-07-18 09:05:14)

    wantilles wrote:
    1. Could be a bug in the AMD/ATi chipset. Up until the 890xX, they had plenty of these (and we are not even sure if the 890xX are OK yet).
    2. Could also be a BIOS issue.
    Some motherboard manufacturers (e.g. ASUS) are notorious for their buggy BIOSes, that affect foremost:
    - virtualization extensions
    - sound
    3. Is this a desktop, or a laptop?
    This is Samsung laptop (R20plus, NP-R20FY0C if it helps), three years old, with ATI SB600 chipset and ATI Xpress 1250 onboard VGA card.
    It had plenty issues with video (as I said, especially with KMS, but with generic VESA drivers sometimes too), and some problems with correct HDA codec autodetection (until 2.6.33).
    Just rebooted into hand-made 2.6.33 under "testing" system, all seems to be OK there.
    Also, these glithes are not constant for me, they begin if my system is under load only (not really heavy one, for example, it begin to glitch if I scroll page in Konqueror (my main test for this bug)
    Last edited by abbradar (2010-06-10 14:56:03)

  • FireWire 800 and USB bus failure

    I am trying to resolve an ongoing issue with my iMac. External storage devices will not stay mounted. I have had data corruption and several drive failures that I believe are attributable to the sudden loss of connection to the computer. It can not be that all my drives – there have been five – are faulty. My newest drive, an OWC Mercury Elite Pro connected to the FireWire 800 bus, is beginning to exhibit the same behavior, and this drive is less than a month old.
    What possible explanations are there for a FireWire or USB bus to suddenly drop a connected hard drive?
    Thanks in advance.

    Simplest explanation? Your iMac has a hardware failure. Take it in for service. It's probably NOT a software issue but a hardware failure.
    Can we assume you have tried new or different cables?

  • [SOLVED] Kernel panic when using external USB hard drive

    I have a desktop PC with a 64 bit arch install, on a Core2 Duo 6320 CPU. I have been using (and continue using right now) a 500 GB "Iomega Desktop Hard Drive" external USB hard disk without problems. But I have just bought a 3 TB "Seagate Expansion" external USB hard drive and I'm unable to use it from my Arch install. Each time I try to format it or to copy data from the PC, Arch freezes with a kernel panic. Sometimes it freezes faster and I cannot see anything, but others I am able to see the following kernel messages, repeating several times:
    [11701.205071] sd 3:0:0:0: [sdf] uas_eh_abort_handler ffff880014e13380 tag 29, inflight: CMD
    [11701.221297] sd 3:0:0:0: [sdf] abort completed
    [11701.221313] scsi host3: uas_eh_task_mgmt: ABORT TASK failed (wrong tag 0/256)
    [11701.221323] sd 3:0:0:0: [sdf] uas_eh_abort_handler ffff880014e13500 tag 30, inflight: CMD
    [11701.237550] sd 3:0:0:0: [sdf] abort completed
    [11701.237567] scsi host3: uas_eh_task_mgmt: ABORT TASK failed (wrong tag 0/256)
    [11701.237576] sd 3:0:0:0: [sdf] uas_eh_abort_handler ffff880014e13680 tag 31, inflight: CMD
    [11701.253922] sd 3:0:0:0: [sdf] abort completed
    [11701.253936] scsi host3: uas_eh_task_mgmt: ABORT TASK failed (wrong tag 0/256)
    [11701.253956] sd 3:0:0:0: uas_eh_device_reset_handler
    [11704.252182] scsi host3: uas_eh_task_mgmt: LOGICAL UNIT RESET timed out
    [11704.252196] scsi host3: uas_eh_bus_reset_handler start
    [11704.252443] usb 5-6: stat urb: killed, stream 0
    [11704.358882] usb 5-6: reset high-speed USB device number 3 using ehci-pci
    [11704.483206] scsi host3: uas_eh_bus_reset_handler success
    Strange enough, the drive is listed by lsusb command as a 2TB but I don't think this is related to the problem (as the OS sees the 3 TB). This is the lsusb output:
    Bus 001 Device 003: ID 0bc2:3312 Seagate RSS LLC SRD00F2 [Expansion Desktop Drive 2TB]
    I have tried the drive on other PCs and it works flawlessly. Also tried booting Windows 8 on the same PC I have Arch installed in, and in Windows it also works perfect. I have tried using ext2 and NTFS filesystems. Tried also changing the USB cable without success. And right now I'm out of ideas. Any suggestions?
    Last edited by doragasu (2014-07-03 11:06:25)

    looks like it could be the UAS module , check https://bbs.archlinux.org/viewtopic.php?id=183190

  • [Solved] Kernel 2.6.24 and Benq DVD Drive

    Hello,
    I have a Benq DW1650 DVD burner and it has disappeared since the 2.6.24 kernel came out.  I have verified by reverting to 2.6.23 and it reappears. 
    dmesg shows hundreds of these:
    hdc: status error: error=0x00 { }
    ide: failed opcode was: unknown
    hdc: drive not ready for command
    hdc: status error: status=0x59 { DriveReady SeekComplete DataRequest Error }
    There is a workaround that has brought it back for me on the Ubuntu forums:
    https://bugs.launchpad.net/ubuntu/+sour … bug/182996
    It is basically a reset and then reactivate DMA:
    hdparm -w /dev/hdc
    hdparm -d1 /dev/hdc
    It seems to only be a problem for some drives.
    Last edited by colnago (2008-02-15 23:08:46)

    Try to switch over to pata (the new ide drivers) and see if it helps you.
    Info:
    http://wiki.archlinux.org/index.php/Con … able_hooks and
    http://archlinux.org/news/272/
    The biggest caveat with switching over to pata is the change of the device names from hdX to sdY.

  • [Solved] Kernel 2.6.28 and asus_acpi

    There's something wrong with asus_acpi module since when I boot my machine I get this message error:
    FATAL: Error inserting asus_acpi (/lib/modules/2.6.28-ARCH/kernel/drivers/acpi/asus_acpi.ko): No such device
    I've searched for asus_acpi.ko and it's just located in that folder, so it must be something else.
    some additional info from rc.conf:
    MODULES=(r8169 iwl3945 fuse acpi_cpufreq cpufreq_ondemand asus_acpi)
    DAEMONS=(syslog-ng @net-profiles !portmap @hal @oss @netfs @crond @cpufreq @laptop-mode)
    Last edited by uastasi (2009-01-16 11:19:08)

    alessandro_ufms wrote:Try replace asus_acpi by asus_laptop.
    I thought that asus-laptop was legacy, but I've just discovered it's the opposite. Thank you!

  • [SOLVED] Kernel Panic - caps lock and scroll lock flashing

    So I just spent a whole bunch of $$$ on a new desktop, and a couple of hours putting it all together, now I can't get anything except kernel panics when booting the Arch install CD
    Hardware:
    Core 2 Quad Q8400
    Gigabyte EP43-UD3L
    8gb RAM
    2 x Seagate SATA 160gb
    2 x Seagate SATA 1tb
    So far I've tried:
    - Arch ISO 2008.06 and 2009.02
    - Fail Safe Defaults in the BIOS
    - 'noapic' boot option
    - HPET in 32 and 64 bit mode
    The strange thing is that the panic comes at various stages - sometimes before the init scripts start, sometimes after, and also during boot it complains about errors with fd0 - except there is no floppy drive.
    Any ideas folks?
    Last edited by fukawi2 (2009-10-20 10:24:54)

    Urgh, appears to be bad RAM... Running memtest and switching sticks in and out only shows errors with one particular RAM stick installed. I'll leave this stick out and try installing Arch again once the current memtest pass is finished.
    I'd have expected better from Patriot!
    Last edited by fukawi2 (2009-10-20 04:50:34)

  • Airport Extreme 802.11ac and USB disk failure

    hi,
    Had an Airport Extreme 5th gen with a USB disk attached for over a year of which my Mac was using Time Machine and creating backups no problem, didnt skip a beat.
    Just bought a new Airport Extreme 802.11ac, attached the same USB disk and Time Machine works once or twice then fails saying it cant find the disk. True enough if I open finder and try and find the disk its not listed.
    Opening the airport utility it shows the disk attached. If I reboot the Airport Extreme the disk shows up again in finder for a short period of time.
    Looks like they released a firmware update 7.7.1 which was supposed to fix this but it seems in my case it hasnt. Even factory reset after the update but no joy.
    Normal wireless activities like internet access etc are fine.
    Not sure if anyone else has experienced this yet? If not I guess ill try a non self powered disk or something, either that my AE is faulty.
    thanks
    matt

    My experience with the 802.11ac extreme with 7.7.1 firmware suggests Time Machine doesn't work when the name assigned to the device (not the SSID) contains a period, which the out-of-the-box name does.
    Out-of-the-box, with the default device name still assigned, I could not get Time Machine to recognize the remote disk on multiple 10.8.4 Macs until I created an empty folder on it. Yet once registered with Time Machine, backups never occurred to the disk--TM status was always "waiting". The server name displayed in TM had the period in "802.11ac" escaped with a backslash (i.e., "802\.11ac").
    I renamed the extreme, but used a name that still contained a period. The same difficulty was encountered registering the disk with TM. Once registered, TM status for the disk was still "waiting".The server name again had the period escaped with a backslash.
    Finally, I just removed the period from the name. Registering the disk with TM then occurred normally and backup began immediately.
    (In an earlier case with the 7.7.0 firmware, I had no trouble registering and backing up to an 802.11ac Time Capsule that had previously been given a name without a period in it.)

  • [SOLVED]Different versions of installed and loaded kernel

    After a system upgrade I have issues booting.
    Kernel was updated from 3.8.8-2 to 3.8.10-1.
    systemctl --failed says slim, systemd-modules-load and ufw services failed. I'm able to log in and I can see that loaded kernel is 3.8.8, but pacman says the installed one is 3.8.10.
    Upgrade process didn't generate any error message, pacman.log also shows that image generations were successful and they were created on /boot (separate partition).
    It's a laptop, I have UEFI mode disabled in BIOS. Linux-lts is installed, too, same problem.
    Any idea why is this issue and how can be solved? Thanks. I didn't find a solution among the topics, however I saw similar issues.
    PS: systemctl's output doesn't break long lines, just shortens them. Any way to make them readable?
    Edit:
    ls-l /boot shows that the files are old, so they were not updated during the system update.
    Last edited by siriusb (2013-04-30 14:52:33)

    Exactly.
    I have files in /lib/modules/3.8.10-1-ARCH
    I mounted my root partition from liveCD and /boot is empty.
    It's LUKS encryptied partition in case it counts.
    ====================================
    Update:
    First I downgraded to 3.8.8 and I was able to boot with it. Then I had to remove manually some files. Seemed that virtualbox-host-modules was corrupted, no package owned the files in /lib/modules/extramodules-3.8. After I reinstalled it and removed netcfg as well (using networkmanager for the laptop anyway) I managed to update kernel, mkinitcpio run successfully and created the images.
    I still don't understand why the image files weren't updated or why there wasn't any error message...
    Last edited by siriusb (2013-04-30 14:54:09)

  • [Solved] Kernel BUG at include/linux/netdevice.h:501, and sky2?

    So, ever since a certain point in time between kernel 3.11.x and now (3.12.5-1), I have been getting this strangely inconsistent error on bootup. I would estimate that about 3 out of every 4 reboots leads to this error message, and the bootup process terminates in a black screen and what (appears) to be a system hang. However I CTL+ALT+F2, log in, and I output dmesg to a boot log, and everything my eyes have seen is now your visual property as well. The remaining 25% of my reboots patches through and boots directly to my window manager successfully. Now the output seems to be screaming to me "sky2 is the culprit", as EIP seems to be pointing in its general direction at the time of error.  However, I am more inclined to believe that my hardware's interaction with the driver is more likely to be responsible. If sky2 was actually a real problem, I doubt I would be the only one complaining about this. Nonetheless, I am quite vexed, and would greatly appreciate anbody's help here. Much appreciated, and perhaps I can provide you with some other (perhaps) useful information:
    MotherBoard: Asus P5KE (with suspect ethernet controller built in)
    Ethernet Controller: Marvell Technology Group Ltd. 88E8056 PCI-E Gigabit Ethernet Controller (rev 12)
    Kernel: 3.12.5-1
    CPU: Dual core 2.33 ghz
    RAM: 2GB (recently has not passed a memtest)
    [ 9.699863] sky2: driver version 1.30
    [ 9.699960] sky2 0000:02:00.0: Yukon-2 EC Ultra chip revision 2
    [ 9.700020] sky2 0000:02:00.0: irq 45 for MSI/MSI-X
    [ 9.700498] ------------[ cut here ]------------
    [ 9.703391] kernel BUG at include/linux/netdevice.h:501!
    [ 9.703391] invalid opcode: 0000 [#1] PREEMPT SMP
    [ 9.703391] Modules linked in: sky2(+) i2c_core snd_hda_codec_analog acpi_cpufreq processor button snd_hda_intel(+) snd_hda_codec snd_hwdep snd_pcm snd_page_alloc snd_timer snd soundcore shpchp intel_agp asus_atk0110 intel_gtt agpgart ext4 crc16 mbcache jbd2 sd_mod hid_logitech ff_memless usbhid hid firewire_ohci ahci libahci firewire_core crc_itu_t libata scsi_mod ehci_pci uhci_hcd ehci_hcd usbcore usb_common
    [ 9.703391] CPU: 0 PID: 155 Comm: dhcpcd Not tainted 3.12.5-1-ARCH #1
    [ 9.703391] Hardware name: System manufacturer P5K-E/P5K-E, BIOS 0906 12/10/2007
    [ 9.703391] task: f562f4d0 ti: f50fa000 task.ti: f50fa000
    [ 9.703391] EIP: 0060:[<fa99372f>] EFLAGS: 00010246 CPU: 0
    [ 9.703391] EIP is at sky2_setup_irq+0x9f/0xb0 [sky2]
    [ 9.703391] EAX: 00000000 EBX: f51c8100 ECX: 00000089 EDX: 00000000
    [ 9.703391] ESI: f5dfb000 EDI: 00000000 EBP: f50fbdf0 ESP: f50fbdd8
    [ 9.703391] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
    [ 9.830016] sky2 0000:02:00.0 eth0: addr 00:1b:fc:61:1c:91
    [ 9.830018] CR0: 80050033 CR2: f9133760 CR3: 356f4000 CR4: 000007d0
    [ 9.830018] Stack:
    [ 9.830018] 00000000 f51b1000 f51c8100 f51b1000 f51c8100 00000000 f50fbe2c fa996169
    [ 9.830018] 00000020 00000000 c1007210 00000400 f51b15b4 00000000 f50fbe1c c1007210
    [ 9.830018] f51b1500 000000e0 f51b1000 fa999f40 00000000 f50fbe50 c135ed4b 00000246
    [ 9.830018] Call Trace:
    [ 9.830018] [<fa996169>] sky2_open+0x309/0x360 [sky2]
    [ 9.830018] [<c1007210>] ? via_no_dac+0x40/0x40
    [ 9.830018] [<c1007210>] ? via_no_dac+0x40/0x40
    [ 9.830018] [<c135ed4b>] __dev_open+0x9b/0x120
    [ 9.830018] [<c1431cbe>] ? _raw_spin_unlock_bh+0x1e/0x20
    [ 9.830018] [<c135efd9>] __dev_change_flags+0x89/0x150
    [ 9.830018] [<c135f148>] dev_change_flags+0x18/0x50
    [ 9.830018] [<c13bb8e0>] devinet_ioctl+0x5d0/0x6e0
    [ 9.830018] [<c13bcced>] inet_ioctl+0x6d/0xa0
    [ 9.830018] [<c1346094>] sock_ioctl+0x114/0x250
    [ 9.830018] [<c1345f80>] ? sock_fasync+0x80/0x80
    [ 9.830018] [<c1166416>] do_vfs_ioctl+0x2e6/0x4e0
    [ 9.830018] [<c1435127>] ? __do_page_fault+0x2e7/0x580
    [ 9.830018] [<c11576f6>] ? __fput+0x106/0x1f0
    [ 9.830018] [<c116668f>] SyS_ioctl+0x7f/0x90
    [ 9.830018] [<c143874d>] sysenter_do_call+0x12/0x28
    [ 9.830018] Code: 8d 74 26 00 8b 86 d8 01 00 00 83 c6 64 89 34 24 c7 44 24 04 91 97 99 fa 89 44 24 08 e8 fb d1 95 c6 89 f8 83 c4 0c 5b 5e 5f 5d c3 <0f> 0b eb 0d 90 90 90 90 90 90 90 90 90 90 90 90 90 55 89 e5 53
    [ 9.830018] EIP: [<fa99372f>] sky2_setup_irq+0x9f/0xb0 [sky2] SS:ESP 0068:f50fbdd8
    [ 10.114977] ---[ end trace 6853181d11e5e45a ]---
    [ 10.121597] [drm] Initialized drm 1.1.0 20060810
    [ 10.598013] nvidia: module license 'NVIDIA' taints kernel.
    [ 11.366133] ACPI Warning: 0x00000400-0x0000041f SystemIO conflicts with Region \SMRG 1 (20130725/utaddress-251)
    [ 11.372053] input: PC Speaker as /devices/platform/pcspkr/input/input15
    [ 11.389363] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 11.436774] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input18
    [ 11.449056] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input17
    [ 11.461240] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
    [ 11.473379] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
    [ 11.485835] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=none
    [ 11.498462] [drm] Initialized nvidia-drm 0.0.0 20130102 for 0000:01:00.0 on minor 0
    [ 11.510829] NVRM: loading NVIDIA UNIX x86 Kernel Module 331.20 Wed Oct 30 16:59:55 PDT 2013
    [ 11.523659] iTCO_vendor_support: vendor-support=0
    [ 11.539930] gpio_ich: GPIO from 195 to 255 on gpio_ich
    [ 11.714329] microcode: CPU0 sig=0x6fb, pf=0x1, revision=0xb6
    [ 11.727418] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
    [ 11.740101] iTCO_wdt: Found a ICH9R TCO device (Version=2, TCOBASE=0x0860)
    [ 11.753434] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 11.767642] microcode: CPU1 sig=0x6fb, pf=0x1, revision=0xb6
    [ 11.781056] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 12.042064] coretemp coretemp.0: Using relative temperature scale!
    [ 12.055598] coretemp coretemp.0: Using relative temperature scale!
    [ 14.944832] systemd-journald[110]: File /var/log/journal/2e32c4787d3945018666d6257394d8b8/user-1000.journal corrupted or uncleanly shut down, renaming and replacing.
    [ 18.610023] nvidia 0000:01:00.0: irq 46 for MSI/MSI-X
    [ 19.320584] NVRM: Your system is not currently configured to drive a VGA console
    [ 19.320590] NVRM: on the primary VGA device. The NVIDIA Linux graphics driver
    [ 19.320593] NVRM: requires the use of a text-mode VGA console. Use of other console
    [ 19.320595] NVRM: drivers including, but not limited to, vesafb, may result in
    [ 19.320597] NVRM: corruption and stability problems, and is not supported.
    Last edited by eazar001 (2014-01-24 22:02:50)

    UPDATE: So I ran some low level troubleshooting and decided to test out the linux-lts (3.10.24-1-lts) kernel. No problems at all. Everything works fine with my ethernet adapter and the sky2 module. It just appears that something occurred in the newer kernels to break the interface for at least one Marvell adapter. This solution works for now, but I suppose I should file a bug report eventually. In the meantime, any insight is welcome.

  • [solved] kernel-2.6.20.1-1 and ati-fglrx

    Hi,
    I updated to kernel26-2.6.20.1-1 and reinstalled the ati-fglrx package.
    If I try to modprobe the fglrx module I get this error
    FATAL: Error inserting fglrx (/lib/modules/2.6.20-ARCH/video/fglrx.ko): Invalid module format
    Seems that the current ati-fglrx package was compiled against kernel-2.6.20 and not against the latest kernel (2.6.20.1) cause with the 2.6.20 kernel package it worked...
    Last edited by SiD (2007-03-02 10:19:12)

    filename: /lib/modules/2.6.20-ARCH/video/fglrx.ko
    license: Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY
    description: ATI Fire GL
    author: Fire GL - ATI Research GmbH, Germany
    depends: agpgart
    vermagic: 2.6.20-ARCH SMP preempt mod_unload 686
    parm: firegl:charp
    and this with the selfcompiled fglrx modul
    filename: /lib/modules/2.6.20-ARCH/video/fglrx.ko
    license: Proprietary. (C) 2002 - ATI Technologies, Starnberg, GERMANY
    description: ATI Fire GL
    author: Fire GL - ATI Research GmbH, Germany
    depends: agpgart
    vermagic: 2.6.20-ARCH SMP preempt mod_unload PENTIUMM
    parm: firegl:charp
    hmm, I compiled the kernel with abs and changed the config (speedstepping does not work correctly with the stock config).
    I changed also the CPU-type to PentiumM. I think that's the problem, isn't it?
    p.s.
    I have another problem with my printer.
    http://bbs.archlinux.org/viewtopic.php?id=30452
    Is it possible that the self compiled kernel is the reason for that problem?

  • Kernel Panic boot camp and parallel

    Hello,
    I've installed boot camp and run windows since the last couple of weeks and it runs flawlessly. However, when I tried to create a virtual machine via Parallel and set my boot camp partition as VM's partition, my Macbook crashed.
    Now I cannot even get into MacOS X since it always returned a kernel panic message (Please restart the computer...). I already tried every way imaginable (restart it, press X, reset PRAM, etc), I can't even boot to my own install CD!
    Here's the error log (BTW, I'm currently on XP running via boot camp, it seems that I can still access my mac partition via macdrive):
    Host Name: macOZi
    Date/Time: 2006-12-28 11:27:49.205 +0700
    OS Version: 10.4.8 (Build 8N1150)
    Report Version: 4
    Command: WindowServer
    Path: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    Parent: launchd [1]
    Version: ??? (???)
    PID: 56
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00068fb0
    Thread 0 Crashed:
    0 <<00000000>> 0xffff0a2f __memcpy + 655 (cpu_capabilities.h:228)
    1 com.apple.CoreGraphics 0x906d1b0e addEventsToTap + 841
    2 com.apple.CoreGraphics 0x90403fb9 CGXFilterEvent + 83
    3 com.apple.CoreGraphics 0x90403cf3 CGXGetNextEvent + 145
    4 com.apple.CoreGraphics 0x90403c29 CGXRunOneEventPass + 49
    5 com.apple.CoreGraphics 0x90402744 CGXRunOneServicesPass + 107
    6 com.apple.CoreGraphics 0x9040d32a CGXServerLoop + 150
    7 com.apple.CoreGraphics 0x903e1a9d CGXServer + 1164
    8 WindowServer 0x00001fa8 main + 24
    9 WindowServer 0x00001f7e _start + 216
    10 WindowServer 0x00001ea5 start + 41
    Thread 1:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreGraphics 0x903f193d eventThread + 3343
    2 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90024427 semaphorewait_signaltrap + 7
    1 com.apple.CoreGraphics 0x906dd348 layerblitthread + 228
    2 com.apple.CoreGraphics 0x906dd872 layerblit_asyncthread + 94
    3 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.unsanity.ape 0xc0005f6d _apeinternal + 9907
    2 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffff09f5 ebx: 0x906d17d3 ecx: 0x0000002c edx: 0xffffff80
    edi: 0x00069030 esi: 0xbffff574 ebp: 0xbffff448 esp: 0xbffff440
    ss: 0x0000001f efl: 0x00010283 eip: 0xffff0a2f cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x1fff WindowServer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    0x72000 - 0x74fff com.apple.driver.AppleIntelGMA950GA 1.4.42 (4.4.2) /System/Library/Extensions/AppleIntelGMA950GA.plugin/Contents/MacOS/AppleIntelG MA950GA
    0x24a000 - 0x2a3fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.42 (4.4.2) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x605000 - 0x75efff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x8fe00000 - 0x8fe49fff dyld 46.9 /usr/lib/dyld
    0x90000000 - 0x9016ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901bf000 - 0x901c1fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c3000 - 0x90200fff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90227000 - 0x902fdfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031d000 - 0x90772fff com.apple.CoreGraphics 1.258.51 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90809000 - 0x908d1fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9090f000 - 0x9090ffff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90911000 - 0x90a04fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a54000 - 0x90ad3fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90afc000 - 0x90b60fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bcf000 - 0x90bd6fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bdb000 - 0x90c4efff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c63000 - 0x90c75fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7b000 - 0x90f21fff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f64000 - 0x90fccfff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91005000 - 0x91043fff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91056000 - 0x91066fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91071000 - 0x910f0fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112a000 - 0x91148fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91154000 - 0x91162fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91165000 - 0x91304fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91402000 - 0x9140afff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91411000 - 0x91437fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91449000 - 0x91450fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9151b000 - 0x9151bfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9151d000 - 0x91549fff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155c000 - 0x91630fff com.apple.ColorSync 4.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166b000 - 0x916defff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170c000 - 0x917b5fff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917db000 - 0x91826fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91845000 - 0x9185bfff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91867000 - 0x91882fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9188d000 - 0x918cafff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918de000 - 0x918eafff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f1000 - 0x9192cfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193e000 - 0x919f0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a36000 - 0x91a4cfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a51000 - 0x91a6ffff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a74000 - 0x91ad2fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae4000 - 0x91ae8fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91aea000 - 0x91b67fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b6b000 - 0x91ba8fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bae000 - 0x91bc8fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bcd000 - 0x91bcffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bd1000 - 0x91bd1fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bd3000 - 0x91c61fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c68000 - 0x91c68fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91c6a000 - 0x91cc3fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ccc000 - 0x91cf0fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cf8000 - 0x92101fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9213b000 - 0x924effff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94099000 - 0x940d3fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x969cf000 - 0x96aa5fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xc0000000 - 0xc000efff com.unsanity.ape 2.0.2 /Library/Frameworks/ApplicationEnhancer.framework/ApplicationEnhancer
    Host Name: macOZi
    Date/Time: 2007-01-23 19:31:22.690 +0700
    OS Version: 10.4.8 (Build 8N1150)
    Report Version: 4
    Command: WindowServer
    Path: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    Parent: launchd [1]
    Version: ??? (???)
    PID: 67
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00040f64
    Thread 0 Crashed:
    0 <<00000000>> 0xffff07ff __memcpy + 95 (cpu_capabilities.h:228)
    1 com.apple.CoreGraphics 0x906d1b0e addEventsToTap + 841
    2 com.apple.CoreGraphics 0x90403fb9 CGXFilterEvent + 83
    3 com.apple.CoreGraphics 0x90403cf3 CGXGetNextEvent + 145
    4 com.apple.CoreGraphics 0x90403c29 CGXRunOneEventPass + 49
    5 com.apple.CoreGraphics 0x90402744 CGXRunOneServicesPass + 107
    6 com.apple.CoreGraphics 0x9040d32a CGXServerLoop + 150
    7 com.apple.CoreGraphics 0x903e1a9d CGXServer + 1164
    8 WindowServer 0x00001fa8 main + 24
    9 WindowServer 0x00001f7e _start + 216
    10 WindowServer 0x00001ea5 start + 41
    Thread 1:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.apple.CoreGraphics 0x903f193d eventThread + 3343
    2 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90024427 semaphorewait_signaltrap + 7
    1 com.apple.CoreGraphics 0x906dd348 layerblitthread + 228
    2 com.apple.CoreGraphics 0x906dd872 layerblit_asyncthread + 94
    3 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009857 machmsgtrap + 7
    1 com.unsanity.ape 0xc0005f6d _apeinternal + 9907
    2 libSystem.B.dylib 0x90023d87 pthreadbody + 84
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xffff0702 ebx: 0x906d17d3 ecx: 0x000000a0 edx: 0x0000000c
    edi: 0x00040f64 esi: 0xbffff4f5 ebp: 0xbffff448 esp: 0xbffff440
    ss: 0x0000001f efl: 0x00010286 eip: 0xffff07ff cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x1fff WindowServer /System/Library/Frameworks/ApplicationServices.framework/Frameworks/CoreGraphic s.framework/Resources/WindowServer
    0x72000 - 0x74fff com.apple.driver.AppleIntelGMA950GA 1.4.42 (4.4.2) /System/Library/Extensions/AppleIntelGMA950GA.plugin/Contents/MacOS/AppleIntelG MA950GA
    0x24a000 - 0x2a3fff com.apple.driver.AppleIntelGMA950GLDriver 1.4.42 (4.4.2) /System/Library/Extensions/AppleIntelGMA950GLDriver.bundle/Contents/MacOS/Apple IntelGMA950GLDriver
    0x605000 - 0x75efff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x8fe00000 - 0x8fe49fff dyld 46.9 /usr/lib/dyld
    0x90000000 - 0x9016ffff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901bf000 - 0x901c1fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c3000 - 0x90200fff com.apple.CoreText 1.1.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90227000 - 0x902fdfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031d000 - 0x90772fff com.apple.CoreGraphics 1.258.51 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x90809000 - 0x908d1fff com.apple.CoreFoundation 6.4.6 (368.27) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9090f000 - 0x9090ffff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90911000 - 0x90a04fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a54000 - 0x90ad3fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90afc000 - 0x90b60fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bcf000 - 0x90bd6fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bdb000 - 0x90c4efff com.apple.framework.IOKit 1.4.6 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c63000 - 0x90c75fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7b000 - 0x90f21fff com.apple.CoreServices.CarbonCore 682.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f64000 - 0x90fccfff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91005000 - 0x91043fff com.apple.CFNetwork 129.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91056000 - 0x91066fff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91071000 - 0x910f0fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112a000 - 0x91148fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91154000 - 0x91162fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91165000 - 0x91304fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91402000 - 0x9140afff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91411000 - 0x91437fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91449000 - 0x91450fff libbsm.dylib /usr/lib/libbsm.dylib
    0x9151b000 - 0x9151bfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9151d000 - 0x91549fff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x9155c000 - 0x91630fff com.apple.ColorSync 4.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166b000 - 0x916defff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9170c000 - 0x917b5fff com.apple.QD 3.10.21 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917db000 - 0x91826fff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91845000 - 0x9185bfff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91867000 - 0x91882fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9188d000 - 0x918cafff com.apple.LaunchServices 181 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918de000 - 0x918eafff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f1000 - 0x9192cfff com.apple.ImageIO.framework 1.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9193e000 - 0x919f0fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a36000 - 0x91a4cfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a51000 - 0x91a6ffff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a74000 - 0x91ad2fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91ae4000 - 0x91ae8fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91aea000 - 0x91b67fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b6b000 - 0x91ba8fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bae000 - 0x91bc8fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91bcd000 - 0x91bcffff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91bd1000 - 0x91bd1fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91bd3000 - 0x91c61fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91c68000 - 0x91c68fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91c6a000 - 0x91cc3fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ccc000 - 0x91cf0fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91cf8000 - 0x92101fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9213b000 - 0x924effff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94099000 - 0x940d3fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x969cf000 - 0x96aa5fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xc0000000 - 0xc000efff com.unsanity.ape 2.0.2 /Library/Frameworks/ApplicationEnhancer.framework/ApplicationEnhancer
    Macbook Black Core2Duo   Mac OS X (10.4.8)  

    Unfortunately, what you did not post was the panic log. Open Console and locate the panic.log. Post the log entry for the kernel panic.
    I suggest you might try this:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. Then select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now shutdown the computer for a couple of minutes and then restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    Also visit The XLab FAQs and read the FAQ on diagnosing and solving kernel panics.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • How to write usb touchscreen driver kext ?

    I want to write a usb touchscreen kext for usb touch screen .
    I have read the Kernel Extension Programming Topics and the I/O Kit Fundamentals etc,
    My question is,
    1 . how to get the input report messages from touch screen ?
    2 . how to post the coordinate info to system ?
    I have no idea, anybody help?

    I built the touchscreen.
    The details:
    System:   OS X 10.9.1 (13B42)
    USB Infrared Touch Screen:
    Low Speed device @ 3 (0x14400000): .............................................   Composite device from unknown vendor
        Port Information:   0x101a
               Not Captive
               Attached to Root Hub
               External Device
               Connected
               Enabled
               Connected to External Port
        Number Of Endpoints (includes EP0):  
            Total Endpoints for Configuration 1 (current):   2
        Device Descriptor  
            Descriptor Version Number:   0x0100
            Device Class:   0   (Composite)
            Device Subclass:   0
            Device Protocol:   0
            Device MaxPacketSize:   8
            Device VendorID/ProductID:   0x255E/0x0001   (unknown vendor)
            Device Version Number:   0x0100
            Number of Configurations:   1
            Manufacturer String:   0 (none)
            Product String:   0 (none)
            Serial Number String:   0 (none)
        Configuration Descriptor (current config)  
            Length (and contents):   25
                Raw Descriptor (hex)    0000: 09 02 19 00 01 01 00 A0  FA 09 04 00 00 01 FF 00 
                Raw Descriptor (hex)    0010: 00 00 07 05 81 03 08 00  0A
            Number of Interfaces:   1
            Configuration Value:   1
            Attributes:   0xA0 (bus-powered, remote wakeup)
            MaxPower:   500 mA
            Interface #0 - Vendor-specific  
                Alternate Setting   0
                Number of Endpoints   1
                Interface Class:   255   (Vendor-specific)
                Interface Subclass;   0   (Vendor-specific)
                Interface Protocol:   0
                Endpoint 0x81 - Interrupt Input  
                    Address:   0x81  (IN)
                    Attributes:   0x03  (Interrupt)
                    Max Packet Size:   8
                    Polling Interval:   10 ms
    My test code source.
    As the details, my infrared touch screen is not a HID USB device, and report interrupt input event. So, I need to write a custom USB driver for it. And then, I decided to write a USB driver kext.
    According to the Mac Developer Library (I/O Kit Fundamentals),I see the Handling Events.To put the role of the work loop in perspective, it helps first to consider the event sources that it is designed for. In the I/O Kit there are five broad categories of asynchronous events:
    Interrupt events—indirect (secondary) interrupts originating from devices
    Timer events—events delivered periodically by timers, such as timeouts
    I/O commands—I/O requests issued by driver clients to their providers
    Power events—typically generated through calls down the driver stack
    Structural events—typically events involving the I/O Registry
    I set up their work loops, event sources, and event handlers in their start function.But not works.So, I can't get the data from USB touch screen device.
    My questions:
    Is there other ways to receive the report data from USB device in os x USB kext ?
    How to dispatch the coordinate to system, when get the report data ?

  • A question about grub and USB

    Hi All
    I have a quick question about grub and USB that I can't quite find the answer to by searching.   Most of the FAQs discuss booting a full linux dristribution from USB. My situation is this.  I am getting a new computer with two drives, the second will be arch and the first will be Vista (for my wife).  I want the computer to boot the same way that my wife's machine boots at work so I don't want to install grub on the MBR.  So, is there a way to have all of the grub config files and kernels installed on the second drive and simply install to grub boot loader to the MBR of a USB stick?  My goal would be to simply plug the USB stick into the new PC and boot arch from the second drive. 
    Thanks
    Kev

    i cant say for hp's
    havent worked on any in a while
    recent machines have been coupleof dell's , vaio & emachine
    which dells do offer it at least the ones i tried , my laptop does(dell)
    all home pc's are built by me which do offer to boot individual drives
    what hp you getting it may tell in specs
    are both discs sata? if so it might not offer this option with 2 drives of same interface
    check your power supply alot of these preconfigured machines put cheap under reated power supplies in there
    & will burn your motherboard i just replaced PS(250 watt) & mobo(845gvsr) in an emachines <cheap stuff<
    i hope you researched the pc before buying ie : mobo, power supply are the biggest concerns
    i find it much more benificial to build my own machine gives me peace at mind. the cost is sometimes more in $ but not always , your biggest expense is time researching hardware
    if you live in usa the best places to start looking are bensbargains.net & pricewatch.com
    i am not affiliated with either & niether sell the hardware they are just advertisers a place to buy
    for costomized machines that i would trust is unitedmicro.com theyll asemble & test before shipping
    i have gotten 2 machines so far from them with NO PROBLEMS with hardware (knock knock)
    you may want to consider this in your next venture for pc

  • Windows 8.1 64 bit and USB 3.0 connection Error

    What a Nightmare to me after I have purchased my Probook 470 G2 with window 8.1 64bit and USB 3.0.  after my setup for my new laptop, there are 2 issues i am facing now:
    1. my USB 3.0 external drive can work properly with my old window 7 laptop with USB 3.0 input. However,  my USB 3.0 exernal drive can not function proplery when i try to plug in to my new laptop with window 8.1 64bit. it show me that it sometimes disconnect, sometimes connect frequently and I can not remove the drive safely
    2. Once the laptop set up, there is 3 partition from HP, which is windows (c, recovery (D and HP tools (E. as i want to allocate more space fo save my old photo, HP technician has taught me to compress and release some space(around 150GB) from my C: . I can use the new drive successfully. However it seems i can not have window update manually so I am concerned if this is the mian point to create this issue.
    Any HP technicians can help here?
    This question was solved.
    View Solution.

    No. There is no need to go to a command line and there aren't any DOS commands that will help. 
    You should consider using Windows system restore to return your notebook's operating system to a date before this issue began. Choose a restore point dated before the problem surfaced.Use the search charm and type in restore. Choose create a restore point. The System Properties window will appear. Click on System Restore as seen in the following image.
    Make certain the show me more restore points option has a checkmark in the box. Choose the restore point that you want and then click on next. This is safe and reversible.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

Maybe you are looking for

  • Can not open Mail!

    Every time I click on my mail it gives me the message "Mail cannot update our mailboxes because your home directory is full. You must free up space in your home folder before using Mail. Delete unneeded documents or move documents to another volume."

  • ITunes is not downloading more than one Podcast at a time.

    Since two updates ago, when I select multiple podcasts and update them to download the latest episodes, iTunes will only download one at a time.  It will show multiple in the "Downloads" window, but it will only actually download them one at a time. 

  • PNG 8-bit Indexed With Alpha

    Hello, I need to write PNG images in 8-bit indexed mode ( Color Type 3... ?) with an alpha channel. I believe that the only way to do this is by putting the Alpha (or Matte) information into a PNG tRNS Chunk. I have heard that Fireworks can do this,

  • Problem in VAT Calculation @ the time of MIRO

    Dear All, We are using the Tax Procedure TAXINN. When we create a LIV document with ref to a PO using the transaction MIRO & when I check the calculate tax button, the tax amount which is displayed in the Basic data is more than the amount which is d

  • List price for Products

    Hi All, is anyone aware of the List price table which is maintained for products? Regards Sidd