Vojtech Pavlik posted a useful list of questions and answers to the lkml, focusing on input device drivers and the 2.6 kernel. Primarily focusing on the mouse and keyboard, the document suggests what you should do when things aren't working, and helps explain the meaning of error messages you might be seeing in syslog.
If you recently upgraded to the 2.6 kernel [forum], and you're having problems with your input devices, this is a must read. Follow the link at the end of the article to view the continuing discussion about this document.
From: Vojtech Pavlik [email blocked] To: linux-kernel, [email blocked] Subject: 2.6 input drivers FAQ Date: Sun, 1 Feb 2004 11:06:44 +0100 Common problems and solutions with 2.6 input drivers: Problems: ~~~~~~~~~ How do I get a list of the input devices in my system? How can I check that the input drivers have found my devices correctly? Solution: ~~~~~~~~~ 'cat /proc/bus/input/devices' and 'dmesg' are your friends here. The first lists all devices known to the input core with their properties, and the latter shows the messages from boot. There you can spot any errors that happened in the probing process. Problems: ~~~~~~~~~ I'm getting double clicks when I click only once. My scroll wheel scrolls by two lines/screens instead of one. My mouse moves too fast. Solution: ~~~~~~~~~ Check your XFree86 config file. You probably have two "mouse" entries there, one pointing to /dev/psaux and the other to /dev/input/mice, so that you can get both your PS/2 and USB mouse working on 2.4. 2.6 uses the input subsystem for both PS2 and USB, and thus both devices will report events from both mice, resulting in doubled events. Remove either the /dev/psaux or /dev/input/mice entry, depending what suits you better for 2.4 compatibility should you ever need go back to 2.4. Problems: ~~~~~~~~~ My mouse wheel is not working in X. My Logitech (MousManPS/2) mouse stopped working in X. My extra buttons don't work in X. Solution: ~~~~~~~~~ Check your XFree86 config file. Make sure the mouse protocol is set to "ExplorerPS/2", as that is what the 2.6 kernel exports to applications regardless of the real mouse type. Make sure you have an "ZAxisMapping 4 5" entry. Make sure you have an entry for remapping the extra buttons above 5. Problem: ~~~~~~~~ Kernel reports: atkbd.c: Unknown key released (translated set 2, code 0x7a on isa0060/serio0). atkbd.c: This is an XFree86 bug. It shouldn't access hardware directly. Solution: ~~~~~~~~~ Well, the kernel means what it says. XFree86 boldly goes and accesses the keyboard controller registers when it starts up. This is a bad thing to do, as it can conflict with the kernel using these registers at the same time. The kernel spots this and complains, and in most cases is not affected by the problem. So, unless you are an XFree86 developer and can fix X, ignore this message. Problem: ~~~~~~~~ I get the message above, but I'm not running X. Solution: ~~~~~~~~~ Other applications (for example kbdrate) may also access the keyboard controller. This will trigger the same message. Fix your application / utility or ignore the message. Problem: ~~~~~~~~ My multimedia keys don't work at all and instead emit a message like this: atkbd.c: Unknown key pressed (translated set 2, code 0x83 on isa0060/serio0). atkbd.c: Use 'setkeycodes e003 <keycode>' to make it known. atkbd.c: Unknown key released (translated set 2, code 0x83 on isa0060/serio0). atkbd.c: Use 'setkeycodes e003 <keycode>' to make it known. Solution: ~~~~~~~~~ Do what the kernel says. Use the setkeycodes utility with the suggested scncode value. For the keycode value, look into /usr/include/linux/input.h, where is a list of all defined Linux keycodes. Then you can verify that the keyboard works correctly by using the evtest program: evtest /dev/input/event# Where # is the number of the input device that is your keyboard. Problem: ~~~~~~~~ setkeycodes refuses to work with keycodes above 127. Solution: ~~~~~~~~~ Get a recent version of kbd-utils, and recompile on a 2.6 kernel. Problem: ~~~~~~~~ Ok, evtest shows everything correctly, but I get incorrect keysyms assigned to these keys in XFree86. Solution: ~~~~~~~~~ While the 2.6 kernel tries to use the "standard" scancodes as much as possible, it is not posible for all keys. A good solution is to modify the XKB keyboard definition to match the scancodes one can obtain from 'showkeys -s', after the above problem is solved and the keys work in evtest. An better solution would be to write a kernel-2.6 keyboard definition, as the scancodes are the same for every type of keyboard, independend of the hardware. This is called hardware abstraction. A perfect solution would be to get X to use the event protocol. If you're an XFree86 developer, you might consider this. Problem: ~~~~~~~~ My PC Speaker is not beeping anymore in 2.6. Solution: ~~~~~~~~~ Enable it in the kernel config. Go to Drivers->Input->Misc->PC Speaker. Problem: ~~~~~~~~ My Synaptics touchpad lost the ability of tap-to-click, scroll, etc. Solution: ~~~~~~~~~ The easy solution is to pass psmouse.proto=imps on the kernel command line, or proto=imps on the psmouse module command line. This will restore 2.4 behavior. A better solution is to download the new XFree86 Synaptics driver that cooperates with the input drivers nicely, from: http://w1.894.telia.com/~u89404340/touchpad/index.html This will allow you to configure the behavior of the touchpad in detail and give you all the features it can do, including palm detection and similar. In case you want to get this running at the console, too, an updated GPM package can be found here: http://www.geocities.com/dt_or/gpm/gpm.html Problem: ~~~~~~~~ When I switch my KVM, my PS/2 mouse goes all crazy. Solution: ~~~~~~~~~ Use psmouse.proto=bare on the kernel command line, or proto=bare on the psmouse module command line. Problem: ~~~~~~~~ I'm getting these: psmouse.c: PS/2 mouse at serio0 lost synchronization, throwing 2 bytes away. Solution: ~~~~~~~~~ Check your mouse cable. If this only happens when you move your mouse in a certain way, fix the mouse cable or replace the mouse. Check your kernel and harddisk settings. This message can also happen when the mouse interrupt is delayed more than one half of a second. Make sure DMA is enabled for your harddrive and CD-ROM. Kill your ACPI/APM battery monitoring applet. Try disabling ACPI, frequency scaling. Make sure your time is ticking correctly, often with frequency scaling it gets unreliable. Even if you're using the ACPI PM Timer as a clock source - actually this often leads to the above problem. Problem: ~~~~~~~~ My keyboard autorepeat is not as snappy as it used to be in the 2.5 series. Solution: ~~~~~~~~~ Use atkbd.softrepeat=1 on the kernel command line, or "softrepeat=1" on atkbd module command line. This will enable kernel internal repeat generation, which is much more flexible and allows higher repeat rates and shorter repeat delays than the keyboard itself does. Problem: ~~~~~~~~ kbdrate doesn't work when I use atkbd.softrepeat. Solution: ~~~~~~~~~ Get an up-to-date version of kbd-utils. Recompile on 2.6. Problem: ~~~~~~~~ I've read through the whole file, and it did not help me at all! Solution: ~~~~~~~~~ Either you didn't have any problem in the first place, or it's something that is not very often and thus not listed. Try contacting the driver author/maintainer, the kernel mailing list, or enter the problem into the Linux kernel bugzilla.
Mouse sensitivity
Has anyone noticed that mouse movement is too sensitive in 2.6? Without changing the X Window settings the pointer now moves a whole lot faster, not much difference in console using gpm tho.
Yep, the movement is faster o
Yep, the movement is faster on 2.6 and XFree86, which is not very nice on a laptop touch pad. Luckily KDE mouse settings helped, but using both 2.4 and 2.6 on the same laptop may not be such a good idea...
Mouse fix
Yepp, they changed the mouse update in 2.6.0-test-(something).
I usually add "psmouse_rate=70 psmouse_resolution=200" to my kernel boot line to circumvent it.
Peder
Mouse sensitivity (fixed)
it is problem no. 2 in the Vojtech's email.. thanks Vojtech!!!
i was getting mad with cut&paste in x terminas...
"pipe" key not working on USB keyboard
I have a USB keyboard and with 2.6 the backslash/pipe key doesn't map right. It actually switches between my active consoles. It's obviously causing me real problems but I'm not sure how to fix the problem at this point.
Same problem here
I: Bus=0003 Vendor=046d Product=c505 Version=1700
N: Name="Logitech USB Receiver"
When I press the '(keycode 84) button it switch between my active consoles.
I: Bus=0011 Vendor=0001 Product=0001 Version=ab41
N: Name="AT Translated Set 2 keyboard
This works perfect
Re: Same problem here
I had a similar problem on my USB keyboard, only that I'm using a swiss german keyboard layout and therefore it was the dollar key. The following patch fixed it:
http://www.ussg.iu.edu/hypermail/linux/kernel/0311.3/0849.html
As you can see, it exchanges keycodes 43 with 84, so this might help you as well.
Not anymore
2.6.2 solved this :-)
How did you get the Logitech reciever to work??
I migrated to 2.6.3 (redhat 9). All my other usb devices work but I have a logitech cordless trackerball mouse that I cannot get to work
The HID, usbkbd & usbmouse drivers all load during startup, but no joy with the usb receiver. It used to work on 2.4.* kernel.
Maybe I am missing something in my XF86config?
Any help would be appreciated.
"pipe" key not working on USB keyboard
this problem went away (for me) on 2.6.2
Oh no...even if it was a bug,
Oh no...even if it was a bug, I loved it. On my old machine, I had a PS/2 mouse working, which was too slow under 2.4 und setting a higher speed in KDE (or with xset) resulted in moving the mouse in "large" steps. So I couldn't point to some icons precisely, but with kernel 2.6.0, everything was ok... I hope it will still work with 2.6.2, but if they changed the mouse behaviour to the old style, I think, I'll get this problem back.
Btw: On my newer machine with USB mouse, the mouse speed seemed perferct for me, under 2.4 and 2.6...
Blub
Sorry for my bad english....
traslation in to german
i have translated it into german
http://www.linuxforen.de/forums/showthread.php?s=&threadid=121008
(not all,but I hope it'll ready soon)
[xfree86-4.3.99.902] logitech mx500 and usb protocol...
Hi.
I've got a logitech mx500 mouse connected through usb port.
As you known it has ten logical buttons (8 + wheel(=2)).
My current mouse config is:
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "ExplorerPS/2"
Option "Device" "/dev/input/mouse0"
Option "Buttons" "10"
Option "ZAxisMapping" "6 7"
EndSection
(+ xmodmap -e 'pointer = 1 2 3 6 7 4 5 8 9 10')
Unfortunetly xev reports only seven diffrent events
from ten logical buttons :(
After reading:
http://www.xfree86.org/current/mouse4.html
http://www.xfree86.org/current/mouse6.html#28
I've used: Option "Protocol" "usb", but xserver reports an error:
(EE) Mouse1: unknown protocol "usb"
/Of course I've usb&hid support built in kernel/
I've rebuilt the xserver adding...
cat << EOF >> xc/config/cf/xf86site.def
#define HasLinuxInput YES
#define UsbMouseSupport YES
#define HasLibUsb YES
/*
define HasLibUsbHid YES
define UsbHidLib -lusbhid
*/
#define HasLibUsbHid NO
#define UsbHidLib -lusb
EOF
...but it still doesn't recognize usb protocol.
Could anybody help me?
kvm and mouse wheel?
hi,
i just switched vom 2.4.23 to 2.6.2 and got into the ps2-mouse-kvm trouble. calling psmouse module with proto=bare fixed the scrappy mouse behavior, but also the mouse wheel is not working. anybody has a solutions for this?
tnx for any comments
mike
where do i add the boot comma
where do i add the boot command options for psmouse ?
id like to add proto=bare but do not know where?
in 2.4.x modules were all listed in /etc/modules however only 3 are listed in there now even though about 30 get loaded on boot :)
please point me in the right direction
Still have the wheel problem
Hi,
I have been trying to get my mouse to work under 2.6 without success, despite having read things such as this.
Just for the record, the mouse works fine under 2.4, with scrollwheel, in the PS/2 port.
The mouse wasn't working at all under 2.6 on the PS/2 port, but today it tried it on the USB and it's working - but no scrollwheel. I have tried everything mentioned above (ExplorerPS/2, the zaxis line was already there), no luck.
Is there anything else to be tried?
I have to confirm this. The L
I have to confirm this. The Linux 2.6.x Kernel seem to have problems receiving the RAW Wheelmouse Signals when sent through an KVM.
My other Machine which runs MorphOS behaves correctly getting all the Signals correctly (MWheel works) but the Linux 2.6.x Box refuse. Direct connection of the Mouse on the otherhand works perfectly.
Another fuzzy behaviour is the Jumping Mouse effect. E.g. Mouse pointer jumping to the right of the Screen after a while.
FINALLY!
Someone else with my exact issue. When i scroll up or down on the wheel the mouse pointer jumps really far to the right. I hadnt even thought of my KVM as the culprit... hmmm... thanks for the new direction to look in. ;-)
PS2 wheel mouse, loosing synchronization with KVM switch
I have been plagued with this problem since 2.6.x kernels released. I am using a Belkin SOHO 4 KVM switch with a PS/2 wheel mouse.
If I switch between 2.4.x kernel Linux systems an 2.6.x kernel Linux systems (multiple distro. versions), the problem always happens on the 2.6.x kernel. The 2.4.x kernels work fine.
I have tried the psmouse.proto=bare and psmouse.proto=imps settings, and DMA is activated on harddrive/CDROM devices, with no success.
I would be most grateful if someone knew of a solution, as it appears (based on web searches for a solution) there are quite a few folks with this same problem.
Thanks!
PS2 wheel mouse, loosing synchronization with KVM switch
I found a working solution for SuSE 9.2:
Make sure all mouse devices in /etc/X11/X86Config point to /dev/psaux and not /dev/input/mice.
Also, configured psmouse.proto=bare and acpi=off parameters in grub.
Hopefully this helps others experiencing this behavior!
Now to see if these settings work in Fedora Core 3 =)
Synaptics Touchpad and kernel 2.6
I'm having a strange problem with kernel 2.6.2 and the synaptics touchpad on a Sager laptop. Every so often, the cursor freaks and performs several random events. It could be resizing a window, bringing up a menu, clicking on an icon, etc. I did not see this with the 2.4 kernel. I have also installed the latest Touchpad driver for XFree86 (0.12.4).
Anyone else having a similar problem?
Soluction
Try to configure it with protocol ImPS/2.
i've got fujitsu siemens amil
i've got fujitsu siemens amilo d with the same kind of problem. quite rare though... I'm using synaptics driver.
Also having an annoying Synaptics problem...
I've been running into a seriously irritating problem in the 2.6 series - whenever I change the power source (i.e. plugging in AC if I started up on Battery, or unplugging AC if I started with it plugged in) they touchpad just plain dies.
I can plug in a USB mouse and continue working, but from that point on, the only indication that the touchpad is doing anything is log entries like:
The touchpad just plain will not work again from this point on unless I completely power down and restart (just a soft reboot doesn't fix it.)
(This is with the latest 2.6.5pr2, which I saw had some Synaptics reset updates and was hoping had fixed the problem finally - guess not).
Any hints on how I might help get this bug fixed would be welcome. So long as I either don't change power state or resign myself to using the USB trackball that I have instead of the touchpad everything else seems to work fine...
Also on XP
I occasionaly have the same problem on WinXP when going out of sleep mode: the touchpad is not responding. Last time it happened I had to go back to sleep mode, and switch on again to have a working touchpad.
So It may not be a driver problem.
No success with an optical mouse on OpenSUSE 10.0
We have just received 24 pieces of optical mice in Hungary, in a grammar school. Unfortunately they do not work on OpenSUSE 10.0. On Windows XP they just work with no problem.
If I change this optical (netscroll roller featured) mouse to a non-optical, 3 buttons, A4tech mouse (with no reconfiguration), everything works fine at once, no restart is needed for the X server I use. I also tried an older kernel version, too. On SuSE 8.2 this optical mouse is detected correctly. I am afraid that this 2.6.x series is problematic. (I use 2.6.13.)
What exactly happens with the optical mouse is the following:
1. X is running. I plug the mouse into the PS/2 port.
2. Now I can see a normal red light in the bottom of the optical mouse.
3. If I put down the mouse onto the table, the light stops.
4. If I press any of the mouse buttons, the mouse cursor moves in 4 steps to the top-right corner of the screen.
I also tried appending boot parameters: psmouse.proto=bare and psmouse.proto=imps (or exps) caused different behaviour. The older gave me the netscroll roller working properly (but the cursor movement and any of the buttons were not working).
I think is really a 2.6.x kernel problem. But I cannot see any solutions to solve it.
Additional info:
Through dmesg I get "psmouse.c: bad data from KBC - timeout" message every time I change my working A4tech mouse to the optical one. Through the /proc/bus/input/devices file I can see no additional info:
I: Bus=0011 Vendor=0002 Product=0001 Version=0000
N: Name="PS/2 Generic Mouse"
P: Phys=isa0060/serio1/input0
H: Handlers=mouse0 event2
B: EV=7
B: KEY=70000 0 0 0 0 0 0 0 0
B: REL=3
Any help is greatly appreciated!
spaetz
yep, same problem here. Synaptics touchpad driver under 2.6.7 let's the mouse jump every once in a while. It moves randomly around and occasionally presses the mousekey. This is very annoying.
Logitech PS2 and scrollwheel oddities
mousewheel scrolls only down. xev show the same keycode for btn4 and btn5:
KeyRelease event, serial 28, synthetic NO, window 0x2400001, root 0x3a, subw 0x0, time 1369248, (1260,56), root:(1266,1020), state 0x0, keycode 104 (keysym 0xff54, Down), same_screen YES, XLookupString gives 0 characters: ""problem occurs with kernels 2.6.3 and .4
XF86Config-4: Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/psaux" Option "Protocol" "ExplorerPS/2" Option "Emulate3Buttons" "true" Option "ZAxisMapping" "4 5" EndSectionanyone else seen this?
regards m
Me too
on 2.6.5 with a Logitech Cordless Optical Mouseman USB. Otherwise fine...
Similar problem
My kernel was working fine. Then, all of a sudden, when I try to log into gnome, immediately after the login screen, the screen goes black for a second, and then the login screen returns. Tailing the syslog, I see the following errors when this happens:
atkbd.c: Unknown key released (translated set 2, code 0x7a on isa0060/serio0).
atkbd.c: This is an XFree86 bug. It shouldn't access hardware directly.
Only one login is affected, other logins work fine. And I can login to this login from a text terminal, just not from Gnome. Any ideas?
Answers would be greatly appreciated.
voldemort_b@playful.com
Thanks.
still having problems
"Get an up-to-date version of kbd-utils"
im assuming you mean this project, which does have setkeycodes on it, among other utils
http://lct.sourceforge.net/
i have recompiled/installed these utilities on a 2.6 system, and now when i try:
setkeycodes e074 128
it doesnt output the useage like it did previously, however,
when i use showkey it doesnt show up with the new keycode and i still get the error in /var/log/messages
any ideas??
2.6 Logitech USB Mouse problem
Apologies all around for any unintended infractions of forum etiquette, as I am a virgin.
Problem description:
Under 2.6.x scroll up sends a right click to Firefox and other applications. Originally sent a right click to the desktop but that was resolved by moving from ExplorerPS/2 to ImPS/2 in XConfig. Have built multiple kernels with different drivers, have loaded HID module. Mouse is a USB native, running PS/2 through a 4 port KVM switch. I have seen this on other 2.6 systems with different mice and no KVM switch under different version of X and KDE. 2.6.x seems to be the consistant factor. Problem does not exhibit under 2.4.x.
Please let me know if there is data missing or if you have any questions. Any help is greatly appreciated.
AMD Athlon 2600+
Giagabyte GA-7N400 Pro2
IOGear 4 port KVM (ps/2)
Debian Unstable
Qt: 3.3.3
KDE: 3.3.0
kde-config: 1.0
Architecture: i386
Source: xfree86
Version: 4.3.0.dfsg.1-8
Linux BeanBag 2.6.5 #5 Sat Jul 31 06:51:46 CDT 2004 i686 GNU/Linux
Output from xev:
<---------------begin snippet------------------->
Outer window is 0x2e00001, inner window is 0x2e00002
EnterNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127665986, (7,98), root:(10,127),
mode NotifyNormal, detail NotifyNonlinear, same_screen YES,
focus YES, state 16
KeymapNotify event, serial 28, synthetic NO, window 0x0,
keys: 4294967184 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
MotionNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127666005, (15,94), root:(18,123),
state 0x10, is_hint 0, same_screen YES
MotionNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127666025, (25,88), root:(28,117),
state 0x10, is_hint 0, same_screen YES
MotionNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127666045, (37,84), root:(40,113),
state 0x10, is_hint 0, same_screen YES
MotionNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127666065, (43,80), root:(46,109),
state 0x10, is_hint 0, same_screen YES
MotionNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127666085, (44,79), root:(47,108),
state 0x10, is_hint 0, same_screen YES
MotionNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127666105, (45,78), root:(48,107),
state 0x10, is_hint 0, same_screen YES
MotionNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127666125, (46,76), root:(49,105),
state 0x10, is_hint 0, same_screen YES
MotionNotify event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127666163, (46,74), root:(49,103),
state 0x10, is_hint 0, same_screen YES
ButtonPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127668342, (46,74), root:(49,103),
state 0x10, button 2, same_screen YES
ButtonPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127668343, (46,74), root:(49,103),
state 0x210, button 3, same_screen YES
ButtonPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127668343, (46,74), root:(49,103),
state 0x610, button 4, same_screen YES
ButtonRelease event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127668343, (46,74), root:(49,103),
state 0xe10, button 4, same_screen YES
ButtonPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127668808, (46,74), root:(49,103),
state 0x610, button 4, same_screen YES
ButtonRelease event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127668808, (46,74), root:(49,103),
state 0xe10, button 4, same_screen YES
ButtonRelease event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127669551, (46,74), root:(49,103),
state 0x610, button 2, same_screen YES
ButtonRelease event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127669551, (46,74), root:(49,103),
state 0x410, button 3, same_screen YES
ButtonPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127669551, (46,74), root:(49,103),
state 0x10, button 5, same_screen YES
ButtonRelease event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127669551, (46,74), root:(49,103),
state 0x1010, button 5, same_screen YES
ButtonPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127670555, (46,74), root:(49,103),
state 0x10, button 2, same_screen YES
ButtonPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127670555, (46,74), root:(49,103),
state 0x210, button 3, same_screen YES
ButtonPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127670555, (46,74), root:(49,103),
state 0x610, button 4, same_screen YES
KeyPress event, serial 28, synthetic NO, window 0x2e00001,
root 0x90, subw 0x0, time 127671596, (46,74), root:(49,103),
state 0x610, keycode 64 (keysym 0xffe9, Alt_L), same_screen YES,
XLookupString gives 0 bytes: ""
FocusOut event, serial 28, synthetic NO, window 0x2e00001,
mode NotifyGrab, detail NotifyAncestor
FocusOut event, serial 28, synthetic NO, window 0x2e00001,
mode NotifyUngrab, detail NotifyPointer
FocusIn event, serial 28, synthetic NO, window 0x2e00001,
mode NotifyUngrab, detail NotifyAncestor
KeymapNotify event, serial 28, synthetic NO, window 0x0,
keys: 4294967184 0 0 0 0 0 0 0 65 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
<------------end snippet-------------->
Dmesg Output:
<---------------begin snippet--------------->
(v001 Nvidia AWRDACPI 0x42302e31 AWRD 0x01010101) @ 0x3fff7740
ACPI: DSDT (v001 NVIDIA AWRDACPI 0x00001000 MSFT 0x0100000c) @ 0x00000000
ACPI: Local APIC address 0xfee00000
ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Processor #0 6:10 APIC version 16
ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
Using ACPI for processor (LAPIC) configuration information
Intel MultiProcessor Specification v1.4
Virtual Wire compatibility mode.
OEM ID: OEM00000 Product ID: PROD00000000 APIC at: 0xFEE00000
I/O APIC #2 Version 17 at 0xFEC00000.
Enabling APIC mode: Flat. Using 1 I/O APICs
Processors: 1
Built 1 zonelists
Kernel command line: auto BOOT_IMAGE=Linux-2.6.5v14 ro root=302 bigphysarea=4096
Initializing CPU#0
PID hash table entries: 4096 (order 12: 32768 bytes)
Detected 1913.294 MHz processor.
Using tsc for high-res timesource
Console: colour VGA+ 80x25
Memory: 1034648k/1048512k available (1523k kernel code, 12956k reserved, 686k data, 140k init, 131008k highmem)
Checking if this processor honours the WP bit even in supervisor mode... Ok.
Calibrating delay loop... 3784.70 BogoMIPS
Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Mount-cache hash table entries: 512 (order: 0, 4096 bytes)
CPU: After generic identify, caps: 0383fbff c1c3fbff 00000000 00000000
CPU: After vendor identify, caps: 0383fbff c1c3fbff 00000000 00000000
CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line)
CPU: L2 Cache: 512K (64 bytes/line)
CPU: After all inits, caps: 0383fbff c1c3fbff 00000000 00000020
Intel machine check architecture supported.
Intel machine check reporting enabled on CPU#0.
CPU: AMD Athlon(tm) XP 2600+ stepping 00
Enabling fast FPU save and restore... done.
Enabling unmasked SIMD FPU exception support... done.
Checking 'hlt' instruction... OK.
POSIX conformance testing by UNIFIX
enabled ExtINT on CPU#0
ESR value before enabling vector: 00000000
ESR value after enabling vector: 00000000
ENABLING IO-APIC IRQs
Setting 2 in the phys_id_present_map
...changing IO-APIC physical APIC ID to 2 ... ok.
init IO_APIC IRQs
IO-APIC (apicid-pin) 2-0, 2-9, 2-16, 2-17, 2-18, 2-20, 2-21, 2-22, 2-23 not connected.
..TIMER: vector=0x31 pin1=2 pin2=0
..MP-BIOS bug: 8254 timer not connected to IO-APIC
...trying to set up timer (IRQ0) through the 8259A ...
..... (found pin 0) ...works.
number of MP IRQ sources: 16.
number of IO-APIC #2 registers: 24.
testing the IO APIC.......................
IO APIC #2......
.... register #00: 02000000
....... : physical APIC id: 02
....... : Delivery Type: 0
....... : LTS : 0
.... register #01: 00170011
....... : max redirection entries: 0017
....... : PRQ implemented: 0
....... : IO APIC version: 0011
.... register #02: 00000000
....... : arbitration: 00
.... IRQ redirection table:
NR Log Phy Mask Trig IRR Pol Stat Dest Deli Vect:
00 001 01 0 0 0 0 0 1 1 31
01 001 01 0 0 0 0 0 1 1 39
02 000 00 1 0 0 0 0 0 0 00
03 001 01 0 0 0 0 0 1 1 41
04 001 01 0 0 0 0 0 1 1 49
05 001 01 0 0 0 0 0 1 1 51
06 001 01 0 0 0 0 0 1 1 59
07 001 01 0 0 0 0 0 1 1 61
08 001 01 0 0 0 0 0 1 1 69
09 000 00 1 0 0 0 0 0 0 00
0a 001 01 0 0 0 0 0 1 1 71
0b 001 01 0 0 0 0 0 1 1 79
0c 001 01 0 0 0 0 0 1 1 81
0d 001 01 0 0 0 0 0 1 1 89
0e 001 01 0 0 0 0 0 1 1 91
0f 001 01 0 0 0 0 0 1 1 99
10 000 00 1 0 0 0 0 0 0 00
11 000 00 1 0 0 0 0 0 0 00
12 000 00 1 0 0 0 0 0 0 00
13 001 01 1 1 0 1 0 1 1 A1
14 000 00 1 0 0 0 0 0 0 00
15 000 00 1 0 0 0 0 0 0 00
16 000 00 1 0 0 0 0 0 0 00
17 000 00 1 0 0 0 0 0 0 00
IRQ to pin mappings:
IRQ0 -> 0:0
IRQ1 -> 0:1
IRQ3 -> 0:3
IRQ4 -> 0:4
IRQ5 -> 0:5
IRQ6 -> 0:6
IRQ7 -> 0:7
IRQ8 -> 0:8
IRQ10 -> 0:10
IRQ11 -> 0:11
IRQ12 -> 0:12
IRQ13 -> 0:13
IRQ14 -> 0:14
IRQ15 -> 0:15
IRQ19 -> 0:19
.................................... done.
Using local APIC timer interrupts.
calibrating APIC timer ...
..... CPU clock speed is 1912.0971 MHz.
..... host bus clock speed is 332.0690 MHz.
NET: Registered protocol family 16
PCI: PCI BIOS revision 2.10 entry at 0xfaf60, last bus=2
PCI: Using configuration type 1
mtrr: v2.0 (20020519)
SCSI subsystem initialized
drivers/usb/core/usb.c: registered new driver usbfs
drivers/usb/core/usb.c: registered new driver hub
PCI: Probing PCI hardware
PCI: Probing PCI hardware (bus 00)
PCI: Discovered primary peer bus ff [IRQ]
PCI: Using IRQ router default [10de/01e0] at 0000:00:00.0
PCI->APIC IRQ transform: (B2,I0,P0) -> 19
Machine check exception polling timer started.
apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac)
highmem bounce pool size: 64 pages
Non-volatile memory driver v1.2
Linux agpgart interface v0.100 (c) Dave Jones
agpgart: Detected NVIDIA nForce2 chipset
agpgart: Maximum main memory to use for agp memory: 941M
agpgart: AGP aperture is 64M @ 0xe0000000
Using anticipatory io scheduler
Floppy drive(s): fd0 is 1.44M
FDC 0 is a post-1991 82077
RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
r8169 Gigabit Ethernet driver 1.2 loaded
r8169: PCI device 0000:01:0b.0: unknown chip version, assuming RTL-8169
r8169: PCI device 0000:01:0b.0: TxConfig = 0x4000000
eth0: Identified chip type is 'RTL-8169'.
eth0: RealTek RTL8169 Gigabit Ethernet at 0xf8845000, 00:0d:61:62:87:d8, IRQ 11
eth0: Auto-negotiation Enabled.
eth0: 100Mbps Full-duplex operation.
Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
NFORCE2: IDE controller at PCI slot 0000:00:09.0
NFORCE2: chipset revision 162
NFORCE2: not 100% native mode: will probe irqs later
NFORCE2: BIOS didn't set cable bits correctly. Enabling workaround.
NFORCE2: 0000:00:09.0 (rev a2) UDMA133 controller
ide0: BM-DMA at 0xf000-0xf007, BIOS settings: hda:DMA, hdb:DMA
ide1: BM-DMA at 0xf008-0xf00f, BIOS settings: hdc:DMA, hdd:DMA
hda: WDC WD1600JB-00FUA0, ATA DISK drive
hdb: LS-120 F200 08 UHD Floppy, ATAPI FLOPPY drive
ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
hda: max request size: 1024KiB
hda: Host Protected Area detected.
current capacity is 312579695 sectors (160040 MB)
native capacity is 312581808 sectors (160041 MB)
hda: 312579695 sectors (160040 MB) w/8192KiB Cache, CHS=19457/255/63, UDMA(100)
hda: hda1 hda2
mice: PS/2 mouse device common for all mice
serio: i8042 AUX port at 0x60,0x64 irq 12
input: ImExPS/2 Generic Explorer Mouse on isa0060/serio1
serio: i8042 KBD port at 0x60,0x64 irq 1
input: AT Translated Set 2 keyboard on isa0060/serio0
i2c /dev entries driver
i2c_adapter i2c-0: nForce2 SMBus adapter at 0x1c00
i2c_adapter i2c-1: nForce2 SMBus adapter at 0x2000
NET: Registered protocol family 2
IP: routing cache hash table of 8192 buckets, 64Kbytes
TCP: Hash tables configured (established 262144 bind 65536)
NET: Registered protocol family 1
NET: Registered protocol family 17
NET: Registered protocol family 15
EXT3-fs: INFO: recovery required on readonly filesystem.
EXT3-fs: write access will be enabled during recovery.
kjournald starting. Commit interval 5 seconds
EXT3-fs: recovery complete.
EXT3-fs: mounted filesystem with ordered data mode.
VFS: Mounted root (ext3 filesystem) readonly.
Freeing unused kernel memory: 140k freed
Adding 498004k swap on /dev/hda1. Priority:-1 extents:1
EXT3 FS on hda2, internal journal
nvidia: module license 'NVIDIA' taints kernel.
nvidia: no version for "printk" found: kernel tainted.
NVRM: loading NVIDIA Linux x86 NVIDIA Kernel Module 1.0-6106 Wed Jun 23 08:14:01 PDT 2004
PCI: Setting latency timer of device 0000:00:06.0 to 64
intel8x0_measure_ac97_clock: measured 49422 usecs
intel8x0: clocking to 47445
ohci_hcd: 2004 Feb 02 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI)
ohci_hcd: block sizes: ed 64 td 64
ohci_hcd 0000:00:02.0: nVidia Corporation nForce2 USB Controller
ohci_hcd 0000:00:02.0: reset, control = 0x600
PCI: Setting latency timer of device 0000:00:02.0 to 64
ohci_hcd 0000:00:02.0: irq 4, pci mem f88b3000
ohci_hcd 0000:00:02.0: new USB bus registered, assigned bus number 1
ohci_hcd 0000:00:02.0: root hub device address 1
usb usb1: new device strings: Mfr=3, Product=2, SerialNumber=1
drivers/usb/core/message.c: USB device number 1 default language ID 0x409
usb usb1: Product: nVidia Corporation nForce2 USB Controller
usb usb1: Manufacturer: Linux 2.6.5 ohci_hcd
usb usb1: SerialNumber: 0000:00:02.0
drivers/usb/core/usb.c: usb_hotplug
usb usb1: registering 1-0:1.0 (config #1, interface 0)
drivers/usb/core/usb.c: usb_hotplug
hub 1-0:1.0: usb_probe_interface
hub 1-0:1.0: usb_probe_interface - got id
hub 1-0:1.0: USB hub found
hub 1-0:1.0: 3 ports detected
hub 1-0:1.0: standalone hub
hub 1-0:1.0: unknown reserved power switching mode
hub 1-0:1.0: global over-current protection
hub 1-0:1.0: Port indicators are not supported
hub 1-0:1.0: power on to power good time: 2ms
hub 1-0:1.0: hub controller current requirement: 0mA
hub 1-0:1.0: local power source is good
hub 1-0:1.0: no over-current condition exists
hub 1-0:1.0: enabling power on all ports
ohci_hcd 0000:00:02.0: created debug files
ohci_hcd 0000:00:02.0: OHCI controller state
ohci_hcd 0000:00:02.0: OHCI 1.0, with legacy support registers
ohci_hcd 0000:00:02.0: control 0x683 RWE RWC HCFS=operational CBSR=3
ohci_hcd 0000:00:02.0: cmdstatus 0x00000 SOC=0
ohci_hcd 0000:00:02.0: intrstatus 0x00000004 SF
ohci_hcd 0000:00:02.0: intrenable 0x80000002 MIE WDH
ohci_hcd 0000:00:02.0: hcca frame #0010
ohci_hcd 0000:00:02.0: roothub.a 01000203 POTPGT=1 NPS NDP=3
ohci_hcd 0000:00:02.0: roothub.b 00000000 PPCM=0000 DR=0000
ohci_hcd 0000:00:02.0: roothub.status 00000000
ohci_hcd 0000:00:02.0: roothub.portstatus [0] 0x00000100 PPS
ohci_hcd 0000:00:02.0: roothub.portstatus [1] 0x00000100 PPS
ohci_hcd 0000:00:02.0: roothub.portstatus [2] 0x00000100 PPS
ohci_hcd 0000:00:02.1: nVidia Corporation nForce2 USB Controller (#2)
ohci_hcd 0000:00:02.1: reset, control = 0x600
PCI: Setting latency timer of device 0000:00:02.1 to 64
ohci_hcd 0000:00:02.1: irq 3, pci mem f88c4000
ohci_hcd 0000:00:02.1: new USB bus registered, assigned bus number 2
ohci_hcd 0000:00:02.1: root hub device address 1
usb usb2: new device strings: Mfr=3, Product=2, SerialNumber=1
drivers/usb/core/message.c: USB device number 1 default language ID 0x409
usb usb2: Product: nVidia Corporation nForce2 USB Controller (#2)
usb usb2: Manufacturer: Linux 2.6.5 ohci_hcd
usb usb2: SerialNumber: 0000:00:02.1
drivers/usb/core/usb.c: usb_hotplug
usb usb2: registering 2-0:1.0 (config #1, interface 0)
drivers/usb/core/usb.c: usb_hotplug
hub 2-0:1.0: usb_probe_interface
hub 2-0:1.0: usb_probe_interface - got id
hub 2-0:1.0: USB hub found
hub 2-0:1.0: 3 ports detected
hub 2-0:1.0: standalone hub
hub 2-0:1.0: unknown reserved power switching mode
hub 2-0:1.0: global over-current protection
hub 2-0:1.0: Port indicators are not supported
hub 2-0:1.0: power on to power good time: 2ms
hub 2-0:1.0: hub controller current requirement: 0mA
hub 2-0:1.0: local power source is good
hub 2-0:1.0: no over-current condition exists
hub 2-0:1.0: enabling power on all ports
ohci_hcd 0000:00:02.1: created debug files
ohci_hcd 0000:00:02.1: OHCI controller state
ohci_hcd 0000:00:02.1: OHCI 1.0, with legacy support registers
ohci_hcd 0000:00:02.1: control 0x683 RWE RWC HCFS=operational CBSR=3
ohci_hcd 0000:00:02.1: cmdstatus 0x00000 SOC=0
ohci_hcd 0000:00:02.1: intrstatus 0x00000004 SF
ohci_hcd 0000:00:02.1: intrenable 0x80000002 MIE WDH
ohci_hcd 0000:00:02.1: hcca frame #0010
ohci_hcd 0000:00:02.1: roothub.a 01000203 POTPGT=1 NPS NDP=3
ohci_hcd 0000:00:02.1: roothub.b 00000000 PPCM=0000 DR=0000
ohci_hcd 0000:00:02.1: roothub.status 00000000
ohci_hcd 0000:00:02.1: roothub.portstatus [0] 0x00000100 PPS
ohci_hcd 0000:00:02.1: roothub.portstatus [1] 0x00000100 PPS
ohci_hcd 0000:00:02.1: roothub.portstatus [2] 0x00000100 PPS
drivers/usb/core/usb.c: registered new driver usbnet
ehci_hcd: block sizes: qh 128 qtd 96 itd 192 sitd 96
ehci_hcd 0000:00:02.2: nVidia Corporation nForce2 USB Controller
ehci_hcd 0000:00:02.2: reset hcs_params 0x102486 dbg=1 cc=2 pcc=4 !ppc ports=6
ehci_hcd 0000:00:02.2: reset portroute 0 0 1 1 1 0
ehci_hcd 0000:00:02.2: reset hcc_params a086 caching frame 256/512/1024 park
ehci_hcd 0000:00:02.2: capability 0001 at a0
PCI: Setting latency timer of device 0000:00:02.2 to 64
ehci_hcd 0000:00:02.2: irq 7, pci mem f88c6000
ehci_hcd 0000:00:02.2: new USB bus registered, assigned bus number 3
ehci_hcd 0000:00:02.2: reset command 080b02 park=3 ithresh=8 period=1024 Reset HALT
PCI: cache line size of 64 is not supported by device 0000:00:02.2
ehci_hcd 0000:00:02.2: init command 010b09 park=3 ithresh=1 period=256 RUN
ehci_hcd 0000:00:02.2: USB 2.0 enabled, EHCI 1.00, driver 2003-Dec-29
ehci_hcd 0000:00:02.2: root hub device address 1
usb usb3: new device strings: Mfr=3, Product=2, SerialNumber=1
drivers/usb/core/message.c: USB device number 1 default language ID 0x409
usb usb3: Product: nVidia Corporation nForce2 USB Controller
usb usb3: Manufacturer: Linux 2.6.5 ehci_hcd
usb usb3: SerialNumber: 0000:00:02.2
drivers/usb/core/usb.c: usb_hotplug
usb usb3: registering 3-0:1.0 (config #1, interface 0)
drivers/usb/core/usb.c: usb_hotplug
hub 3-0:1.0: usb_probe_interface
hub 3-0:1.0: usb_probe_interface - got id
hub 3-0:1.0: USB hub found
hub 3-0:1.0: 6 ports detected
hub 3-0:1.0: standalone hub
hub 3-0:1.0: ganged power switching
hub 3-0:1.0: individual port over-current protection
hub 3-0:1.0: Single TT
hub 3-0:1.0: TT requires at most 8 FS bit times
hub 3-0:1.0: Port indicators are not supported
hub 3-0:1.0: power on to power good time: 20ms
hub 3-0:1.0: hub controller current requirement: 0mA
hub 3-0:1.0: local power source is good
hub 3-0:1.0: no over-current condition exists
hub 3-0:1.0: enabling power on all ports
drivers/usb/net/rtl8150.c: rtl8150 based usb-ethernet driver v0.5.7 (2002/12/31)
drivers/usb/core/usb.c: registered new driver rtl8150
drivers/usb/core/usb.c: registered new driver hiddev
drivers/usb/core/usb.c: registered new driver hid
drivers/usb/input/hid-core.c: v2.0:USB HID core driver
NVRM: restoring bus mastering! (/usr/src/modules/nvidia-kernel/nv/nv.c:2146)
agpgart: Found an AGP 3.0 compliant device at 0000:00:00.0.
agpgart: Putting AGP V3 device at 0000:00:00.0 into 8x mode
agpgart: Putting AGP V3 device at 0000:02:00.0 into 8x mode
NVRM: restoring bus mastering! (/usr/src/modules/nvidia-kernel/nv/nv.c:2146)
agpgart: Found an AGP 3.0 compliant device at 0000:00:00.0.
agpgart: Putting AGP V3 device at 0000:00:00.0 into 8x mode
agpgart: Putting AGP V3 device at 0000:02:00.0 into 8x mode
NVRM: restoring MEM access! (/usr/src/modules/nvidia-kernel/nv/nv.c:2146)
NVRM: restoring MEM access! (/usr/src/modules/nvidia-kernel/nv/nv.c:2146)
NVRM: restoring MEM access! (/usr/src/modules/nvidia-kernel/nv/nv.c:2146)
NVRM: restoring MEM access! (/usr/src/modules/nvidia-kernel/nv/nv.c:2146)
NVRM: restoring MEM access! (/usr/src/modules/nvidia-kernel/nv/nv.c:2146)
<--------------end snippet--------------->
Curent kernel Configuration:
<-------------bein snippet-------------->
#
# Automatically generated make config: don't edit
#
CONFIG_X86=y
CONFIG_MMU=y
CONFIG_UID16=y
CONFIG_GENERIC_ISA_DMA=y
#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_STANDALONE=y
CONFIG_BROKEN_ON_SMP=y
#
# General setup
#
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
# CONFIG_BSD_PROCESS_ACCT is not set
CONFIG_SYSCTL=y
CONFIG_LOG_BUF_SHIFT=14
CONFIG_HOTPLUG=y
# CONFIG_IKCONFIG is not set
# CONFIG_EMBEDDED is not set
CONFIG_KALLSYMS=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_AS=y
CONFIG_IOSCHED_DEADLINE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
#
# Loadable module support
#
CONFIG_MODULES=y
CONFIG_MODULE_UNLOAD=y
CONFIG_MODULE_FORCE_UNLOAD=y
CONFIG_OBSOLETE_MODPARM=y
CONFIG_MODVERSIONS=y
CONFIG_KMOD=y
#
# Processor type and features
#
CONFIG_X86_PC=y
# CONFIG_X86_ELAN is not set
# CONFIG_X86_VOYAGER is not set
# CONFIG_X86_NUMAQ is not set
# CONFIG_X86_SUMMIT is not set
# CONFIG_X86_BIGSMP is not set
# CONFIG_X86_VISWS is not set
# CONFIG_X86_GENERICARCH is not set
# CONFIG_X86_ES7000 is not set
# CONFIG_M386 is not set
# CONFIG_M486 is not set
# CONFIG_M586 is not set
# CONFIG_M586TSC is not set
# CONFIG_M586MMX is not set
# CONFIG_M686 is not set
# CONFIG_MPENTIUMII is not set
# CONFIG_MPENTIUMIII is not set
# CONFIG_MPENTIUMM is not set
# CONFIG_MPENTIUM4 is not set
# CONFIG_MK6 is not set
CONFIG_MK7=y
# CONFIG_MK8 is not set
# CONFIG_MCRUSOE is not set
# CONFIG_MWINCHIPC6 is not set
# CONFIG_MWINCHIP2 is not set
# CONFIG_MWINCHIP3D is not set
# CONFIG_MCYRIXIII is not set
# CONFIG_MVIAC3_2 is not set
# CONFIG_X86_GENERIC is not set
# CONFIG_X86_EMU486 is not set
CONFIG_X86_CMPXCHG=y
CONFIG_X86_XADD=y
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_X86_WP_WORKS_OK=y
CONFIG_X86_INVLPG=y
CONFIG_X86_BSWAP=y
CONFIG_X86_POPAD_OK=y
CONFIG_X86_GOOD_APIC=y
CONFIG_X86_INTEL_USERCOPY=y
CONFIG_X86_USE_PPRO_CHECKSUM=y
CONFIG_X86_USE_3DNOW=y
# CONFIG_HPET_TIMER is not set
# CONFIG_HPET_EMULATE_RTC is not set
# CONFIG_SMP is not set
# CONFIG_PREEMPT is not set
CONFIG_X86_UP_APIC=y
CONFIG_X86_UP_IOAPIC=y
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_TSC=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_NONFATAL=y
# CONFIG_X86_MCE_P4THERMAL is not set
# CONFIG_TOSHIBA is not set
# CONFIG_I8K is not set
# CONFIG_MICROCODE is not set
# CONFIG_X86_MSR is not set
# CONFIG_X86_CPUID is not set
#
# Firmware Drivers
#
# CONFIG_EDD is not set
# CONFIG_NOHIGHMEM is not set
CONFIG_HIGHMEM4G=y
# CONFIG_HIGHMEM64G is not set
CONFIG_HIGHMEM=y
CONFIG_HIGHPTE=y
# CONFIG_MATH_EMULATION is not set
CONFIG_MTRR=y
# CONFIG_REGPARM is not set
#
# Power management options (ACPI, APM)
#
CONFIG_PM=y
# CONFIG_SOFTWARE_SUSPEND is not set
# CONFIG_PM_DISK is not set
#
# ACPI (Advanced Configuration and Power Interface) Support
#
# CONFIG_ACPI is not set
CONFIG_ACPI_BOOT=y
#
# APM (Advanced Power Management) BIOS Support
#
CONFIG_APM=y
# CONFIG_APM_IGNORE_USER_SUSPEND is not set
# CONFIG_APM_DO_ENABLE is not set
# CONFIG_APM_CPU_IDLE is not set
# CONFIG_APM_DISPLAY_BLANK is not set
# CONFIG_APM_RTC_IS_GMT is not set
# CONFIG_APM_ALLOW_INTS is not set
CONFIG_APM_REAL_MODE_POWER_OFF=y
#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set
#
# Bus options (PCI, PCMCIA, EISA, MCA, ISA)
#
CONFIG_PCI=y
# CONFIG_PCI_GOBIOS is not set
# CONFIG_PCI_GOMMCONFIG is not set
# CONFIG_PCI_GODIRECT is not set
CONFIG_PCI_GOANY=y
CONFIG_PCI_BIOS=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
# CONFIG_PCI_USE_VECTOR is not set
# CONFIG_PCI_LEGACY_PROC is not set
CONFIG_PCI_NAMES=y
# CONFIG_ISA is not set
# CONFIG_MCA is not set
# CONFIG_SCx200 is not set
#
# PCMCIA/CardBus support
#
# CONFIG_PCMCIA is not set
#
# PCI Hotplug Support
#
# CONFIG_HOTPLUG_PCI is not set
#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_BINFMT_AOUT=y
CONFIG_BINFMT_MISC=y
#
# Device Drivers
#
#
# Generic Driver Options
#
# CONFIG_FW_LOADER is not set
#
# Memory Technology Devices (MTD)
#
# CONFIG_MTD is not set
#
# Parallel port support
#
# CONFIG_PARPORT is not set
#
# Plug and Play support
#
#
# Block devices
#
CONFIG_BLK_DEV_FD=y
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
CONFIG_BLK_DEV_LOOP=m
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_CARMEL is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_SIZE=4096
CONFIG_BLK_DEV_INITRD=y
# CONFIG_LBD is not set
#
# ATA/ATAPI/MFM/RLL support
#
CONFIG_IDE=y
CONFIG_BLK_DEV_IDE=y
#
# Please see Documentation/ide.txt for help/info on IDE drives
#
# CONFIG_BLK_DEV_HD_IDE is not set
CONFIG_BLK_DEV_IDEDISK=y
CONFIG_IDEDISK_MULTI_MODE=y
# CONFIG_IDEDISK_STROKE is not set
CONFIG_BLK_DEV_IDECD=y
# CONFIG_BLK_DEV_IDETAPE is not set
# CONFIG_BLK_DEV_IDEFLOPPY is not set
CONFIG_BLK_DEV_IDESCSI=m
# CONFIG_IDE_TASK_IOCTL is not set
# CONFIG_IDE_TASKFILE_IO is not set
#
# IDE chipset support/bugfixes
#
CONFIG_IDE_GENERIC=y
CONFIG_BLK_DEV_CMD640=y
# CONFIG_BLK_DEV_CMD640_ENHANCED is not set
CONFIG_BLK_DEV_IDEPCI=y
CONFIG_IDEPCI_SHARE_IRQ=y
# CONFIG_BLK_DEV_OFFBOARD is not set
CONFIG_BLK_DEV_GENERIC=y
# CONFIG_BLK_DEV_OPTI621 is not set
# CONFIG_BLK_DEV_RZ1000 is not set
CONFIG_BLK_DEV_IDEDMA_PCI=y
# CONFIG_BLK_DEV_IDEDMA_FORCED is not set
CONFIG_IDEDMA_PCI_AUTO=y
# CONFIG_IDEDMA_ONLYDISK is not set
CONFIG_BLK_DEV_ADMA=y
# CONFIG_BLK_DEV_AEC62XX is not set
# CONFIG_BLK_DEV_ALI15X3 is not set
CONFIG_BLK_DEV_AMD74XX=y
# CONFIG_BLK_DEV_ATIIXP is not set
# CONFIG_BLK_DEV_CMD64X is not set
# CONFIG_BLK_DEV_TRIFLEX is not set
# CONFIG_BLK_DEV_CY82C693 is not set
# CONFIG_BLK_DEV_CS5520 is not set
# CONFIG_BLK_DEV_CS5530 is not set
# CONFIG_BLK_DEV_HPT34X is not set
# CONFIG_BLK_DEV_HPT366 is not set
# CONFIG_BLK_DEV_SC1200 is not set
# CONFIG_BLK_DEV_PIIX is not set
# CONFIG_BLK_DEV_NS87415 is not set
# CONFIG_BLK_DEV_PDC202XX_OLD is not set
# CONFIG_BLK_DEV_PDC202XX_NEW is not set
# CONFIG_BLK_DEV_SVWKS is not set
CONFIG_BLK_DEV_SIIMAGE=y
# CONFIG_BLK_DEV_SIS5513 is not set
# CONFIG_BLK_DEV_SLC90E66 is not set
# CONFIG_BLK_DEV_TRM290 is not set
# CONFIG_BLK_DEV_VIA82CXXX is not set
CONFIG_BLK_DEV_IDEDMA=y
# CONFIG_IDEDMA_IVB is not set
CONFIG_IDEDMA_AUTO=y
# CONFIG_BLK_DEV_HD is not set
#
# SCSI device support
#
CONFIG_SCSI=y
CONFIG_SCSI_PROC_FS=y
#
# SCSI support type (disk, tape, CD-ROM)
#
# CONFIG_BLK_DEV_SD is not set
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
# CONFIG_BLK_DEV_SR is not set
CONFIG_CHR_DEV_SG=m
# CONFIG_CHR_DEV_SCH is not set
#
# Some SCSI devices (e.g. CD jukebox) support multiple LUNs
#
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_REPORT_LUNS=y
# CONFIG_SCSI_CONSTANTS is not set
# CONFIG_SCSI_LOGGING is not set
#
# SCSI Transport Attributes
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set
#
# SCSI low-level drivers
#
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_MEGARAID is not set
CONFIG_SCSI_SATA=y
# CONFIG_SCSI_SATA_SVW is not set
# CONFIG_SCSI_ATA_PIIX is not set
# CONFIG_SCSI_SATA_PROMISE is not set
CONFIG_SCSI_SATA_SIL=m
# CONFIG_SCSI_SATA_VIA is not set
# CONFIG_SCSI_SATA_VITESSE is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_SCSI_CPQFCTS is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_EATA_PIO is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_QLOGIC_ISP is not set
# CONFIG_SCSI_QLOGIC_FC is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_NSP32 is not set
# CONFIG_SCSI_DEBUG is not set
#
# Multi-device support (RAID and LVM)
#
CONFIG_MD=y
CONFIG_BLK_DEV_MD=m
# CONFIG_MD_LINEAR is not set
CONFIG_MD_RAID0=m
CONFIG_MD_RAID1=m
CONFIG_MD_RAID5=m
# CONFIG_MD_RAID6 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_BLK_DEV_DM is not set
#
# Fusion MPT device support
#
# CONFIG_FUSION is not set
#
# IEEE 1394 (FireWire) support
#
CONFIG_IEEE1394=m
#
# Subsystem Options
#
# CONFIG_IEEE1394_VERBOSEDEBUG is not set
# CONFIG_IEEE1394_OUI_DB is not set
# CONFIG_IEEE1394_EXTRA_CONFIG_ROMS is not set
#
# Device Drivers
#
# CONFIG_IEEE1394_PCILYNX is not set
CONFIG_IEEE1394_OHCI1394=m
#
# Protocol Drivers
#
CONFIG_IEEE1394_VIDEO1394=m
# CONFIG_IEEE1394_SBP2 is not set
# CONFIG_IEEE1394_ETH1394 is not set
CONFIG_IEEE1394_DV1394=m
CONFIG_IEEE1394_RAWIO=m
# CONFIG_IEEE1394_CMP is not set
#
# I2O device support
#
# CONFIG_I2O is not set
#
# Networking support
#
CONFIG_NET=y
#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_MMAP is not set
# CONFIG_NETLINK_DEV is not set
CONFIG_UNIX=y
CONFIG_NET_KEY=y
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
# CONFIG_IP_ADVANCED_ROUTER is not set
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE is not set
# CONFIG_IP_MROUTE is not set
# CONFIG_ARPD is not set
# CONFIG_SYN_COOKIES is not set
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_IPV6 is not set
# CONFIG_DECNET is not set
# CONFIG_BRIDGE is not set
# CONFIG_NETFILTER is not set
CONFIG_XFRM=y
# CONFIG_XFRM_USER is not set
#
# SCTP Configuration (EXPERIMENTAL)
#
# CONFIG_IP_SCTP is not set
# CONFIG_ATM is not set
# CONFIG_VLAN_8021Q is not set
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_NET_DIVERT is not set
# CONFIG_ECONET is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_NET_FASTROUTE is not set
# CONFIG_NET_HW_FLOWCONTROL is not set
#
# QoS and/or fair queueing
#
# CONFIG_NET_SCHED is not set
#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
CONFIG_NETDEVICES=y
#
# ARCnet devices
#
# CONFIG_ARCNET is not set
# CONFIG_DUMMY is not set
# CONFIG_BONDING is not set
# CONFIG_EQUALIZER is not set
# CONFIG_TUN is not set
#
# Ethernet (10 or 100Mbit)
#
CONFIG_NET_ETHERNET=y
CONFIG_MII=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_NET_VENDOR_3COM is not set
#
# Tulip family network device support
#
# CONFIG_NET_TULIP is not set
# CONFIG_HP100 is not set
# CONFIG_NET_PCI is not set
#
# Ethernet (1000 Mbit)
#
# CONFIG_DL2K is not set
# CONFIG_E1000 is not set
# CONFIG_NS83820 is not set
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_R8169=y
# CONFIG_SIS190 is not set
# CONFIG_SK98LIN is not set
#
# Ethernet (10000 Mbit)
#
# CONFIG_IXGB is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set
#
# Wireless LAN (non-hamradio)
#
# CONFIG_NET_RADIO is not set
#
# Token Ring devices
#
# CONFIG_TR is not set
# CONFIG_NET_FC is not set
# CONFIG_RCPCI is not set
# CONFIG_SHAPER is not set
# CONFIG_NETCONSOLE is not set
#
# Wan interfaces
#
# CONFIG_WAN is not set
#
# Amateur Radio support
#
# CONFIG_HAMRADIO is not set
#
# IrDA (infrared) support
#
# CONFIG_IRDA is not set
#
# Bluetooth support
#
# CONFIG_BT is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
#
# ISDN subsystem
#
# CONFIG_ISDN is not set
#
# Telephony Support
#
# CONFIG_PHONE is not set
#
# Input device support
#
CONFIG_INPUT=y
#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
CONFIG_INPUT_MOUSEDEV_PSAUX=y
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_MOUSEDEV_PSAUX_ENABLE=y
# CONFIG_INPUT_JOYDEV is not set
# CONFIG_INPUT_TSDEV is not set
# CONFIG_INPUT_EVDEV is not set
# CONFIG_INPUT_EVBUG is not set
#
# Input I/O drivers
#
# CONFIG_GAMEPORT is not set
CONFIG_SOUND_GAMEPORT=y
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_NEWTON is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_INPUT_JOYSTICK is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
# CONFIG_INPUT_MISC is not set
#
# Character devices
#
CONFIG_VT=y
CONFIG_VT_CONSOLE=y
CONFIG_HW_CONSOLE=y
# CONFIG_SERIAL_NONSTANDARD is not set
#
# Serial drivers
#
# CONFIG_SERIAL_8250 is not set
#
# Non-8250 serial port support
#
CONFIG_UNIX98_PTYS=y
CONFIG_LEGACY_PTYS=y
CONFIG_LEGACY_PTY_COUNT=256
# CONFIG_QIC02_TAPE is not set
#
# IPMI
#
# CONFIG_IPMI_HANDLER is not set
#
# Watchdog Cards
#
# CONFIG_WATCHDOG is not set
CONFIG_HW_RANDOM=y
CONFIG_NVRAM=y
# CONFIG_RTC is not set
# CONFIG_GEN_RTC is not set
# CONFIG_DTLK is not set
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set
# CONFIG_SONYPI is not set
#
# Ftape, the floppy tape device driver
#
# CONFIG_FTAPE is not set
CONFIG_AGP=y
# CONFIG_AGP_ALI is not set
# CONFIG_AGP_ATI is not set
# CONFIG_AGP_AMD is not set
# CONFIG_AGP_AMD64 is not set
# CONFIG_AGP_INTEL is not set
# CONFIG_AGP_INTEL_MCH is not set
CONFIG_AGP_NVIDIA=y
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_SWORKS is not set
# CONFIG_AGP_VIA is not set
# CONFIG_AGP_EFFICEON is not set
# CONFIG_DRM is not set
# CONFIG_MWAVE is not set
# CONFIG_RAW_DRIVER is not set
# CONFIG_HANGCHECK_TIMER is not set
#
# I2C support
#
CONFIG_I2C=y
CONFIG_I2C_CHARDEV=y
#
# I2C Algorithms
#
# CONFIG_I2C_ALGOBIT is not set
# CONFIG_I2C_ALGOPCF is not set
#
# I2C Hardware Bus support
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_I810 is not set
# CONFIG_I2C_ISA is not set
CONFIG_I2C_NFORCE2=y
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_PROSAVAGE is not set
# CONFIG_I2C_SAVAGE4 is not set
# CONFIG_SCx200_ACB is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set
# CONFIG_I2C_VOODOO3 is not set
#
# Hardware Sensors Chip support
#
# CONFIG_I2C_SENSOR is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_FSCHER is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83627HF is not set
#
# Other I2C Chip support
#
# CONFIG_SENSORS_EEPROM is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_I2C_DEBUG_CHIP is not set
#
# Misc devices
#
# CONFIG_IBM_ASM is not set
#
# Multimedia devices
#
CONFIG_VIDEO_DEV=m
#
# Video For Linux
#
#
# Video Adapters
#
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_CPIA is not set
# CONFIG_VIDEO_SAA5246A is not set
# CONFIG_VIDEO_SAA5249 is not set
# CONFIG_TUNER_3036 is not set
# CONFIG_VIDEO_STRADIS is not set
# CONFIG_VIDEO_ZORAN is not set
# CONFIG_VIDEO_SAA7134 is not set
# CONFIG_VIDEO_MXB is not set
# CONFIG_VIDEO_DPC is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
#
# Radio Adapters
#
# CONFIG_RADIO_GEMTEK_PCI is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_MAESTRO is not set
#
# Digital Video Broadcasting Devices
#
# CONFIG_DVB is not set
#
# Graphics support
#
# CONFIG_FB is not set
# CONFIG_VIDEO_SELECT is not set
#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
# CONFIG_MDA_CONSOLE is not set
CONFIG_DUMMY_CONSOLE=y
#
# Sound
#
CONFIG_SOUND=m
#
# Advanced Linux Sound Architecture
#
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_RAWMIDI=m
# CONFIG_SND_SEQUENCER is not set
CONFIG_SND_OSSEMUL=y
CONFIG_SND_MIXER_OSS=m
CONFIG_SND_PCM_OSS=m
# CONFIG_SND_VERBOSE_PRINTK is not set
# CONFIG_SND_DEBUG is not set
#
# Generic devices
#
CONFIG_SND_MPU401_UART=m
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
#
# PCI devices
#
CONFIG_SND_AC97_CODEC=m
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_HDSP is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_YMFPCI is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_FM801 is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
CONFIG_SND_INTEL8X0=m
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VX222 is not set
#
# ALSA USB devices
#
# CONFIG_SND_USB_AUDIO is not set
#
# Open Sound System
#
# CONFIG_SOUND_PRIME is not set
#
# USB support
#
CONFIG_USB=y
CONFIG_USB_DEBUG=y
#
# Miscellaneous USB options
#
CONFIG_USB_DEVICEFS=y
# CONFIG_USB_BANDWIDTH is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
#
# USB Host Controller Drivers
#
CONFIG_USB_EHCI_HCD=m
# CONFIG_USB_EHCI_SPLIT_ISO is not set
CONFIG_USB_OHCI_HCD=m
# CONFIG_USB_UHCI_HCD is not set
#
# USB Device Class drivers
#
# CONFIG_USB_AUDIO is not set
# CONFIG_USB_BLUETOOTH_TTY is not set
# CONFIG_USB_MIDI is not set
# CONFIG_USB_ACM is not set
CONFIG_USB_PRINTER=m
CONFIG_USB_STORAGE=m
# CONFIG_USB_STORAGE_DEBUG is not set
# CONFIG_USB_STORAGE_DATAFAB is not set
# CONFIG_USB_STORAGE_FREECOM is not set
# CONFIG_USB_STORAGE_ISD200 is not set
# CONFIG_USB_STORAGE_DPCM is not set
# CONFIG_USB_STORAGE_HP8200e is not set
# CONFIG_USB_STORAGE_SDDR09 is not set
# CONFIG_USB_STORAGE_SDDR55 is not set
# CONFIG_USB_STORAGE_JUMPSHOT is not set
#
# USB Human Interface Devices (HID)
#
CONFIG_USB_HID=m
CONFIG_USB_HIDINPUT=y
# CONFIG_HID_FF is not set
CONFIG_USB_HIDDEV=y
#
# USB HID Boot Protocol drivers
#
# CONFIG_USB_KBD is not set
# CONFIG_USB_MOUSE is not set
# CONFIG_USB_AIPTEK is not set
# CONFIG_USB_WACOM is not set
# CONFIG_USB_KBTAB is not set
# CONFIG_USB_POWERMATE is not set
# CONFIG_USB_MTOUCH is not set
# CONFIG_USB_XPAD is not set
# CONFIG_USB_ATI_REMOTE is not set
#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set
# CONFIG_USB_HPUSBSCSI is not set
#
# USB Multimedia devices
#
# CONFIG_USB_VICAM is not set
# CONFIG_USB_DSBR is not set
# CONFIG_USB_IBMCAM is not set
# CONFIG_USB_KONICAWC is not set
# CONFIG_USB_OV511 is not set
# CONFIG_USB_PWC is not set
# CONFIG_USB_SE401 is not set
# CONFIG_USB_STV680 is not set
# CONFIG_USB_W9968CF is not set
#
# USB Network adaptors
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
CONFIG_USB_RTL8150=m
CONFIG_USB_USBNET=m
#
# USB Host-to-Host Cables
#
# CONFIG_USB_ALI_M5632 is not set
# CONFIG_USB_AN2720 is not set
# CONFIG_USB_BELKIN is not set
# CONFIG_USB_GENESYS is not set
# CONFIG_USB_NET1080 is not set
# CONFIG_USB_PL2301 is not set
#
# Intelligent USB Devices/Gadgets
#
CONFIG_USB_ARMLINUX=y
CONFIG_USB_EPSON2888=y
CONFIG_USB_ZAURUS=y
CONFIG_USB_CDCETHER=y
#
# USB Network Adapters
#
CONFIG_USB_AX8817X=y
#
# USB port drivers
#
#
# USB Serial Converter support
#
# CONFIG_USB_SERIAL is not set
#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_TIGL is not set
# CONFIG_USB_AUERSWALD is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_TEST is not set
#
# USB Gadget Support
#
# CONFIG_USB_GADGET is not set
#
# File systems
#
CONFIG_EXT2_FS=m
CONFIG_EXT2_FS_XATTR=y
# CONFIG_EXT2_FS_POSIX_ACL is not set
# CONFIG_EXT2_FS_SECURITY is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_FS_XATTR=y
# CONFIG_EXT3_FS_POSIX_ACL is not set
# CONFIG_EXT3_FS_SECURITY is not set
CONFIG_JBD=y
# CONFIG_JBD_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_ROMFS_FS is not set
# CONFIG_QUOTA is not set
# CONFIG_AUTOFS_FS is not set
# CONFIG_AUTOFS4_FS is not set
#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
CONFIG_ZISOFS_FS=y
CONFIG_UDF_FS=m
#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=m
CONFIG_MSDOS_FS=m
CONFIG_VFAT_FS=m
CONFIG_NTFS_FS=m
# CONFIG_NTFS_DEBUG is not set
CONFIG_NTFS_RW=y
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
# CONFIG_DEVFS_FS is not set
# CONFIG_DEVPTS_FS_XATTR is not set
CONFIG_TMPFS=y
# CONFIG_HUGETLBFS is not set
# CONFIG_HUGETLB_PAGE is not set
CONFIG_RAMFS=y
#
# Miscellaneous filesystems
#
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
#
# Network File Systems
#
# CONFIG_NFS_FS is not set
# CONFIG_NFSD is not set
# CONFIG_EXPORTFS is not set
CONFIG_SMB_FS=m
# CONFIG_SMB_NLS_DEFAULT is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_INTERMEZZO_FS is not set
# CONFIG_AFS_FS is not set
#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
#
# Native Language Support
#
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=m
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
CONFIG_NLS_UTF8=m
#
# Profiling support
#
# CONFIG_PROFILING is not set
#
# Kernel hacking
#
# CONFIG_DEBUG_KERNEL is not set
CONFIG_EARLY_PRINTK=y
# CONFIG_DEBUG_SPINLOCK_SLEEP is not set
# CONFIG_FRAME_POINTER is not set
CONFIG_X86_FIND_SMP_CONFIG=y
CONFIG_X86_MPPARSE=y
#
# Security options
#
# CONFIG_SECURITY is not set
#
# Cryptographic options
#
# CONFIG_CRYPTO is not set
#
# Library routines
#
CONFIG_CRC32=y
CONFIG_ZLIB_INFLATE=y
CONFIG_X86_BIOS_REBOOT=y
CONFIG_PC=y
<-------------end snippet----------------->
I've a simmilar problem with
I've a simmilar problem with my lidl/silvercrest mouse. the advanced buttons send keyboard events instead of mouse button ones. But the kernel seems to know, that this "keyboard" is attached to a mouse.
Is there any way, that the advanced buttons send mouse events (at least to Xorg)?
xev simmilar to above
dmesg:
/proc/bus/usb/devices
Thanks!
Logitech diNovo Cordless Desktop
I have recently purchased the Logitech diNovo Cordless Desktop which is the non-bluetooth version of the Logitech diNovo Multimedia Desktop. Everything is working fine except I want to get the multimedia keys to work.
The problem seems to be that when I press the multimedia buttons they actually generate mouse move events.
I am running 2.6.9 with appropriate modules loaded.
This is a cordless keyboard which uses RF to a small USB receiver.
Any ideas?
Nevermind
My problem appears to be related to using usbhid instead of using the usbkbd and usbmouse modules. Apparently usbkbd and usbmouse are obsolete. If you have a similar problem trying only loading the usbhid module under 2.6 kernels and do not load the usbkbd and usbmouse modules.
joystick driver options
Hello. I have ubuntu 6.06, with kernel 2.6.15-26 running. i've gotten my game port to work but it does not detect the gamepad correctly, and assigns too many axes and too few buttons. It by default thinks i have a Analog 4-axis 4-button joystick when that's not the case. I have joystick driver version 2.1.0 and can't find documentation for it anywhere.
What are the module options i need to use to change this, and for which module? I've tried modprobe analog js=gamepad, modprobe analog js_an=0x201,0x30f3, and the same options with modules like gameport and joydev.
The buttons are working fine on the gamepad, just not the axes. 4 are assigned. Has anyone fixed this?
I have a similar problem
I have an EMS USB II (two port PS2->USB converter, usb id 0b43:0003) that worked perfectly a few months ago. Ever since I upgraded to Ubuntu Feisty with kernel 2.6.20-15 it is detected as a 4 axis 16 button joystick instead of an 8 axis 32 button joystick. It appears the dual ports are sharing the axes and buttons. Of course, this makes the device useless since the axis/button status are constantly changing according to /dev/input/js0.
same here
I have a similar problem in Feisty (kernel 2.6.20-15) too. With my Saitek X45 all six axis work but it's detected with only 16 buttons. Buttons 17-26 overlap with buttons 1-10. If I press buttons 1 and 17 at the same time then the status for button 1 stays on. If I press only button 1 or only button 17 then the status for button 1 flickers on and off.
I have the same problem with
I have the same problem with Feisty - saitek worked ok on edgy (except that some povs got axis and so on but at least everything got assigned something) - now it's a mess
Joystick input problems
I, too, just upgraded to Feisty, and I have the following code snippet that no longer works as it did previously:
struct js_event js; int jsfd = -1; if((jsfd = open("/dev/input/js0",O_RDONLY)) != -1){ while(1) { if(read(jsfd,&js,sizeof(struct js_event)) == sizeof(struct js_event)) { if (js.type==JS_EVENT_BUTTON) { if(js.value == 1) printf("button press\n"); if(js.value == 0) printf("button released\n"); } } } }This used to print one press/release pair for one button press, but now it prints many.
Re: Joystick input problems
I should clarify. I have an EMS PS to USB adapter as well, which Paul's post details more succinctly than mine.
The problem with buggy
The problem with buggy buttons is now fixed in vanilla kernel (and the fix also appeared in 2.6.20.7 -stable kernel release).
problems with Logitech Joystick
I've got a Logitech Extreme 3D Pro Joystick. (Actually, I've had two of them; I bought a new one yesterday.) The new one is recognized by Windows and Mac, but not by Linux. (Debian 2.6.8-2-686.)
I had the exact joystick a little while ago, and Linux recognized it just fine.
/dev/input/js0was created, and I could read from it to my heart's content. But the new one I bought yesterday is not recognized at all. Unfortunately I don't have access to the old one at the moment to confirm whether it still works.When I plug the new one in, I get
kernel: usb 2-1: new low speed USB device using address 2 kernel: drivers/usb/input/hid-core.c: ctrl urb status -2 receivedin /var/log/messages. Sometimes (but not all of the time) I also get
But it does look like somebody's waiting too patiently for a response that never comes. I never get a recognition message confirming the manufacturer and product name, and I never get anything appearing in
/dev/input/. Sometimes the whole input subsystem gets hung, and my regular USB mouse stops responding, and I have to reboot.Anyone seen anything like this before? Is the driver too sensitive to some timing issue with some models of this joystick? Is the particular joystick I have maybe borderline, and Windows and Mac just have better luck talking to it? (I hope not, because I'll have a hard time convincing the store to take it back with that kind of Linux-specific failure mode.)