Keir, We (team) have tried Xen-3.4 stable and current unstable-dev branch on number of Desktops. We have observed that on many desktops we can''t access keyboard (USB/Serial) and mouse after complete boot. # lspci for one of such machine: 00:00.0 Host bridge: Intel Corporation 82945G/GZ/P/PL Memory Controller Hub (rev 02) 00:02.0 VGA compatible controller: Intel Corporation 82945G/GZ Integrated Graphics Controller (rev 02) 00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 01) 00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 01) 00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 01) 00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 01) 00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 01) 00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 01) 00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev e1) 00:1f.0 ISA bridge: Intel Corporation 82801GB/GR (ICH7 Family) LPC Interface Bridge (rev 01) 00:1f.2 IDE interface: Intel Corporation 82801GB/GR/GH (ICH7 Family) SATA IDE Controller (rev 01) 00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 01) 01:05.0 Ethernet controller: Marvell Technology Group Ltd. 88E8001 Gigabit Ethernet Controller (rev 13) Further changing/adding config options we found that enabling INPUT_EVDEV, makes work everything. I am not sure about problem, but how about adding CONFIG_INPUT_EVDEV as "default y". (i have attached the patch also) comments???? --- a/drivers/input/Kconfig Thu Jun 18 10:32:16 2009 +0100 +++ b/drivers/input/Kconfig Tue Jul 07 23:09:13 2009 +0530 @@ -110,6 +110,7 @@ config INPUT_EVDEV tristate "Event interface" + default y help Say Y here if you want your input device events be accessible under char device 13:64+ - /dev/input/eventX in a generic way. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
On 07/07/2009 13:13, "Tej" <bewith.tej@gmail.com> wrote:> Further changing/adding config options we found that enabling > INPUT_EVDEV, makes work everything. > I am not sure about problem, but how about adding CONFIG_INPUT_EVDEV > as "default y". (i have attached the patch also) > > comments????You should submit patches to modify the defconfig files in the buildconfigs/ directory. Don''t change Kconfig files directly to change defaults. -- Keir _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
On Tue, Jul 7, 2009 at 6:14 PM, Keir Fraser<keir.fraser@eu.citrix.com> wrote:> On 07/07/2009 13:13, "Tej" <bewith.tej@gmail.com> wrote: > >> Further changing/adding config options we found that enabling >> INPUT_EVDEV, makes work everything. >> I am not sure about problem, but how about adding CONFIG_INPUT_EVDEV >> as "default y". (i have attached the patch also) >> >> comments???? > > You should submit patches to modify the defconfig files in the buildconfigs/ > directory. Don''t change Kconfig files directly to change defaults.sure, i will re-submit this patch.> > -- Keir > > >_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
On Tue, Jul 7, 2009 at 6:14 PM, Keir Fraser<keir.fraser@eu.citrix.com> wrote:> On 07/07/2009 13:13, "Tej" <bewith.tej@gmail.com> wrote: > >> Further changing/adding config options we found that enabling >> INPUT_EVDEV, makes work everything. >> I am not sure about problem, but how about adding CONFIG_INPUT_EVDEV >> as "default y". (i have attached the patch also) >> >> comments???? > > You should submit patches to modify the defconfig files in the buildconfigs/ > directory. Don''t change Kconfig files directly to change defaults.patch changes the defconfig to add CONFIG_INPUT_EVDEV as default ''y'' in xen compilation with EXTRAVERSION = -xen0 and Arch x86_32/64. (patch is attached also) comments???? diff -r baeb818cd2dc buildconfigs/linux-defconfig_xen0_x86_32 --- a/buildconfigs/linux-defconfig_xen0_x86_32 Thu Jun 18 10:32:16 2009 +0100 +++ b/buildconfigs/linux-defconfig_xen0_x86_32 Tue Jul 14 20:59:41 2009 +0530 @@ -803,7 +803,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set # CONFIG_INPUT_TSDEV is not set -# CONFIG_INPUT_EVDEV is not set +CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set # diff -r baeb818cd2dc buildconfigs/linux-defconfig_xen0_x86_64 --- a/buildconfigs/linux-defconfig_xen0_x86_64 Thu Jun 18 10:32:16 2009 +0100 +++ b/buildconfigs/linux-defconfig_xen0_x86_64 Tue Jul 14 20:59:41 2009 +0530 @@ -754,7 +754,7 @@ CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768 # CONFIG_INPUT_JOYDEV is not set # CONFIG_INPUT_TSDEV is not set -# CONFIG_INPUT_EVDEV is not set +CONFIG_INPUT_EVDEV=y # CONFIG_INPUT_EVBUG is not set #> > -- Keir > > >_______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel