From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 00:36:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 01:36:59 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050901003659.0E0FE303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hardawayd at slu.edu ------- Additional Comments From mdz at ubuntu.com 2005-09-01 01:36 UTC ------- *** Bug 14420 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 00:54:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 01:54:23 +0100 (BST) Subject: [Bug 14451] usb devices not detected In-Reply-To: Message-ID: <20050901005423.0E02F303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14451 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 01:17:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 02:17:47 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050901011747.133DF303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From zulcss at gmail.com 2005-09-01 02:17 UTC ------- Made patch for buslogic hotplug in my arch -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 01:32:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 02:32:07 +0100 (BST) Subject: [Bug 13370] [Breezy|Hoary] Dell D610 (and other models) freezes at least once a day In-Reply-To: Message-ID: <20050901013207.DD235303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13370 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From zulcss at gmail.com 2005-09-01 02:32 UTC ------- Created a patch should be included in the next version -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 01:58:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 02:58:41 +0100 (BST) Subject: [Bug 14458] New: more upstream inotify goodness Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14458 Ubuntu | linux Summary: more upstream inotify goodness Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: desrt at desrt.ca QAContact: kernel-bugs at lists.ubuntu.com CC: jbailey at ubuntu.com OtherBugsDependingO 14456 nThis: To address some of the issues in a recent rant I made about inotify, John McCutchan has made some changes. These changes are 100% ABI compatible (otherwise, they would never be accepted upstream). They'll likely be in 2.6.14, and it would be really nice if Breezy had them. It fixes a potential race condition problem with the old ABI where events might have been missed by requesting a new watch when a watch was already in place on the same inode. If the old watch had more events being reported than the new watch then the result would be that some of the requested events would go unreported (since the mask was replaced outright). The patch allows users to request that the existing mask is OR'd with the new mask so that no events are lost. Cheers Signed-off-by: John McCutchan Signed-off-by: Robert Love Index: linux/fs/inotify.c =================================================================== --- linux.orig/fs/inotify.c 2005-08-28 19:41:01.000000000 -0400 +++ linux/fs/inotify.c 2005-08-31 15:41:11.000000000 -0400 @@ -925,6 +925,7 @@ struct nameidata nd; struct file *filp; int ret, fput_needed; + int mask_add = 0; filp = fget_light(fd, &fput_needed); if (unlikely(!filp)) @@ -947,6 +948,9 @@ down(&inode->inotify_sem); down(&dev->sem); + if (mask & IN_MASK_ADD) + mask_add = 1; + /* don't let user-space set invalid bits: we don't want flags set */ mask &= IN_ALL_EVENTS; if (unlikely(!mask)) { @@ -960,7 +964,10 @@ */ old = inode_find_dev(inode, dev); if (unlikely(old)) { - old->mask = mask; + if (mask_add) + old->mask |= mask; + else + old->mask = mask; ret = old->wd; goto out; } Index: linux/include/linux/inotify.h =================================================================== --- linux.orig/include/linux/inotify.h 2005-08-28 19:41:01.000000000 -0400 +++ linux/include/linux/inotify.h 2005-08-31 15:38:36.000000000 -0400 @@ -47,6 +47,7 @@ #define IN_MOVE (IN_MOVED_FROM | IN_MOVED_TO) /* moves */ /* special flags */ +#define IN_MASK_ADD 0x20000000 /* add to the mask of an already existing watch */ #define IN_ISDIR 0x40000000 /* event occurred against dir */ #define IN_ONESHOT 0x80000000 /* only send event once */ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 02:20:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 03:20:07 +0100 (BST) Subject: [Bug 14460] New: No drm module for savage chipset. Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14460 Ubuntu | linux Summary: No drm module for savage chipset. Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: helg0116 at morris.umn.edu QAContact: kernel-bugs at lists.ubuntu.com The version of mesa in breezy includes dri support for Savage cards. However, the kernel drm module is not available in breezy, making dri unusable. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 02:54:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 03:54:37 +0100 (BST) Subject: [Bug 2710] Non-detection of module required for initrd image at install In-Reply-To: Message-ID: <20050901025437.74517303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2710 Ubuntu | linux ------- Additional Comments From jbailey at ubuntu.com 2005-09-01 03:54 UTC ------- (In reply to comment #23) > From what I understood, the initrd image that gets built with mkinitrd detects > at the build time of the image what modules are required for the rootfs. In > Warty and Hoary, this process checked /proc entries for the necessary device, > and as the .proc_name section of a struct was not defined, the relevant part of > the build process can not resolve which modules were necessary for the rootfs, > hence why it fails at boot, and also why adding the module name to > /etc/mkinitrd/modules worked for me. Breezy does this a bit differently now. We now load as many modules as we reasonably can into the initrd(initramfs) by default, and autodetect at startup which ones are suitable. Hopefully this should resolve the problem completely. Both 3w_xxxx and 3x_9xxx are present in the initramfs'. Tks, Jeff Bailey -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 03:17:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 04:17:58 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050901031758.70865303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules ------- Additional Comments From pete at shinners.org 2005-09-01 04:17 UTC ------- Perhaps it is a time problem then. I saved my original "modules.dep" from when I did the install. It has a time of "12:25". The directories that were created for the modules have the time "12:22". I'm not sure how to test the time without getting another new kernel install? Would it be better to ensure that a full "depmod" was run in the post-install section of any package that installs modules? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 04:10:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 05:10:16 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050901041016.DB7B1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- OtherBugsDependingO| |13521 nThis| | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 06:14:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 07:14:06 +0100 (BST) Subject: [Bug 14255] linux-restricted-modules must depend on libstdc++5 In-Reply-To: Message-ID: <20050901061406.23E91303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14255 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |madman2k at gmx.de ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-01 07:14 UTC ------- *** Bug 13966 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 06:36:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 07:36:42 +0100 (BST) Subject: [Bug 14039] PCMCIA/Cardbus cards not detected In-Reply-To: Message-ID: <20050901063642.61AB0303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14039 Ubuntu (laptop) | linux ------- Additional Comments From martijn at foodfight.org 2005-09-01 07:36 UTC ------- With a PCMCIA card inserted on boot, and without boot options, I sometimes get a blank screen/hard crash instead of X (using fglrx) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 10:38:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 11:38:06 +0100 (BST) Subject: [Bug 14477] New: Install fails to load on Dell Precision 380 -- workaround included Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14477 Ubuntu | linux Summary: Install fails to load on Dell Precision 380 -- workaround included Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: wingo at pobox.com QAContact: kernel-bugs at lists.ubuntu.com Hi, I just lost a couple days of my life! The colony 3 cd fails to start on my new Dell Precision 380. It gets to starting the hotplug system, into usb.rc, then just hangs. I disabled USB in the bios, booted with a ps2 keyboard, and that worked. But then you are left with a system that hangs in hotplug when you start USB. The issue is that the intiramfs is traversing /sys and loading up modules for the devices. For some reason it is loading uhci-hcd for the usb bus when it should be loading ehci-hcd. This is as noted in bug #12247 and in http://lists.us.dell.com/pipermail/linux-precision/2005-August/000626.html. Bug #12247 is actually a symptom of this bug. The workaround is to edit /etc/mkinitramfs/modules and add one line "ehci-hcd", to the end. Not sure how the installer should deal with this -- is there an option to load certain modules first? This might be a bios bug, but it should be possible to work around it. Now I have everything working. On my nice new system :) But those two days will not come back to me. Also note that FC4 installs fine. $ lspci | grep -i usb 0000:00:1d.0 USB Controller: Intel Corp.: Unknown device 27c8 (rev 01) 0000:00:1d.1 USB Controller: Intel Corp.: Unknown device 27c9 (rev 01) 0000:00:1d.2 USB Controller: Intel Corp.: Unknown device 27ca (rev 01) 0000:00:1d.3 USB Controller: Intel Corp.: Unknown device 27cb (rev 01) 0000:00:1d.7 USB Controller: Intel Corp.: Unknown device 27cc (rev 01) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 10:38:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 11:38:41 +0100 (BST) Subject: [Bug 12247] Keyboard dose not work during installation on a Dell Precision 380 In-Reply-To: Message-ID: <20050901103841.74B5E303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12247 Ubuntu | linux ------- Additional Comments From wingo at pobox.com 2005-09-01 11:38 UTC ------- See bug #14477 for a workaround. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 10:42:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 11:42:25 +0100 (BST) Subject: [Bug 14477] Install fails to load on Dell Precision 380 -- workaround included In-Reply-To: Message-ID: <20050901104225.F265F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14477 Ubuntu | linux ------- Additional Comments From wingo at pobox.com 2005-09-01 11:42 UTC ------- I should note two more things: 1) For the workaround, you need to add that line to that /etc/mkinitramfs/modules, and then reinstall your kernel (using dpkg -i) 2) This issue is not solved in linux-2.6.13. However no recompile is necessary for the workaround, just a normal ubuntu kernel deb. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 12:56:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 13:56:39 +0100 (BST) Subject: [Bug 14487] New: clock is messed up, upon boot it becomes 25 Apr 2037 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14487 Ubuntu | linux Summary: clock is messed up, upon boot it becomes 25 Apr 2037 Product: Ubuntu Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: florin at iucha.net QAContact: kernel-bugs at lists.ubuntu.com After booting linux-image-2.6.12-8-powerpc64-smp the clock is fast-forwarded to 25 or 27 Apr 2037. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 12:57:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 13:57:57 +0100 (BST) Subject: [Bug 14477] Install fails to load on Dell Precision 380 -- workaround included In-Reply-To: Message-ID: <20050901125757.183C4303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14477 Ubuntu | linux jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |jbailey at ubuntu.com Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From jbailey at ubuntu.com 2005-09-01 13:57 UTC ------- (In reply to comment #0) > The issue is that the intiramfs is traversing /sys and loading up modules for > the devices. For some reason it is loading uhci-hcd for the usb bus when it > should be loading ehci-hcd. Can you give me the contents of the 'modaliases' file that it's finding in /sys? I need to figure out whether or not that string is duplicated for both uhci and ehci. If not, it should corrected to be the other one. If it is, either one should be removed, or I need a blacklist mechanism of some sort. You can do this from a running system, no prob. (If this doesn't make sense, let me know.) Tks, Jeff Bailey -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 12:59:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 13:59:14 +0100 (BST) Subject: [Bug 14488] New: linux-image-2.6.12-8-powerpc64-smp fails to power off the machine Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14488 Ubuntu | linux Summary: linux-image-2.6.12-8-powerpc64-smp fails to power off the machine Product: Ubuntu Version: unspecified Platform: powerpc OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: florin at iucha.net QAContact: kernel-bugs at lists.ubuntu.com The normal "halt" refuses to power off the machine (dual PowerMac G5 2.7, "PowerMac7,3"). "reboot" umounts all partitions, remount / read-only and drops me into a maintenance shell. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 13:01:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 14:01:18 +0100 (BST) Subject: [Bug 14487] clock is messed up, upon boot it becomes 25 Apr 2037 In-Reply-To: Message-ID: <20050901130118.0E41B303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14487 Ubuntu | linux ------- Additional Comments From florin at iucha.net 2005-09-01 14:01 UTC ------- This is on a "PowerMac 7,3" G5. linux-image-2.6.12-7-powerpc64-smp works fine. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 13:30:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 14:30:25 +0100 (BST) Subject: [Bug 14477] Install fails to load on Dell Precision 380 -- workaround included In-Reply-To: Message-ID: <20050901133025.89D05303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14477 Ubuntu | linux ------- Additional Comments From wingo at pobox.com 2005-09-01 14:30 UTC ------- Not sure which one you want, but for the pci id's that I listed in comment #0: $ for i in /sys/bus/pci/devices/0000\:00\:1d.*; do echo $i `cat $i/modalias`; done /sys/bus/pci/devices/0000:00:1d.0 pci:v00008086d000027C8sv00001028sd000001A8bc0Csc03i00 /sys/bus/pci/devices/0000:00:1d.1 pci:v00008086d000027C9sv00001028sd000001A8bc0Csc03i00 /sys/bus/pci/devices/0000:00:1d.2 pci:v00008086d000027CAsv00001028sd000001A8bc0Csc03i00 /sys/bus/pci/devices/0000:00:1d.3 pci:v00008086d000027CBsv00001028sd000001A8bc0Csc03i00 /sys/bus/pci/devices/0000:00:1d.7 pci:v00008086d000027CCsv00001028sd000001A8bc0Csc03i20 Seems the UHCI comes first: $ lspci -v [cut for those devices only] 0000:00:1d.0 USB Controller: Intel Corp.: Unknown device 27c8 (rev 01) (prog-if 00 [UHCI]) Subsystem: Dell: Unknown device 01a8 Flags: bus master, medium devsel, latency 0, IRQ 21 I/O ports at ff80 [size=32] 0000:00:1d.1 USB Controller: Intel Corp.: Unknown device 27c9 (rev 01) (prog-if 00 [UHCI]) Subsystem: Dell: Unknown device 01a8 Flags: bus master, medium devsel, latency 0, IRQ 22 I/O ports at ff60 [size=32] 0000:00:1d.2 USB Controller: Intel Corp.: Unknown device 27ca (rev 01) (prog-if 00 [UHCI]) Subsystem: Dell: Unknown device 01a8 Flags: bus master, medium devsel, latency 0, IRQ 18 I/O ports at ff40 [size=32] 0000:00:1d.3 USB Controller: Intel Corp.: Unknown device 27cb (rev 01) (prog-if 00 [UHCI]) Subsystem: Dell: Unknown device 01a8 Flags: bus master, medium devsel, latency 0, IRQ 23 I/O ports at ff20 [size=32] 0000:00:1d.7 USB Controller: Intel Corp.: Unknown device 27cc (rev 01) (prog-if 20 [EHCI]) Subsystem: Dell: Unknown device 01a8 Flags: bus master, medium devsel, latency 0, IRQ 21 Memory at ffa80800 (32-bit, non-prefetchable) [size=1K] Capabilities: -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 14:41:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 15:41:34 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot : unhappy with NIC In-Reply-To: Message-ID: <20050901144134.52EC8303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 15:41 UTC ------- Coincidentally, I just installed an i386 system with this same card (8139c), and I get the same driver loading (8139cp, then fail to 8139too). However, I don't get a delay. Is this still affecting you with the latest breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 14:43:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 15:43:05 +0100 (BST) Subject: [Bug 13271] Kernal Panic after setting up ipv6 In-Reply-To: Message-ID: <20050901144305.57298303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13271 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 15:43 UTC ------- Can you send me the output of the kernel panic? Also, can you try the 2.6.12-8 kernel in breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 15:12:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 16:12:14 +0100 (BST) Subject: [Bug 12942] [KLIBC] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050901151214.83C5B303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 16:12 UTC ------- Yeah, I found the kernel message. Comes from sunrpc. No idea how to trace this. RPC is voodoo that I hate getting into. Fabio, you say you see the client and server communicating and then it still fails? Can you do Daniel's "fix" and see if the tcpdump is somehow different on negotiation when it works compared to when it fails? >From what it sounds like, the server is getting the client request, but the client is not getting the ack back from the server. This would sound to me like the kernel IP stack is not fully configured at this point, in some way. Since Matt can work around it with a sleep before mounting, this seems to make sense. However, Daniel's reboot workaround makes me feel uneasy about that assumption. In Daniel's case there is no difference in the client after a reboot, just that the server has gone through one failure. Anyone tried this with something other than a Linux nfs server? Is the nfs server the userspace or kernel nfsd? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 15:13:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 16:13:32 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot : unhappy with NIC In-Reply-To: Message-ID: <20050901151332.17BEE303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From vincent.trouilliez at modulonet.fr 2005-09-01 16:13 UTC ------- > Is this still affecting you with the latest breezy? Yep, sadly :o( I have the 3 latest kernels in the GRUB menu, 2.6.12-6, 7 and 8, and all three have this problem unfortunately... It's getting especially annoying now that we have usplash getting ready, as I am stuck in text mode for 20 seconds before usplash can start... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 15:14:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 16:14:25 +0100 (BST) Subject: [Bug 12904] Press keys or disck access randomly hangs the system In-Reply-To: Message-ID: <20050901151425.D5388303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12904 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 16:14 UTC ------- Can you send the dmesg out please? This will help us pinpoint any issues in the hardware detection, and any warnings that might have come up during the kernel boot. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 15:16:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 16:16:22 +0100 (BST) Subject: [Bug 12721] Hibernate destroys boot configuration In-Reply-To: Message-ID: <20050901151622.5189E303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12721 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 16:16 UTC ------- Did the kernel misdetect the partition, or did fsck misdetect it and try to run fsck.ext3? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 15:46:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 16:46:27 +0100 (BST) Subject: [Bug 12070] Compaq 1850R crash during install and while running In-Reply-To: Message-ID: <20050901154627.6B53D303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12070 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 16:46 UTC ------- Any chance there's a bios upgrade to fix the problems with this machine? Other than that, the only "fixes" seem to be to some blacklist entries for hotplug. Not sure I can do anything in the kernel to fix this. You could try the latest breezy kernel (2.6.12-8) and see if that helps in anyway. Lot of acpi fixes there. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 15:47:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 16:47:17 +0100 (BST) Subject: [Bug 14498] New: kernel unpacking on installation fails Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14498 Ubuntu | kernel-package Summary: kernel unpacking on installation fails Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: iczolkos at rz.uni-potsdam.de QAContact: kernel-bugs at lists.ubuntu.com CC: iczolkos at rz.uni-potsdam.de Dear Ubuntu-Team, I have quite a new Acer Travelmate 8104 Laptop. When I want to run the Live/Install-DVD in any modus (live, server, linux, expert) the in order to install the system, it won't commence after the third line which sounds appr like: 'unpacking kernel...'. I tried the 'vga=771' and 'hw- detect/start_pcmcia=false' options. Without success. Experience with other linuxes on this Computer are: I tried to install debian (sarge-stable) before, which could not set up my TFT 1680x1050 display. Right now I have Fedora Core 4 installed but I it crashes whenever the pcmcia is loaded. I can only make the FC4 system start by manually deactivating it on every startup. Kernel options 'nopcmcia' and 'hw-detect/ start_pcmcia=false' won't help. Additionally the X-server doesn't recognise my ATI Radeon Mobility X700 and I can choose 1400x1050 as the maximum resolution. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 15:47:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 16:47:54 +0100 (BST) Subject: [Bug 11953] Genius PS/2 NetScroll+ Eye Optical mouse is freezed In-Reply-To: Message-ID: <20050901154754.E1C98303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11953 Ubuntu (kubuntu) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 16:47 UTC ------- Anyway you can try going back to a live boot CD and send me the output of dmesg? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 16:02:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 17:02:14 +0100 (BST) Subject: [Bug 11602] Kernel Bug when attaching USB stick (amd64) In-Reply-To: Message-ID: <20050901160214.07225303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11602 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 17:02 UTC ------- Any chance we could retest this with a 2.6.12 kernel from breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 16:07:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 17:07:23 +0100 (BST) Subject: [Bug 11602] Kernel Bug when attaching USB stick (amd64) In-Reply-To: Message-ID: <20050901160723.D6B7F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11602 Ubuntu | linux ------- Additional Comments From phbaer at npw.net 2005-09-01 17:07 UTC ------- (In reply to comment #12) > Any chance we could retest this with a 2.6.12 kernel from breezy? Not before this weekend. I can't restart the server during office hours. I'll install 2.6.12 from breezy on saturday or sunday this week. Would this be ok for you? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 16:13:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 17:13:30 +0100 (BST) Subject: [Bug 14500] New: Unquietened kernel messages make for dirty boot ; -) Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14500 Ubuntu | linux Summary: Unquietened kernel messages make for dirty boot ;-) Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: jeff.waugh at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com There's a few kernel messages that pop up during boot that could probably be turned off by quiet, to make the boot less ugly. The most obvious one is the audit one very close to boot, but there's a couple of IDE messages too (filesystem mounted and such). Thanks! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 16:55:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 17:55:34 +0100 (BST) Subject: [Bug 13786] vga16fb broken on some hardware. In-Reply-To: Message-ID: <20050901165534.D1364303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13786 Ubuntu (installer) | linux ------- Additional Comments From thomas at winischhofer.net 2005-09-01 17:55 UTC ------- Erm.. allow me, you folks ARE aware of the fact that vga16fb pokes around in the standard VGA registers which not necessarily do the right thing for, say, LCD panels...? This is no issue of a "broken BIOS" or the like. Many graphics systems, especially those in laptops, use TMDS/LVDS or what-not controllers which require specific setup, and are not bound to the VGA registers. vga16fb has, naturally I might add, no knowledge whatsoever about such controllers. Why do you think the X drivers have in many cases 100k of code only for display mode switching...? :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 16:58:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 17:58:11 +0100 (BST) Subject: [Bug 13786] vga16fb broken on some hardware. In-Reply-To: Message-ID: <20050901165811.A1917303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13786 Ubuntu (installer) | linux ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-01 17:58 UTC ------- Hi Thomas! While I'm fully aware of just how hideous modern mode programming is (mainly through the Radeon driver -- I've no idea what SiS is like, but can guess), I would expect both VGA and VESA to 'just work', and be ready to call it a BIOS bug if it doesn't. While we should be programming registers properly and setting all the right modes while fully aware of how to properly set modes, the BIOS should at least be providing the support structures of VGA and VESA for us to fall back on, IMO. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 17:39:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 18:39:53 +0100 (BST) Subject: [Bug 13786] vga16fb broken on some hardware. In-Reply-To: Message-ID: <20050901173953.68371303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13786 Ubuntu (installer) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 18:39 UTC ------- Fully in agreement with Daniel's statement. VGA is a standard for a reason. And if a system provides VGA, and using it by spec doesn't work, then the hardware can be easily blamed. The hardware should be providing what it needs in order for standard VGA to work. However, I still contend that since Windows works in a VGA context during install phase, that the vga16fb driver is just not doing something. Whether the Windows installer knows of some workaround outside of normal specs, or that the vga16fb driver is broken, remains to be proven. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 17:56:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 18:56:40 +0100 (BST) Subject: [Bug 9972] networkproblem with RTL-8139 In-Reply-To: Message-ID: <20050901175640.6DC2E303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9972 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 18:56 UTC ------- Read the linux-kernel bug report about this, and it seems to be a bios bug. Currently the suggested workaround is adding pci=routeirq to the kernel command line (which matches the problem description, since not getting an IRQ would cause the incoming packets to never be seen). Can you send me the output of /proc/interrupts just so I can confirm, and then also try the pci=routeirq workaround? This will probably be chalked up to a BIOS bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 18:30:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 19:30:22 +0100 (BST) Subject: [Bug 9064] System powers off unexpectedly In-Reply-To: Message-ID: <20050901183022.744B1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9064 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 19:30 UTC ------- Anything new with this bug report? It's kind of old. Have you tested the latest breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 18:31:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 19:31:47 +0100 (BST) Subject: [Bug 8955] Crash during shutdown when pcilynx is loaded In-Reply-To: Message-ID: <20050901183147.1B9CC303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8955 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 19:31 UTC ------- No follow ups, and I do know that recent ieee1394 should fix this. Closing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 18:35:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 19:35:33 +0100 (BST) Subject: [Bug 8905] Hang when loading some module In-Reply-To: Message-ID: <20050901183533.E25AE303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8905 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 19:35 UTC ------- No more feedback. I'm going to assume this is fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 18:39:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 19:39:23 +0100 (BST) Subject: [Bug 8843] System becomes unresponsive when CD-ROM is inserted In-Reply-To: Message-ID: <20050901183923.97676303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8843 Ubuntu (kubuntu) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 19:39 UTC ------- After reading the other bug report (10193) it seems to me that this might be a userspace bug. If ejecting the disk brings kded back in line, that would only make sense. Any objections to closing this bug? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 18:47:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 19:47:41 +0100 (BST) Subject: [Bug 1927] System hangs on network activity (realtek 8139) In-Reply-To: Message-ID: <20050901184741.32DD7303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1927 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 19:47 UTC ------- Can you try booting with pci=routeirq? This was suggested in a linux-kernel bug report. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 18:48:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 19:48:24 +0100 (BST) Subject: [Bug 8713] Installation Freeze when trying to accesses Repositories In-Reply-To: Message-ID: <20050901184824.4BC51303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8713 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 19:48 UTC ------- This sounds like a duplicate of another bug. Do you have a RealTek 8139 ethernet card? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 19:23:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 20:23:51 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050901192351.E7656303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules ------- Additional Comments From mdz at ubuntu.com 2005-09-01 20:23 UTC ------- (In reply to comment #4) > Would it be better to ensure that a full "depmod" was run in the post-install > section of any package that installs modules? > That's such a fine idea that we retroactively implemented it ;-) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 19:40:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 20:40:04 +0100 (BST) Subject: [Bug 9064] System powers off unexpectedly In-Reply-To: Message-ID: <20050901194004.502DE303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9064 Ubuntu | linux ------- Additional Comments From steven.boothe at gmail.com 2005-09-01 20:40 UTC ------- Interesting. I would have tested if someone had added a note that indicated some attention had been given this issue and that there it may be worth my time to give it a try. It does take a little bit of time to download the ISO and burn another potential coaster on my slow connection. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 20:44:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 21:44:40 +0100 (BST) Subject: [Bug 9064] System powers off unexpectedly In-Reply-To: Message-ID: <20050901204440.21136303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9064 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-01 21:44 UTC ------- I've only recently taken on the kernel maint full time, so all of these bugs are new to me :) Just checking if anything new had occured since the last comment in the bug report, before I start digging into trying to figure out the problem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 21:57:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 22:57:16 +0100 (BST) Subject: [Bug 14519] New: skge unable to contact network Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14519 Ubuntu | kernel-package Summary: skge unable to contact network Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: frlinux at frlinux.net QAContact: kernel-bugs at lists.ubuntu.com I downloaded the latest colony (beta3) and using it on an Asus a8n with dual NIC. I am not using the nvidia but rather the skge driver and it fails under Ubuntu. On the same system Gentoo works like a charm. I am using a 2.6.12 on Gentoo and it works fine (module version 0.8) Here's the hardware : Ethernet controller: Marvell Technology Group Ltd. 88E8001 Gigabit Ethernet Controller (rev 13) Steph -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 1 22:08:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 1 Sep 2005 23:08:07 +0100 (BST) Subject: [Bug 12878] Ubuntu not supported on latest Aluminium Powerbooks In-Reply-To: Message-ID: <20050901220807.3A1F6303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12878 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|cjwatson at ubuntu.com |ben.collins at ubuntu.com Component|debian-installer |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 01:11:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 02:11:37 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050902011137.30990303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From johan at gnome.org 2005-09-02 02:11 UTC ------- Yes, it is still a problem in breezy as of 2.6.12-8-386, so this should probably be reopened again. (which I for some reason cannot do in this bugzilla installation) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 01:27:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 02:27:47 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050902012747.C6460303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux kiko at async.com.br changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 01:28:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 02:28:39 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050902012839.EF872303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux kiko at async.com.br changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |LATER ------- Additional Comments From kiko at async.com.br 2005-09-02 02:28 UTC ------- Jimmying the status so I can reopen. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 01:28:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 02:28:49 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050902012849.B7052303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux kiko at async.com.br changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|LATER | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 04:36:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 05:36:16 +0100 (BST) Subject: [Bug 14533] New: Main volume doesn't mute on headphone insertion Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux Summary: Main volume doesn't mute on headphone insertion Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: martijn at foodfight.org QAContact: kernel-bugs at lists.ubuntu.com When I insert headphones into the headphone jack on my laptop, they work fine, but the "normal" sounds continues to play from the laptop's internal speakers. 0000:00:1e.2 Multimedia audio controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03) Subsystem: Hewlett-Packard Company: Unknown device 0934 Flags: bus master, medium devsel, latency 0, IRQ 21 I/O ports at 3100 [size=256] I/O ports at 3200 [size=64] Memory at c8c01000 (32-bit, non-prefetchable) [size=512] Memory at c8c02000 (32-bit, non-prefetchable) [size=256] Capabilities: [50] Power Management version 2 lsmod output: Module Size Used by rfcomm 38460 0 l2cap 24740 5 rfcomm bluetooth 48356 4 rfcomm,l2cap speedstep_centrino 7636 1 cpufreq_userspace 4316 1 cpufreq_stats 5252 0 freq_table 4388 2 speedstep_centrino,cpufreq_stats cpufreq_powersave 1696 0 cpufreq_ondemand 6044 0 cpufreq_conservative 6948 0 pcmcia 26568 2 video 15748 0 sony_acpi 5324 0 pcc_acpi 11104 0 dev_acpi 11108 0 i2c_acpi_ec 5472 0 i2c_core 21200 1 i2c_acpi_ec button 6480 0 battery 9348 0 container 4384 0 ac 4708 0 ipv6 251264 6 af_packet 21768 2 joydev 9984 0 tsdev 7776 0 rtc 12344 0 pcspkr 3396 0 irtty_sir 8512 0 sir_dev 18444 1 irtty_sir irda 187612 2 irtty_sir,sir_dev crc_ccitt 1984 1 irda ohci1394 34356 0 yenta_socket 23240 1 rsrc_nonstatic 13376 1 yenta_socket pcmcia_core 49284 3 pcmcia,yenta_socket,rsrc_nonstatic ipw2200 103848 0 firmware_class 9952 1 ipw2200 ieee80211 29380 1 ipw2200 ieee80211_crypt 5604 2 ipw2200,ieee80211 tpm_nsc 6656 0 tpm 9888 1 tpm_nsc snd_intel8x0 33152 2 snd_ac97_codec 83452 1 snd_intel8x0 snd_pcm_oss 52704 0 snd_mixer_oss 19296 1 snd_pcm_oss snd_pcm 88840 3 snd_intel8x0,snd_ac97_codec,snd_pcm_oss snd_timer 24164 1 snd_pcm snd 54884 10 snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer soundcore 9600 1 snd snd_page_alloc 10600 2 snd_intel8x0,snd_pcm pci_hotplug 27508 0 intel_agp 23164 1 agpgart 34792 1 intel_agp dm_mod 57692 1 evdev 9664 1 sr_mod 17028 0 sbp2 23240 0 ieee1394 100792 2 ohci1394,sbp2 psmouse 29924 0 mousedev 11616 1 parport_pc 35236 1 lp 12292 0 parport 35912 2 parport_pc,lp sd_mod 19120 2 md 45584 0 unix 26896 844 ext3 136264 2 jbd 54776 1 ext3 mbcache 9252 1 ext3 vga16fb 12584 1 vgastate 9664 1 vga16fb thermal 13000 0 processor 22812 2 speedstep_centrino,thermal fan 4484 0 ide_cd 41572 0 cdrom 39616 2 sr_mod,ide_cd ide_disk 18464 3 ide_generic 1376 0 usb_storage 74112 2 scsi_mod 135688 4 sr_mod,sbp2,sd_mod,usb_storage usbhid 35168 0 tg3 96772 0 piix 10372 1 ide_core 138772 5 ide_cd,ide_disk,ide_generic,usb_storage,piix ehci_hcd 34248 0 uhci_hcd 31184 0 usbcore 117884 5 usb_storage,usbhid,ehci_hcd,uhci_hcd fbcon 38496 72 tileblit 2368 1 fbcon font 8224 1 fbcon bitblit 5632 1 fbcon vesafb 7992 0 cfbcopyarea 4608 2 vga16fb,vesafb cfbimgblt 2944 2 vga16fb,vesafb cfbfillrect 3872 2 vga16fb,vesafb softcursor 2272 2 vga16fb,vesafb capability 4712 0 commoncap 6816 1 capability -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 06:22:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 07:22:02 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050902062202.2BC8A303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux ------- Additional Comments From capitanterrex at yahoo.es 2005-09-02 07:22 UTC ------- maybe you have plugged it on to MIC input?? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 08:01:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 09:01:00 +0100 (BST) Subject: [Bug 14364] inotify bugfix In-Reply-To: Message-ID: <20050902080100.9D3A3303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14364 Ubuntu | linux desrt at desrt.ca changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From desrt at desrt.ca 2005-09-02 09:01 UTC ------- Fixed as of the last kernel upload -- thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 11:15:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 12:15:22 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050902111522.91A2F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTABUG ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-02 12:15 UTC ------- This looks like the same sound device in my HP nc4010 laptop ... It's a little quirky, the main speaker and the headphones are separate output channels. Plugging a pair of headphones or speakers into the port doesn't mute the speaker, you have to do that yourself. There's no "insert notification" of headphones from the hardware, so there's not much we can do about it. Press the "Mute" button on your keyboard (if you have it) or Right-click on the speaker icon and click "Mute". This will _only_ mute your speaker and not your headphones -- to change the headphone volume, right-click the speaker icon again, pick "Open Volume Control" and adjust the Headphone slider. (Windows behaved the same way for the 30 seconds it was on my machine after I bought it). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 15:20:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 16:20:28 +0100 (BST) Subject: [Bug 14566] New: spca5xx does not work Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux Summary: spca5xx does not work Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: sbejar at gmail.com QAContact: kernel-bugs at lists.ubuntu.com This driver works if you compile it as an external driver. The one provided by linux-image-2.6.12-8-386 does not work. The output of "modinfo spca5xx" is: filename: spca5xx.ko vermagic: 2.6.12-8-386 386 gcc-3.4 depends: srcversion: 51F9399718D471302F9487A while it should be: filename: spca5xx.ko author: Michel Xhaard based on spca50x driver by Joel Crisp ,ov511 driver by Mark McClelland description: SPCA5XX USB Camera Driver license: GPL vermagic: 2.6.12-8-386 386 gcc-3.4 depends: usbcore,videodev alias: usb:v0733p0430d*dc*dsc*dp*ic*isc*ip* alias: usb:v0733p0401d*dc*dsc*dp*ic*isc*ip* [...] srcversion: 6D9499E0C05382938ED6BD5 parm: usbgrabber:Is a usb grabber 0x0733:0x0430 ? (default 1) (int) [...] the only output is: spca5xx: module license 'unspecified' taints kernel. the size is much smaller: 317216 2005-08-31 09:57 /lib/modules/2.6.12-8-386/kernel/drivers/usb/media/spca5xx.ko 77667 2005-08-31 01:10 /root/spca5xx.ko (broken) Thanks. Santi -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 15:30:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 16:30:50 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050902153050.291AF303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux martijn at foodfight.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |UNCONFIRMED Resolution|NOTABUG | ------- Additional Comments From martijn at foodfight.org 2005-09-02 16:30 UTC ------- This does work OK in Windows on this laptop (I left it installed, just tested it). Main sound disables when headphones are plugged in -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 16:26:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 17:26:51 +0100 (BST) Subject: [Bug 1978] IBM ThinkPad T42 uses excessive amount of battery in ACPI suspend mode In-Reply-To: Message-ID: <20050902162651.3266E303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1978 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-02 17:26 UTC ------- The fix in #3022 is not ideal for us because it requires loading radeonfb (which we don't do by default, as an explicit decision). Matthew, would it be possible to work around this in acpi-support, or elsewhere? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 18:02:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 19:02:02 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050902180202.D3DF4303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux ------- Additional Comments From joerg.unglaub at gmail.com 2005-09-02 19:02 UTC ------- Hmmm thats not what i expect from a kernel update. It is worser the before. The left mouseclick alias one Tap doesn't work. and the pointerspeed is so slow that i have to scratch several times to go from one to the other side of the screen. That due to the kernel or the synaptics driver. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 18:21:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 19:21:02 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050902182102.EAD80303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux ------- Additional Comments From joerg.unglaub at gmail.com 2005-09-02 19:21 UTC ------- ok its no direct kernel bug it seems that normal behaveour as described in the first comment is back if i use the Touchpad thrue /dev/input/mice and the ImPS2 driver -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 19:57:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 20:57:33 +0100 (BST) Subject: [Bug 14574] New: kernel crash pdflush/find_get_pages_tag+49/75 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14574 Ubuntu | linux-meta Summary: kernel crash pdflush/find_get_pages_tag+49/75 Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-meta AssignedTo: debzilla at ubuntu.com ReportedBy: johan at gnome.org QAContact: kernel-bugs at lists.ubuntu.com I upgraded to breezy, on the first night of using it I got a crash which remounted my filesystem read only, I had to reboot and manually run fsck (using the init=/bin/sh trick) Crash log: Sep 1 22:22:27 localhost kernel: [4296388.540000] <1>Unable to handle kernel paging request at virtual address 30303034 Sep 1 22:22:27 localhost kernel: [4296405.784000] printing eip: Sep 1 22:22:27 localhost kernel: [4296405.784000] c012ea6f Sep 1 22:22:27 localhost kernel: [4296405.784000] *pde = 00000000 Sep 1 22:22:27 localhost kernel: [4296405.784000] Oops: 0002 [#2] Sep 1 22:22:27 localhost kernel: [4296405.784000] Modules linked in: binfmt_misc powernow_k8 cpufreq_userspace cpufreq_stats freq_table cpufreq_powersave cpufreq_ondeman d cpufreq_conservative pcmcia video sony_acpi pcc_acpi dev_acpi i2c_acpi_ec button battery container ac ipv6 joydev tsdev pcspkr rtc yenta_socket rsrc_nonstatic pcmcia_co re ohci1394 snd_intel8x0 snd_ac97_codec snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd soundcore snd_page_alloc i2c_sis96x i2c_core shpchp pci_hotplug af_packet sis_agp agpgart ndiswrapper dm_mod evdev parport_pc lp parport sbp2 ieee1394 mousedev psmouse sr_mod scsi_mod md unix ext3 jbd thermal processor fan ide_cd cdrom ide_disk ide_gen eric sis900 mii ehci_hcd ohci_hcd usbcore sis5513 ide_core fbcon tileblit font bitblit vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap Sep 1 22:22:27 localhost kernel: [4296405.784000] CPU: 0 Sep 1 22:22:27 localhost kernel: [4296405.784000] EIP: 0060:[find_get_pages_tag+49/75] Tainted: P VLI Sep 1 22:22:27 localhost kernel: [4296405.784000] EFLAGS: 00010093 (2.6.12-8-386) Sep 1 22:22:27 localhost kernel: [4296405.784000] EIP is at find_get_pages_tag+0x31/0x4b Sep 1 22:22:27 localhost kernel: [4296405.784000] eax: 30303030 ebx: dde45e0c ecx: 00000000 edx: 0000000e Sep 1 22:22:27 localhost kernel: [4296405.784000] esi: dde45df4 edi: ddebe598 ebp: 00000000 esp: dde45d9c Sep 1 22:22:27 localhost kernel: [4296405.784000] ds: 007b es: 007b ss: 0068 Sep 1 22:22:27 localhost kernel: [4296405.784000] Process pdflush (pid: 121, threadinfo=dde44000 task=ddfbc5a0) Sep 1 22:22:27 localhost kernel: [4296405.784000] Stack: dde45e04 dde45f38 c0135ab1 c0e5e724 dde45df4 00000000 0000000e dde45e0c Sep 1 22:22:27 localhost kernel: [4296405.784000] 00000000 c0160964 dde45e04 c0e5e724 dde45df4 00000000 0000000e 00000001 Sep 1 22:22:27 localhost kernel: [4296405.784000] 00000000 00000000 ffffffff de917e5f 00000000 00000000 00000000 00000000 Sep 1 22:22:27 localhost kernel: [4296405.784000] Call Trace: Sep 1 22:22:27 localhost kernel: [4296405.784000] [pagevec_lookup_tag+30/37] pagevec_lookup_tag+0x1e/0x25 Sep 1 22:22:27 localhost kernel: [4296405.784000] [mpage_writepages+720/814] mpage_writepages+0x2d0/0x32e Sep 1 22:22:27 localhost kernel: [4296405.784000] [pg0+509111903/1069995008] ext3_ordered_writepage+0x0/0x126 [ext3] Sep 1 22:22:27 localhost kernel: [4296405.784000] [do_writepages+39/43] do_writepages+0x27/0x2b Sep 1 22:22:27 localhost kernel: [4296405.784000] [__sync_single_inode+77/414] __sync_single_inode+0x4d/0x19e Sep 1 22:22:27 localhost kernel: [4296405.784000] [__writeback_single_inode+237/247] __writeback_single_inode+0xed/0xf7 Sep 1 22:22:27 localhost kernel: [4296405.784000] [process_timeout+0/9] process_timeout+0x0/0x9 Sep 1 22:22:27 localhost kernel: [4296405.784000] [smp_apic_timer_interrupt+36/106] smp_apic_timer_interrupt+0x24/0x6a Sep 1 22:22:27 localhost kernel: [4296405.784000] [sync_sb_inodes+122/542] sync_sb_inodes+0x7a/0x21e Sep 1 22:22:27 localhost kernel: [4296405.784000] [apic_timer_interrupt+28/36] apic_timer_interrupt+0x1c/0x24 Sep 1 22:22:27 localhost kernel: [4296405.784000] [sync_sb_inodes+389/542] sync_sb_inodes+0x185/0x21e Sep 1 22:22:27 localhost kernel: [4296405.784000] [pdflush+0/33] pdflush+0x0/0x21 Sep 1 22:22:27 localhost kernel: [4296405.784000] [writeback_inodes+73/108] writeback_inodes+0x49/0x6c Sep 1 22:22:27 localhost kernel: [4296405.784000] [wb_kupdate+127/224] wb_kupdate+0x7f/0xe0 Sep 1 22:22:27 localhost kernel: [4296405.784000] [__pdflush+193/324] __pdflush+0xc1/0x144 Sep 1 22:22:27 localhost kernel: [4296405.784000] [pdflush+29/33] pdflush+0x1d/0x21 Sep 1 22:22:27 localhost kernel: [4296405.784000] [wb_kupdate+0/224] wb_kupdate+0x0/0xe0 Sep 1 22:22:27 localhost kernel: [4296405.784000] [kthread+109/151] kthread+0x6d/0x97 Sep 1 22:22:27 localhost kernel: [4296405.784000] [kthread+0/151] kthread+0x0/0x97 Sep 1 22:22:27 localhost kernel: [4296405.784000] [kernel_thread_helper+5/11] kernel_thread_helper+0x5/0xb Sep 1 22:22:27 localhost kernel: [4296405.784000] Code: 8b 5c 24 1c fa ff 74 24 14 ff 74 24 1c ff 36 53 8b 44 24 1c 83 c0 04 50 e8 b1 be 06 00 31 c9 89 c2 83 c4 14 39 d1 73 09 8b 04 8b 40 04 41 eb f3 85 d2 74 0a 8b 44 93 fc 8b 40 14 40 89 06 fb If you need any additional information about my hardware, please let me know I've been using warty/hoary for almost a year on the laptop without seeing something like this, so something regressed 2.6.10->2.6.12. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 19:58:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 20:58:29 +0100 (BST) Subject: [Bug 14574] kernel crash pdflush/find_get_pages_tag+49/75 In-Reply-To: Message-ID: <20050902195829.CDA3B303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14574 Ubuntu | linux-meta johan at gnome.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kiko at async.com.br -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 20:04:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 21:04:33 +0100 (BST) Subject: [Bug 14575] New: kernel crash powernowd/pg0+499863808/1070015488 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14575 Ubuntu | linux-meta Summary: kernel crash powernowd/pg0+499863808/1070015488 Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-meta AssignedTo: debzilla at ubuntu.com ReportedBy: johan at gnome.org QAContact: kernel-bugs at lists.ubuntu.com CC: kiko at async.com.br I've seen this and similar panics on my laptop (fujitu siemens A7640) a couple of times, seems to happen randomly. Might be related to bug 6628 which is on the same hardware Sep 1 22:51:13 localhost kernel: Unable to handle kernel paging request at virtual address de041100 Sep 1 22:51:13 localhost kernel: printing eip: Sep 1 22:51:13 localhost kernel: de041100 Sep 1 22:51:13 localhost kernel: *pde = 00000000 Sep 1 22:51:13 localhost kernel: Oops: 0000 [#1] Sep 1 22:51:13 localhost kernel: PREEMPT Sep 1 22:51:13 localhost kernel: Modules linked in: binfmt_misc ipv6 powernow_k8 proc_intf freq_table cpufreq_userspace cpufreq_ondemand cpufreq_powersave pcmcia video s ony_acpi pcc_acpi button battery container ac joydev tsdev pcspkr rtc yenta_socket pcmcia_core ohci1394 sis900 ehci_hcd ohci_hcd snd_intel8x0 snd_ac97_codec snd_pcm_oss s nd_mixer_oss snd_pcm snd_timer snd soundcore snd_page_alloc i2c_sis96x i2c_core shpchp pci_hotplug sis_agp agpgart af_packet usbcore dm_mod evdev capability commoncap lp parport sbp2 ieee1394 ide_cd mousedev psmouse sr_mod scsi_mod cdrom md ext3 jbd ide_generic sis5513 ide_disk ide_core unix thermal processor fan fbcon font bitblit vesafb cfbcopyarea cfbimgblt cfbfillrect Sep 1 22:51:13 localhost kernel: CPU: 0 Sep 1 22:51:13 localhost kernel: EIP: 0060:[pg0+499863808/1070015488] Not tainted VLI Sep 1 22:51:13 localhost kernel: EFLAGS: 00010246 (2.6.10-5-386) Sep 1 22:51:13 localhost kernel: EIP is at 0xde041100 Sep 1 22:51:13 localhost kernel: eax: 00000000 ebx: 00000009 ecx: c0010042 edx: 00000009 Sep 1 22:51:13 localhost kernel: esi: da04b500 edi: 0000000a ebp: 0000000c esp: d8d2fe50 Sep 1 22:51:13 localhost kernel: ds: 007b es: 007b ss: 0068 Sep 1 22:51:13 localhost kernel: Process powernowd (pid: 6927, threadinfo=d8d2e000 task=dcb9fa20) Sep 1 22:51:13 localhost kernel: Stack: da04b500 00000000 0000000c da04b500 deb213dc da04b500 0000000a 00000009 Sep 1 22:51:13 localhost kernel: da04b500 00000009 0000000c 00000009 deb21253 da04b500 0000000c 0000000c Sep 1 22:51:13 localhost kernel: d8d2fea8 da04b500 deb21c9a da04b500 0000000c 00000009 00000000 000c3500 Sep 1 22:51:13 localhost kernel: Call Trace: Sep 1 22:51:13 localhost kernel: [pg0+511267804/1070015488] core_frequency_transition+0x8d/0x10f [powernow_k8] Sep 1 22:51:13 localhost kernel: [pg0+511267411/1070015488] transition_fid_vid+0x28/0x85 [powernow_k8] Sep 1 22:51:13 localhost kernel: [pg0+511270042/1070015488] transition_frequency+0x9e/0xd2 [powernow_k8] Sep 1 22:51:13 localhost kernel: [pg0+511270272/1070015488] powernowk8_target+0xb2/0xf0 [powernow_k8] Sep 1 22:51:13 localhost kernel: [__cpufreq_driver_target+32/36] __cpufreq_driver_target+0x20/0x24 Sep 1 22:51:13 localhost kernel: [pg0+511328365/1070015488] _cpufreq_set+0x5a/0x6f [cpufreq_userspace] Sep 1 22:51:13 localhost kernel: [pg0+511328470/1070015488] store_speed+0x34/0x3e [cpufreq_userspace] Sep 1 22:51:13 localhost kernel: [store+53/70] store+0x35/0x46 Sep 1 22:51:13 localhost kernel: [flush_write_buffer+37/42] flush_write_buffer+0x25/0x2a Sep 1 22:51:13 localhost kernel: [sysfs_write_file+56/86] sysfs_write_file+0x38/0x56 Sep 1 22:51:13 localhost kernel: [vfs_write+121/197] vfs_write+0x79/0xc5 Sep 1 22:51:13 localhost kernel: [sys_write+59/99] sys_write+0x3b/0x63 Sep 1 22:51:13 localhost kernel: [sysenter_past_esp+82/117] sysenter_past_esp+0x52/0x75 Sep 1 22:51:13 localhost kernel: Code: Bad EIP value. Sep 1 22:51:13 localhost kernel: <6>apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac) Sep 1 22:51:13 localhost kernel: apm: disabled on user request. Sep 1 22:51:16 localhost kernel: Kernel logging (proc) stopped. Sep 1 22:51:16 localhost kernel: Kernel log daemon terminating. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 20:26:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 21:26:58 +0100 (BST) Subject: [Bug 14576] New: kernel includes acx_pci driver but does not include acx_usb Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14576 Ubuntu | linux Summary: kernel includes acx_pci driver but does not include acx_usb Product: Ubuntu Version: unspecified Platform: powerpc OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: svu at gnome.org QAContact: kernel-bugs at lists.ubuntu.com Just looking at the modules, I see missing module for my D-Link card. Is there any special reason? linux-image-2.6.12-8-powerpc64-smp -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 20:52:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 21:52:20 +0100 (BST) Subject: [Bug 13967] [Breezy] CX88 Driver fault In-Reply-To: Message-ID: <20050902205220.E1990303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13967 Ubuntu | linux markboydell at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 20:54:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 21:54:26 +0100 (BST) Subject: [Bug 13967] [Breezy] CX88 Driver fault In-Reply-To: Message-ID: <20050902205426.2688B303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13967 Ubuntu | linux ------- Additional Comments From markboydell at gmail.com 2005-09-02 21:54 UTC ------- The recent update has changed the nature of the problem - TV can be displayed but there is a problem with XV and the TV output is very stilted and drops frames galore. The output from mythfrontend is as follows: {{{ Xlib: extension "XVideo" missing on display ":0.0". XvQueryExtension failed. Xlib: extension "XVideo" missing on display ":0.0". XvQueryAdaptors failed. *** * Couldn't find Xv support, falling back to non-Xv mode. * MythTV performance will be much slower since color * conversion and scaling will be done in software. * Consider upgrading your video card or X server if * you would like better performance. Xlib: extension "XVideo" missing on display ":0.0". Xlib: extension "XVideo" missing on display ":0.0". 2005-09-02 21:45:56.391 Couldn't get the color key color, and we need it. You likely won't get any video. 2005-09-02 21:45:56.989 Changing from None to WatchingLiveTV 2005-09-02 21:45:57.014 Realtime priority would require SUID as root. Xlib: extension "XFree86-VidModeExtension" missing on display ":0.0". Xlib: extension "XFree86-VidModeExtension" missing on display ":0.0". 2005-09-02 21:45:57.149 Video timing method: USleep with busy wait 2005-09-02 21:45:58.037 prebuffering pause 2005-09-02 21:45:58.544 prebuffering pause 2005-09-02 21:45:59.052 prebuffering pause 2005-09-02 21:45:59.563 prebuffering pause 2005-09-02 21:46:00.076 prebuffering pause 2005-09-02 21:46:01.091 prebuffering pause 2005-09-02 21:46:01.913 prebuffering pause *** * Your system is not capable of displaying the * full framerate at 1280x1024 resolution. Frames * will be skipped in order to keep the audio and * video in sync. 2005-09-02 21:46:24.000 prebuffering pause Xlib: extension "XVideo" missing on display ":0.0". Xlib: extension "XVideo" missing on display ":0.0". 2005-09-02 21:46:25.785 Couldn't get the color key color, and we need it. You likely won't get any video. }}} -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 22:06:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 23:06:47 +0100 (BST) Subject: [Bug 12942] [KLIBC] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050902220647.7DBA1303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-02 23:06 UTC ------- Jim McQuillan from LTSP mentioned this article: http://wiki.ltsp.org/twiki/bin/view/Ltsp/NFS#NFS_Server_not_responding Could someone who can reproduce this problem try lowering rsize/wsize and see if that helps? (In reply to comment #14) > From what it sounds like, the server is getting the client request, but the > client is not getting the ack back from the server. This would sound to me like > the kernel IP stack is not fully configured at this point, in some way. If the problem were something like this, I'd expect it to eventually retry and succeed. The strange part of all this is that it never recovers. Can you think of any explanation for that, or anyplace we could forward this issue? In my case I have only tried knfsd. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 22:31:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 23:31:39 +0100 (BST) Subject: [Bug 14574] kernel crash pdflush/find_get_pages_tag+49/75 In-Reply-To: Message-ID: <20050902223139.9C893303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14574 Ubuntu | linux-meta ------- Additional Comments From johan at gnome.org 2005-09-02 23:31 UTC ------- Created an attachment (id=3517) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3517&action=view) complete log This is the complete startup log, there are two more crashes, a couple of minutes in discover which might be related to the same issue. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 2 22:34:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 2 Sep 2005 23:34:34 +0100 (BST) Subject: [Bug 14575] kernel crash powernowd/pg0+499863808/1070015488 In-Reply-To: Message-ID: <20050902223434.EA800303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14575 Ubuntu | linux-meta ------- Additional Comments From johan at gnome.org 2005-09-02 23:34 UTC ------- Grepping through my kernel logs I can find the following crashes, which all has similar stack trace: Aug 12 08:03:35 Process powernowd (pid: 7804, threadinfo=dafac000 task=ddb1d500) Aug 12 19:59:00 Process powernowd (pid: 7839, threadinfo=daa0a000 task=dae92060) Aug 14 17:20:16 Process powernowd (pid: 7838, threadinfo=dbbbc000 task=dbb0d540) Aug 16 23:08:58 Process powernowd (pid: 7862, threadinfo=daf8a000 task=db81e0a0) Aug 20 09:50:35 Process powernowd (pid: 7838, threadinfo=dbada000 task=dd175aa0) Aug 22 23:19:51 Process powernowd (pid: 7839, threadinfo=da8b0000 task=da941a20) Aug 24 01:11:36 Process powernowd (pid: 7838, threadinfo=daea6000 task=dd9e80e0) Aug 24 23:33:58 Process powernowd (pid: 7840, threadinfo=dafe6000 task=daeed540) Aug 28 13:21:18 Process powernowd (pid: 7830, threadinfo=dae2a000 task=dafa5500) Aug 29 09:33:13 Process powernowd (pid: 7813, threadinfo=daf78000 task=c15e3540) Aug 30 20:01:27 Process powernowd (pid: 7841, threadinfo=dab28000 task=dd5e9580) Aug 30 20:30:55 Process powernowd (pid: 7845, threadinfo=da9fe000 task=daa8e0e0) *upgraded to breezy* Sep 1 22:22:10 Process powernowd (pid: 6072, threadinfo=d5008000 task=d5739aa0) Sep 1 22:51:13 Process powernowd (pid: 6927, threadinfo=d8d2e000 task=dcb9fa20) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 3 05:10:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 3 Sep 2005 06:10:45 +0100 (BST) Subject: [Bug 13927] [Colony #3] No sound on Audigy In-Reply-To: Message-ID: <20050903051045.CE4F6303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13927 Ubuntu | linux ------- Additional Comments From zulcss at gmail.com 2005-09-03 06:10 UTC ------- Can you post the output of lspci? Thanks chuck -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 3 19:11:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 3 Sep 2005 20:11:33 +0100 (BST) Subject: [Bug 9115] CD-ROM not detected on imac G5 In-Reply-To: Message-ID: <20050903191133.42F89303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9115 Ubuntu (installer) | UNKNOWN ------- Additional Comments From jbailey at ubuntu.com 2005-09-03 20:11 UTC ------- Hi! Can you get to a shell prompt from the install CD? If yes, I'm interested in troubleshooting this. Can you tell me if there's a /proc/ide and/or a /sys/bus/ide on the system? Tks, Jeff Bailey -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 3 21:18:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 3 Sep 2005 22:18:56 +0100 (BST) Subject: [Bug 14103] prism2_usb crash In-Reply-To: Message-ID: <20050903211856.4E101303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14103 Ubuntu | linux ------- Additional Comments From bryan at reigndropsfall.net 2005-09-03 22:18 UTC ------- Created an attachment (id=3531) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3531&action=view) Patch to add wlan-ng 0.2.2 to the kernel This won't be a drop-in replacement for the ubuntu patch, but it's a start. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 3 21:50:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 3 Sep 2005 22:50:29 +0100 (BST) Subject: [Bug 14498] CD fails to boot In-Reply-To: Message-ID: <20050903215029.567A9303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14498 Ubuntu | kernel-package mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk, | |cjwatson at ubuntu.com Summary|kernel unpacking on |CD fails to boot |installation fails | ------- Additional Comments From mdz at ubuntu.com 2005-09-03 22:50 UTC ------- Try debian-installer/framebuffer=false Which version did you try? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 3 23:04:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 00:04:59 +0100 (BST) Subject: [Bug 14672] New: forcedeth (nforce4 ethernet driver) locks the chip and require hard reboot Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14672 Ubuntu | linux Summary: forcedeth (nforce4 ethernet driver) locks the chip and require hard reboot Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: aurelien at resus.univ-mrs.fr QAContact: kernel-bugs at lists.ubuntu.com I'm experiencing a problem with the forcedeth driver, this problem is reported here: http://bugzilla.kernel.org/show_bug.cgi?id=4552 Short summary: The forcedeth driver seems to hang on TX reset and to lock the ethernet chip in an unusable state even upon reboot. Hard reboot is required to get it to work again Linux 2.6.12 includes version 0.31 of forcedeth; Linux 2.6.13 includes version 0.35. Both suffer from this bug, but version 0.42 seems to address it (and the older 0.30 didn't suffer from it) Forcedeth patches can be found at the following address: http://www.colorfullife.com/~manfred/Linux-kernel/forcedeth/ Are there any chances to see forcedeth upgraded to 0.42 or reverted to 0.30 into breezy's kernel ? Best regards -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 3 23:07:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 00:07:39 +0100 (BST) Subject: [Bug 13927] [Colony #3] No sound on Audigy In-Reply-To: Message-ID: <20050903230739.1769F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13927 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From zulcss at gmail.com 2005-09-04 00:07 UTC ------- Ive added a patch to the next upload that redetects sb0090 and sb0160 sound cards. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 3 23:42:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 00:42:31 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050903234231.14A43303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From ubugs.20.kohler at xoxy.net 2005-09-04 00:42 UTC ------- I still see hangs when running with '-B 128', but they don't occur as often as with '-B 1'. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 00:07:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 01:07:20 +0100 (BST) Subject: [Bug 14672] forcedeth (nforce4 ethernet driver) locks the chip and require hard reboot In-Reply-To: Message-ID: <20050904000720.599E1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14672 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |zulcss at gmail.com Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From zulcss at gmail.com 2005-09-04 01:07 UTC ------- Ill take a look. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 02:36:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 03:36:21 +0100 (BST) Subject: [Bug 13370] [Breezy|Hoary] Dell D610 (and other models) freezes at least once a day In-Reply-To: Message-ID: <20050904023621.80117303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13370 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-04 03:36 UTC ------- (In reply to comment #0) The stock Linux 2.6.13 kernel includes a fix for this bug. I'm the dude who originally identified the bug, and provided patches on my website at rtr.ca. The libata_eh bugfix patch is no longer required with kernel 2.6.13. Cheers -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 10:49:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 11:49:32 +0100 (BST) Subject: [Bug 11602] Kernel Bug when attaching USB stick (amd64) In-Reply-To: Message-ID: <20050904104932.61708303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11602 Ubuntu | linux ------- Additional Comments From phbaer at npw.net 2005-09-04 11:49 UTC ------- Created an attachment (id=3541) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3541&action=view) kernel-bug-msg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 10:50:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 11:50:44 +0100 (BST) Subject: [Bug 11602] Kernel Bug when attaching USB stick (amd64) In-Reply-To: Message-ID: <20050904105044.B2F2D303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11602 Ubuntu | linux ------- Additional Comments From phbaer at npw.net 2005-09-04 11:50 UTC ------- (In reply to comment #12) > Any chance we could retest this with a 2.6.12 kernel from breezy? I've installed linux-image-2.6.12-8-amd64-xeon, dated Aug. 30 Same result, I'm sorry. Please find new kernel bug message attached (kernel-bug-msg). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 16:31:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 17:31:55 +0100 (BST) Subject: [Bug 12641] kernel 2.6.12 performance problem In-Reply-To: Message-ID: <20050904163155.C098A303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12641 Ubuntu | linux p92 at free.fr changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major ------- Additional Comments From p92 at free.fr 2005-09-04 17:31 UTC ------- New tests and notices : With breezy kernel Linux version 2.6.12-8-686 : same bad performance problems ! As soon as an application takes the CPU to 100% long enough, all other applications will be impacted. They will each take up to 10% cpu each ! The CPU will never return to a reasonnable idle state (less than 1% total). To be sure this IS NOT a hardware problem, I worked all the afternoon with a Suze LiveCD on this box and let programs take 100% CPU while surfing. I had OBSOLOTLY NO PERFORMANCE PROBLEMS. The Suze Live cd used a 2.6.8-24 kernel version. With hoary kernel Linux version 2.6.10-5-686 (buildd at vernadsky) (gcc version 3.3.5 (Debian 1:3.3.5-8ubuntu2)) #1 Fri Jun 24 17:33:34 UTC 2005 I can compile kde kopete (high cpu load) WITHOUT beeing impacted on my other KDE applications. I have also a perf problem with this kernel but it takes a very longer time to develop and sometimes it does not appear at all. with kernels > 2.6.10 the perf problem appears, AT WILL, I can trigger it simply by using the CPU at 100% for some minutes. For me this is a SHOWSTOPPER for breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 16:52:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 17:52:04 +0100 (BST) Subject: [Bug 12641] kernel 2.6.12 performance problem In-Reply-To: Message-ID: <20050904165204.A2087303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12641 Ubuntu | linux ------- Additional Comments From ivoks at grad.hr 2005-09-04 17:52 UTC ------- Please, download latest 2.6.12 kernel from kernel.org or mirror, compile it and attach config here. I will try to help you with config, but if kernel, from kernel.org, produces same low/slow results, then I suggest reporting that to bugzilla.kernel.org. If you do so, please tell us here bugID from kernel.org Sorry, I was on vacation so I didn't respond till now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 18:42:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 19:42:16 +0100 (BST) Subject: [Bug 14103] prism2_usb crash In-Reply-To: Message-ID: <20050904184216.A7608303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14103 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-04 19:42 UTC ------- Patch is in the baz tree now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 19:23:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 20:23:30 +0100 (BST) Subject: [Bug 14576] kernel includes acx_pci driver but does not include acx_usb In-Reply-To: Message-ID: <20050904192330.D64F8303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14576 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-04 20:23 UTC ------- >From looking at the upstream source, it appears that it does not allow compiling acx_usb on 2.6 kernels (it's only in the 2.4 Makefile). I'm just assuming that it maybe doesn't work, or doesn't compile on 2.6. I'll attempt to get it to compile and see what happens. Mind if I call on you to test the actual module? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 19:36:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 20:36:49 +0100 (BST) Subject: [Bug 12641] kernel 2.6.12 performance problem In-Reply-To: Message-ID: <20050904193649.57048303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12641 Ubuntu | linux ------- Additional Comments From p92 at free.fr 2005-09-04 20:36 UTC ------- well I have got kernel 2.6.13 which seems th have huge scheduler changes according to changelog. compilation is done, kernel image and modules installed. Can you just tell me the right way to generate an mkinitrd on ubuntu, giving that my build tree is in /usr/src/linux-2.6.13 and modules in the usual /lib/modules/2.3.16 place. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 19:57:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 20:57:10 +0100 (BST) Subject: [Bug 12641] kernel 2.6.12 performance problem In-Reply-To: Message-ID: <20050904195710.7520F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12641 Ubuntu | linux ------- Additional Comments From ivoks at grad.hr 2005-09-04 20:57 UTC ------- You don't need initrd, cause you will compile essential drivers in kernel (support for filesystem and IDE/SCSI HDD, for example). OK, try with 2.6.13 and tell us results. But, I would really appriciate if you would try 2.6.12 too. If it's ok with 2.6.12, then it's Ubuntu bug. If it doesn't, then it's kernel bug. Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 4 21:02:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 4 Sep 2005 22:02:31 +0100 (BST) Subject: [Bug 14576] kernel includes acx_pci driver but does not include acx_usb In-Reply-To: Message-ID: <20050904210231.78F8C303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14576 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-04 22:02 UTC ------- I managed to build it on 2.6. Though I got some warnings regarding SMP. Sure you can use me as tester - just send me .ko file(s). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 07:13:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 08:13:42 +0100 (BST) Subject: [Bug 14498] CD fails to boot In-Reply-To: Message-ID: <20050905071342.27A26303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14498 Ubuntu | kernel-package iczolkos at rz.uni-potsdam.de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From iczolkos at rz.uni-potsdam.de 2005-09-05 08:13 UTC ------- the version was Ubuntu 5.04 "The Hoary Hedgehog" -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 11:45:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 12:45:39 +0100 (BST) Subject: [Bug 14712] i386 PC with GeForce 6600 hangs at "Starting hotplug subsystem..." (Hoary/Breezy) In-Reply-To: Message-ID: <20050905114539.7922A303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|scott-bugs at ubuntu.com |daniel.stone at ubuntu.com Component|hotplug |linux-restricted-modules QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-05 12:45 UTC ------- I would guess that the nvidia module is hanging on startup. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 15:48:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 16:48:13 +0100 (BST) Subject: [Bug 14733] New: Card Reader Not Working - Toshiba Tecra A4 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux Summary: Card Reader Not Working - Toshiba Tecra A4 Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: gtaylor at clemson.edu QAContact: kernel-bugs at lists.ubuntu.com The SD/Smartmedia/xD card reader on the Toshiba Tecra A4 is currently not working. Inserting and removing cards causes no events to occur on dmesg and nothing is mounted. I'll have some lspci output here later. I can't copy/paste due to the NIC not being supported in the kernel, please let me know what information you'll need to debug with. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 15:48:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 16:48:51 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050905154851.8F01A303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux gtaylor at clemson.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |minor Priority|P2 |P3 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 15:55:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 16:55:21 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050905155521.63A82303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-05 16:55 UTC ------- This might be one of those unsupported proprietary readers. Likely not much we can do. Get me as much information about the reader as possible and I'll see what I can find out. Is it attached internally via USB or IDE? Full dmesg output should help. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 16:14:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 17:14:28 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050905161428.7F6D8303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From mota at april.org 2005-09-05 17:14 UTC ------- (In reply to comment #5) > Can you go under MacOSX's System Profiler and see what the cdrom is connected to > (IDE, SATA) and the exact vendor/module for the IDE or SATA that it is on? Bus ATA-6: ID du constructeur: 0x106b ID du périphérique: 0x0050 Révision ID: 0x0000 PIONEER DVD-RW DVR-K04F: Fabricant: PIONEER Modèle: PIONEER DVD-RW DVR-K04F Révision: I437 Type de disque: CD-RW/DVD-RW Gravure du disque: Géré/Livré par Apple Support amovible: Oui Disque amovible: Non Protocole: ATAPI Numéro de l’unité: 0 Type de socket: Interne BTW, I haven't been able to see either the internal disk or the DVD/cdrom reader the last time I looked at the dmesg output in the installer or the live cd console. > A > full copy/paste of the System Profiler output wouldn't be so bad either. There's a couple of things that are private in it, so I'm sending it via private mail. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 16:19:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 17:19:53 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050905161953.D59C7303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From gtaylor at clemson.edu 2005-09-05 17:19 UTC ------- This is an internal reader, I'll get you the dmesg output as soon as I'm near a wireless point again. I don't think it's being recognized as I didn't see it on lspci (or at least nothing looked like it matched the description). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 17:05:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 18:05:07 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050905170507.15B46303C040@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From ubugs.20.kohler at xoxy.net 2005-09-05 18:05 UTC ------- I have to retract my earlier statement that commenting out the '-B 1' line stopped the hangs. I just got a hang with that configuration. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 17:57:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 18:57:08 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050905175708.31BB0303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-05 18:57 UTC ------- It's not going to show up in lspci, as no card reader is a PCI device. They are generally attached to some sort of storage bus, be it USB or IDE. So lspci would show the bus, but not the actual reader (just like it doesn't show your mouse or cdrom drive). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 18:01:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 19:01:46 +0100 (BST) Subject: [Bug 14489] Sound looping, after upgrade to 2.6.12-7 In-Reply-To: Message-ID: <20050905180146.4C183303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14489 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|alsa-driver |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-05 19:01 UTC ------- See https://wiki.ubuntu.com/DebuggingIRQProblems for some debugging hints -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 18:12:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 19:12:12 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050905181212.80552303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|cjwatson at ubuntu.com |ben.collins at ubuntu.com Component|os-prober |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From cjwatson at ubuntu.com 2005-09-05 19:12 UTC ------- Thanks. In that case it seems that it must be a kernel bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 18:14:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 19:14:02 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050905181402.BABC0303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-05 19:14 UTC ------- Your DVD drive seems to be attached to the shasta-ata bus, which should be supported by the built-in pmac IDE driver. Your harddrive is connected to the k2-sata bus, which should be supported by the sata_svw module that is with the kernel. Does "dmesg | grep -i IDE" show anything at all? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 18:20:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 19:20:00 +0100 (BST) Subject: [Bug 14737] Locked up on Lid Close/Open - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050905182000.A6760303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14737 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|acpi |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 18:22:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 19:22:17 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050905182217.11B79303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-05 19:22 UTC ------- Many internal card readers are PCI parts - TI, Winbond, Ricoh and Toshiba all have PCI versions. Only the Winbond ones are currently supported under Linux. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 18:26:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 19:26:04 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050905182604.ADED4303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-05 19:26 UTC ------- I was able to rescue a trace: [ 501.998061] Oops: kernel access of bad area, sig: 11 [#1] [ 501.998263] NIP: D237237C LR: D236CC18 SP: CCD33AA0 REGS: ccd339f0 TRAP: 0300 Not tainted [ 501.998537] MSR: 00009032 EE: 1 PR: 0 FP: 0 ME: 1 IR/DR: 11 [ 501.998721] DAR: 0000000C, DSISR: 40000000 [ 501.998860] TASK = ce97e110[22217] 'mount' THREAD: ccd32000 [ 501.999043] Last syscall: 21 [ 501.999146] GPR00: 00000001 CCD33AA0 CE97E110 CCA75E00 CFFC0806 D2375040 0000001D CF3A0250 [ 501.999538] GPR08: CF3A0240 D2380000 00000001 CCA8703C 42008422 10066D38 00000000 00000000 [ 501.999929] GPR16: 00000000 00000000 00000000 00000000 00000007 00000000 1013C170 00000000 [ 502.000317] GPR24: D237B710 00000001 00000000 D237B710 CFFC0806 D2375040 00000000 0000001D [ 502.000718] NIP [d237237c] hfsplus_asc2uni+0x48/0x220 [hfsplus] [ 502.000952] LR [d236cc18] hfsplus_cat_build_key+0x30/0x7c [hfsplus] [ 502.001178] Call trace: [ 502.001275] [d236cc18] hfsplus_cat_build_key+0x30/0x7c [hfsplus] [ 502.001506] [d2369d88] hfsplus_fill_super+0x3b4/0x578 [hfsplus] [ 502.001735] [c006e5dc] get_sb_bdev+0x14c/0x1d4 [ 502.001921] [d2369fd0] hfsplus_get_sb+0x18/0x28 [hfsplus] [ 502.002133] [c006e91c] do_kern_mount+0x5c/0x130 [ 502.002314] [c00872d4] do_mount+0x46c/0x6cc [ 502.002486] [c0087978] sys_mount+0x98/0xe8 [ 502.002652] [c00047f0] ret_from_syscall+0x0/0x4c Is there anything I can provide in addition? The first few KB of the partition or so? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 19:41:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 20:41:49 +0100 (BST) Subject: [Bug 14519] skge unable to contact network In-Reply-To: Message-ID: <20050905194149.A08B5303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14519 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 19:50:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 20:50:13 +0100 (BST) Subject: [Bug 14540] [breezy] usb mouse displays error on console during boot In-Reply-To: Message-ID: <20050905195013.C07EB303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14540 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|trivial |normal Component|UNKNOWN |linux Keywords|laptop | QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-05 20:50 UTC ------- Try the suggestions at: https://wiki.ubuntu.com/DebuggingIRQProblems Raising severity since usually this does indicate a misbehaviour -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 20:17:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 21:17:26 +0100 (BST) Subject: [Bug 14757] New: Data Corruption on AMD64 SATA System with Breezy Badger Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14757 Ubuntu | kernel-package Summary: Data Corruption on AMD64 SATA System with Breezy Badger Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: c-t-b at gmx.de QAContact: kernel-bugs at lists.ubuntu.com Dear all, writing data on SATA harddisk (Silicon Image 3512A Onboard-RAID) under Breezy Badger (kernel version 2.6.12-7-amd64-k8, libata version 1.11 loaded; sata_sil version 0.9) cause sometimes errors in md5sum check espeacially when large files are copied or moved. The same problem occurs under Fedora Core 4 or SuSE 9.3 with different kernel versions. Memory and harddisk have been checked without any evidence. With Hoary Hedgehog kernel 2.6.10-5-amd64-k8 everything work fine (libata version 1.10 loaded; sata_sil version 0.8). Some x86 kernels (e.g. Knoppix) also works without problems as well as Debian Sarge AMD64 (not really suprising, isn't it?). The modules loaded in Breezy seem not to differ relevantly from Hoary except of some versions (of cause). I guess I have tried nearly everything to figure out where the problem is located - so I may give any additional information on request. So maybe anybody out there has any idea and find help before I go mad. Greetings. System description: Shuttle XPC SN85Gv2 Motherboard FN85 NVIDIA nForce3 AMD Athlon(tm) 64 Processor 2800+ RAID bus controller: Silicon Image, Inc. (formerly CMD Technology Inc) SiI 3512 (rev 1) Harddisk Vendor: ATA Model: SAMSUNG SP1614C Rev: SW10 Type: Direct-Access ANSI SCSI revision: 05 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 20:20:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 21:20:04 +0100 (BST) Subject: [Bug 14757] Data Corruption on AMD64 SATA System with Breezy Badger In-Reply-To: Message-ID: <20050905202004.E1A7B303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14757 Ubuntu | kernel-package ------- Additional Comments From c-t-b at gmx.de 2005-09-05 21:20 UTC ------- Created an attachment (id=3560) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3560&action=view) output of cat /proc/pci -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 20:20:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 21:20:50 +0100 (BST) Subject: [Bug 14757] Data Corruption on AMD64 SATA System with Breezy Badger In-Reply-To: Message-ID: <20050905202050.6B21A303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14757 Ubuntu | kernel-package ------- Additional Comments From c-t-b at gmx.de 2005-09-05 21:20 UTC ------- Created an attachment (id=3561) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3561&action=view) output of lsmod -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 21:04:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 22:04:27 +0100 (BST) Subject: [Bug 14004] [2.6.12-7.11] ACPI errors in syslog In-Reply-To: Message-ID: <20050905210427.10F67303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14004 Ubuntu | linux tiagomatos at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From tiagomatos at gmail.com 2005-09-05 22:04 UTC ------- This is one is fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 21:40:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 22:40:14 +0100 (BST) Subject: [Bug 14489] Sound looping, after upgrade to 2.6.12-7 In-Reply-To: Message-ID: <20050905214014.0E759303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14489 Ubuntu | linux ------- Additional Comments From gjc at inescporto.pt 2005-09-05 22:40 UTC ------- Thanks for the link. I added noapic to the kernel options and now sounds is better than ever :-) Although ubuntu should "just work", so I hope this gets automatically fixed in the stable release. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 5 22:03:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 5 Sep 2005 23:03:08 +0100 (BST) Subject: [Bug 14765] New: Ubuntu breezy linux does not halt/reboot, just gives me console root shell Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14765 Ubuntu | linux Summary: Ubuntu breezy linux does not halt/reboot, just gives me console root shell Product: Ubuntu Version: unspecified Platform: powerpc OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: svu at gnome.org QAContact: kernel-bugs at lists.ubuntu.com When I choose 'Reboot' or 'Halt' in Ubuntu, GNOME, I get all the services stopped - but then I get the console root shell (????). The commands like 'halt', 'shutdown' etc - just return me to the same shell. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 00:58:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 01:58:51 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050906005851.60EA0303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |scott-bugs at ubuntu.com Summary|i386 PC with GeForce 6600 |[nvidia] module insertion |hangs at "Starting hotplug |hangs |subsystem..." (Hoary/Breezy)| ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-06 01:58 UTC ------- Scott, is there any way we can get hotplug disabled or to simply not load a specific module so we can try to do some debugging? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 03:51:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 04:51:59 +0100 (BST) Subject: [Bug 14786] New: Hoary SMP Kernel on Dell Poweredge 6450 crashes on reboot Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14786 Ubuntu | linux Summary: Hoary SMP Kernel on Dell Poweredge 6450 crashes on reboot Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: joe at k12s.phast.umass.edu QAContact: kernel-bugs at lists.ubuntu.com If you use the newest hoary kernel for x86 (2.6.10-5-686-smp) on a Dell Poweredge 6450 (4 cpu, P-III Cascades Xeon) you will not be able to reboot the server. The hoary installation CD will also have this problem. I have tried with no kernel parameters and tried with reboot=b,s. The previous version of the kernel from ubuntu (from maybe like 3 weeks ago), had different problems. When that kernel booted, kswapd0 would spin 100% system time on one cpu. Setting acpi=off for the kernel would fix that problem. That older kernel, however, would reboot if you used reboot=b,s. It would not reboot normally. On the new kernel with reboot=b,s you'll get this kernel error when rebooting: * Cleaning up ifupdown... [ ok ] * Deactivating swap... umount: none busy - remounted read-only [ ok ] * Unmounting local filesystems... umount: none busy - remounted read-only ...done. * Shutting down LVM Volume Groups... ...done. * Rebooting... md: stopping all md devices. psmouse.c: bad data from KBC - timeout psmouse.c: bad data from KBC - timeout Restarting system. Badness in smp_call_function at arch/i386/kernel/smp.c:523 [] smp_call_function+0x10b/0x110 [] handle_IRQ_event+0x2e/0x64 [] smp_send_stop+0x27/0x32 [] stop_this_cpu+0x0/0x30 [] machine_restart+0x8b/0x10d [] smp_call_function_interrupt+0x40/0x60 [] call_function_interrupt+0x1c/0x24 [] futex_wake+0x5b/0xbe [] lock_kernel+0x95/0xa0 [] proc_lookup+0x1c/0xc3 [] __alloc_pages+0x1c3/0x355 [] proc_root_lookup+0x31/0x79 [] real_lookup+0xc2/0xe3 [] do_lookup+0x96/0xa1 [] link_path_walk+0x6a8/0xd5c [] path_lookup+0x93/0x155 [] do_page_fault+0x3a6/0x5cf [] open_namei+0x85/0x61f [] filp_open+0x3e/0x64 [] get_unused_fd+0x81/0xd5 [] sys_open+0x51/0xda [] sysenter_past_esp+0x52/0x75 The reboot issue happens on the newest breezy live CD aswell (9/2 build I think). The kswapd0 issue didn't occour on the newest breezy live CD, but that wasn't an SMP kernel anyway. Ofcourse the ability of rebooting a server that is not physically accessible is fairly important :) This machine is now in production, but I do have some limited ability to run tests on the weekends (and ofcourse I have to physically get to the server first). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 07:57:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 08:57:41 +0100 (BST) Subject: [Bug 14790] New: e100: Failure after resume from hibernation Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux Summary: e100: Failure after resume from hibernation Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: mika.fischer at gmx.de QAContact: kernel-bugs at lists.ubuntu.com When I resume from hibernation I get the following: [4294940.352000] e100: Intel(R) PRO/100 Network Driver, 3.4.8-k2-NAPI [4294940.352000] e100: Copyright(c) 1999-2005 Intel Corporation [4294940.354000] ACPI: PCI Interrupt 0000:02:08.0[A] -> Link [LNKE] -> GSI 11 (level, low) -> IRQ 11 [4294940.450000] e100: 0000:02:08.0: e100_eeprom_load: EEPROM corrupted [4294940.450000] ACPI: PCI interrupt for device 0000:02:08.0 disabled [4294940.450000] e100: probe of 0000:02:08.0 failed with error -11 After that the NIC doesn't work anymore. Full dmesg output attached. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 07:58:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 08:58:34 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050906075834.AEDAF303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux ------- Additional Comments From mika.fischer at gmx.de 2005-09-06 08:58 UTC ------- Created an attachment (id=3565) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3565&action=view) Full dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 08:42:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 09:42:00 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050906084200.CD736303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-06 09:42 UTC ------- Absolutely! Add the module name to /etc/hotplug/blacklist -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 08:42:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 09:42:41 +0100 (BST) Subject: [Bug 13830] license is missing for lt-modem In-Reply-To: Message-ID: <20050906084241.28125303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13830 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 09:31:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 10:31:21 +0100 (BST) Subject: [Bug 14795] New: Irda: nsc-ircc needs module options to work correctly Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14795 Ubuntu | linux Summary: Irda: nsc-ircc needs module options to work correctly Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: mika.fischer at gmx.de QAContact: kernel-bugs at lists.ubuntu.com Hi! This is an IBM ThinkPad R40 2722-CDG. The irda auto-configuration works so far. It loads the right module (nsc-ircc). Unfortunately my Irda port works correctly only if I add the following module options: io=0x2f8 irq=3 dma=3 io and irq can be easily gotten from the corresponding serial port. I don't know where to get the dma port from, though... With these options the device works correctly. If I leave out the any of the three options (io, irq, dma), dmesg gives me: [ 3444.211480] pnp: Device 00:0a disabled. [ 3444.213477] pnp: Device 00:0a activated. [ 3444.264198] irda_init() [ 3444.264233] NET: Registered protocol family 23 [ 3444.275679] nsc-ircc, Found chip at base=0x02e [ 3444.275712] nsc-ircc, driver loaded (Dag Brattli) [ 3444.283080] IrDA: Registered device irda0 [ 3444.283092] nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500 [ 3519.263493] nsc-ircc, unable to allocate dma=0 Let me know if you need more info. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 09:38:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 10:38:31 +0100 (BST) Subject: [Bug 4189] realtime lsm patch for hoary's kernel? In-Reply-To: Message-ID: <20050906093831.94282303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4189 Ubuntu | linux ------- Additional Comments From rdoursenaud at free.fr 2005-09-06 10:38 UTC ------- The sources are available through apt (realtime-lsm-source) and they build fine using module-assistant. The scripts launching these are also available (realtime-lsm). There is no bug! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 11:37:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 12:37:03 +0100 (BST) Subject: [Bug 14245] snd_bt87x module doesn't declare support for sub-device 11bd:0012 In-Reply-To: Message-ID: <20050906113703.4003E303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14245 Ubuntu | linux-meta scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|scott-bugs at ubuntu.com |debzilla at ubuntu.com Status|NEEDINFO |UNCONFIRMED Component|hotplug |linux-meta QAContact| |kernel-bugs at lists.ubuntu.com Summary|snd_bt87x module should |snd_bt87x module doesn't |load, but doesn't |declare support for sub- | |device 11bd:0012 ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-06 12:37 UTC ------- The snd_bt87x module doesn't claim to support the subvendor/subdevice pair your device has (11bd:0012) ... it only supports 0070:13eb and 0070:ff01 -- this needs to be fixed in the module itself. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 11:50:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 12:50:15 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050906115015.6E16F303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ------- Additional Comments From c_elkjaer at stofanet.dk 2005-09-06 12:50 UTC ------- I have been using Hoary and Breezy with my IBM Thinkpad T41 that also has an ipw2100 wireless NIC. However, I have not experienced the problem described in this bug report. Just to let you know. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 11:59:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 12:59:36 +0100 (BST) Subject: [Bug 13786] vga16fb broken on some hardware. In-Reply-To: Message-ID: <20050906115936.56AA1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13786 Ubuntu (installer) | linux ------- Additional Comments From thomas at winischhofer.net 2005-09-06 12:59 UTC ------- Don't know about radeon hardware, but with sis this works as follows: The chip has 2 CRTCs, one for traditional VGA, one to which - in case of laptops - the lcd panel is connected. The primary CRTC is VGA compatible. If you connect a monitor to the VGA plug of such machines, you will see that vga16fb is working. Second, for LCD: Most laptop panels come without a built-in scaler. Such panels need to be programmed to their native mode and the output must be scaled to this resolution. If this isn't done and the mode timing is changed, the LCD will go havoc. No idea how Windows does it, but I would very much assume that they use int10. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 12:15:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 13:15:26 +0100 (BST) Subject: [Bug 13786] vga16fb broken on some hardware. In-Reply-To: Message-ID: <20050906121526.591A1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13786 Ubuntu (installer) | linux ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-06 13:15 UTC ------- The Radeons have a similar process with RMX to scale up to the native res if selected, etc, but VGA still works on internal panels; regardless of which display you select, both vga and vesa still work reasonably well. They might look horrible, but that's another problem altogether. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 12:17:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 13:17:58 +0100 (BST) Subject: [Bug 14018] kernel thinks cd drive is a floppy drive In-Reply-To: Message-ID: <20050906121758.A59B8303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14018 Ubuntu | linux mika.fischer at gmx.de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTABUG ------- Additional Comments From mika.fischer at gmx.de 2005-09-06 13:17 UTC ------- The CD-ROM is faulty so I'm closing this. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 12:26:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 13:26:24 +0100 (BST) Subject: [Bug 14795] Irda: nsc-ircc needs module options to work correctly In-Reply-To: Message-ID: <20050906122624.E2930303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14795 Ubuntu | linux ------- Additional Comments From mika.fischer at gmx.de 2005-09-06 13:26 UTC ------- This also kills the parallel port which is really using DMA 0... So perhaps you could check if DMA 0 is in use and if so use DMA 3... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 12:58:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 13:58:40 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050906125840.72757303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk ------- Additional Comments From mjg59 at codon.org.uk 2005-09-06 13:58 UTC ------- There are two main classes of PCMCIA controller: 1) Legacy PCMCIA, handled by the i82365 driver. These are generally ISA parts. 2) Cardbus, handled by yenta_socket. These are (exclusively?) PCI parts. On a laptop, if you don't have the latter you almost certainly have the former. I'm not aware of any cases where the i82365 probing causes any problems. This certainly isn't a kernel problem, though. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 13:13:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 14:13:02 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050906131302.A4194303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-06 14:13 UTC ------- Ah, I didn't know that. In any case, I would guess that this one isn't, else it would show up in lspci regardless if the kernel supports using it or not. Have you been able to get a dmesg output yet? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 13:59:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 14:59:57 +0100 (BST) Subject: [Bug 14563] Wireless firmware error on HP NC4200 In-Reply-To: Message-ID: <20050906135957.67CDF303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14563 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|wireless-tools |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 15:26:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 16:26:56 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050906152656.3C263303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-06 16:26 UTC ------- (In reply to comment #4) > Made patch for buslogic hotplug in my arch Still broken in Colony-4 CD of Breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 16:56:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 17:56:31 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050906165631.5B242303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From gtaylor at clemson.edu 2005-09-06 17:56 UTC ------- Created an attachment (id=3576) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3576&action=view) A handful of logs from the Tecra A4 This should be enough information to see what's going on, hopefully. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 16:58:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 17:58:59 +0100 (BST) Subject: [Bug 6259] SMP support for the live CD In-Reply-To: Message-ID: <20050906165859.65CF2303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6259 Ubuntu (livecd) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mdz at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-06 17:58 UTC ------- Passing the buck to the kernel team on this one. We raised this topic at Ubuntu Down Under, and I asked that we measure the performance difference in running an SMP kernel on uniprocessor hardware. If we had a single kernel for both UP and SMP systems, we could use this kernel on the live CD. It isn't practical to include additional kernels on the live CD because space is limited and kernels are large. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 18:13:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 19:13:15 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050906181315.39370303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-06 19:13 UTC ------- Looking at your kernel log I see a 512MB SanDisk USB storage device that is set as /dev/sdb with one partition (/dev/sdb1). Is this your card reader? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 18:37:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 19:37:23 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050906183723.D7735303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From gtaylor at clemson.edu 2005-09-06 19:37 UTC ------- No, that's the USB jumpdrive I used to transfer the log files since there is no driver for my wired NIC. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 19:03:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 20:03:31 +0100 (BST) Subject: [Bug 6259] Improve SMP kernel performance on UP systems In-Reply-To: Message-ID: <20050906190331.13ADA303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6259 Ubuntu (livecd) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|SMP support for the live CD |Improve SMP kernel | |performance on UP systems ------- Additional Comments From ben.collins at ubuntu.com 2005-09-06 20:03 UTC ------- I did some searching and found that an SMP kernel on a UP system has unavoidable performance issues due to the nature of the lock operation. Some reports say that the operation can take as many as 12 cycles from the CPU, and that almost always it will cause a pipeline flush because of the operation ordering. However, I did find the below thread and patch, which can be easily ported to the current kernel: http://www.ussg.iu.edu/hypermail/linux/kernel/0203.2/0178.html It implements a function which is called when an SMP kernel boots on a UP system. In this case, it does a dynamic code rewrite based on a lookup table, which turns all lock op's into nop's. This is a vast improvement on the standard SMP kernel when run on a UP system (likely this would also take affect if someone boots with nosmp). I suggest for now that we forget about doing anything related to this in breezy. Post-breezy, it would be nice to start testing this. It should be easy to implement the same thing for other architectures (ppc, and amd64 for example). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 19:16:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 20:16:29 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050906191629.639F7303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux ------- Additional Comments From siretart at tauware.de 2005-09-06 20:16 UTC ------- same on R50e: https://wiki.ubuntu.com/LaptopTestingTeam/ThinkpadR50e -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 20:18:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 21:18:28 +0100 (BST) Subject: [Bug 14039] PCMCIA/Cardbus cards not detected In-Reply-To: Message-ID: <20050906201828.BE49F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14039 Ubuntu (laptop) | linux jani.monoses at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From jani.monoses at gmail.com 2005-09-06 21:18 UTC ------- confirmed on HP nx8220 after insertion cardctl insert is needed for the card to be activated similarly cardctl eject for removal -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 20:37:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 21:37:16 +0100 (BST) Subject: [Bug 14832] New: Include zd1211 wlan driver Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14832 Ubuntu | linux Summary: Include zd1211 wlan driver Product: Ubuntu Version: unspecified Platform: All URL: http://sourceforge.net/projects/zd1211/ OS/Version: All Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: mvirkkil at cc.hut.fi QAContact: kernel-bugs at lists.ubuntu.com Many (cheap) usb wlan adapters use the zd1211 chip. It would be nice if Ubuntu could support does adapters out of the box since a free and open source driver exists. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 20:56:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 21:56:18 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050906205618.57920303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux ------- Additional Comments From spd106 at lycos.co.uk 2005-09-06 21:56 UTC ------- I have a Kapok 3300C with a similar problem. The touchpad worked fine in Hoary and also in Breezy Colony-3, which uses the 2.6.12 kernel. However I have just installed Colony-4 and the touchpad is very unresponsive it takes for more strokes to move the cursor any distance. Double-tap no longer works and if you attempt to tap and drag it zooms off up and to the left until you release the pad. The xorg.conf is no different to Hoary's. I have a usb mouse set to /dev/input/mice and ImPS2. So I not sure that I could change to those settings. Incidentally the usb mouse works fine. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 22:08:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 23:08:36 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050906220836.29801303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux ------- Additional Comments From joerg.unglaub at gmail.com 2005-09-06 23:08 UTC ------- > I have a usb mouse set to /dev/input/mice and ImPS2. So I not sure that I could > change to those settings. Incidentally the usb mouse works fine. I think if you comment out all synaptics related stuff in xorg.conf it should work similar to my last entry normal movement one tap for left mouse and no further gestures. the touchpad will be treated as a normal mouse and should work toether with the usb mouse plugged /dev/input/mice accumulates all mousedevices from usb and psaux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 22:09:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 6 Sep 2005 23:09:36 +0100 (BST) Subject: [Bug 14840] New: dpkg-reconfigure Not touching initrd Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14840 Ubuntu | linux Summary: dpkg-reconfigure Not touching initrd Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: problemes at inicia.es QAContact: kernel-bugs at lists.ubuntu.com Hello, when I install DSDT module without compile kernel, and execute # dpkg-reconfigure linux-image-2.6.12-8-386 Not touching initrd symlinks since we are being reinstalled (2.6.12-8.12) Not updating image symbolic links since we are being updated (2.6.12-8.12) Searching for GRUB installation directory ... found: /boot/grub Testing for an existing GRUB menu.list file... found: /boot/grub/menu.lst . Searching for splash image... none found, skipping... Found kernel: /boot/vmlinuz-2.6.12-8-386 Found kernel: /boot/memtest86+.bin Updating /boot/grub/menu.lst ... done I can't see battery level in my acer labtop Thanks for your great work. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 6 23:51:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 00:51:22 +0100 (BST) Subject: [Bug 4199] Need ppc64 flavour In-Reply-To: Message-ID: <20050906235122.060C9303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4199 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-07 00:51 UTC ------- If I'm not mistaken, we have one of these now in Breezy... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 00:51:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 01:51:21 +0100 (BST) Subject: [Bug 14853] New: 2.6.13 kernel? Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14853 Ubuntu | linux Summary: 2.6.13 kernel? Product: Ubuntu Version: unspecified Platform: All OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: nigelenki at comcast.net QAContact: kernel-bugs at lists.ubuntu.com A few preempt paths and a lot of driver fixes went into 2.6.13. Can we see a 2.6.13 kernel out for Breezy? Maybe resolve bug #11906 so we can see preempt on, as well as the new features. I'd personally prefer preempt over voluntary preempt for a desktop; although I guess having i686-preempt i686-voluntary-preempt amd64-generic-preempt amd64-generic-voluntary-preempt etc would be more "complete." My thinking is that the desktop should be absolutely smooth. We're not running dedicated clusters here, we're not build machines, we don't care about saving 1-2% on throughput. What we DO care about is saving ourselves the trouble of things skipping and jerking when we're encoding video, or CDs not burning right, or sound getting choppy when the system finds load from i.e. reading in menu icons after they all stagnated. When gaim-vv is backmerged into gaim, preempt will make sound over network smoother by responding to sound card interrupts while under heavy load encoding video. Desktop boxes are real-time devices, not hard number-crunchers. That's my take on it. I'm not afraid to find that gcc builds my kernel after an extra 45 seconds. Or something. Doom, however, should be smooth. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 01:21:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 02:21:56 +0100 (BST) Subject: [Bug 14853] 2.6.13 kernel? In-Reply-To: Message-ID: <20050907012156.DEC7E303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14853 Ubuntu | linux ------- Additional Comments From nigelenki at comcast.net 2005-09-07 02:21 UTC ------- Also consider allocating userspace page tables from highmem [*] Allocate 3rd-level pagetables from highmem 2.6.12-8-686 has this off, but it's nice for high memory systems (i.e. over 900M RAM) to keep low memory (the part under 900M) open more. You guys should probably discuss the costs and benefits. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 02:33:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 03:33:25 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050907023325.98570303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-07 03:33 UTC ------- ... fixed as per previous comments? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 03:03:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 04:03:08 +0100 (BST) Subject: [Bug 13952] /sbin/lrm-manager should not depend on /usr/bin/ld In-Reply-To: Message-ID: <20050907030308.6170A303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13952 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 03:37:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 04:37:47 +0100 (BST) Subject: [Bug 14115] Doesn't create modules until next reboot In-Reply-To: Message-ID: <20050907033747.1A668303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14115 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 04:11:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 05:11:50 +0100 (BST) Subject: [Bug 13425] [dapper] please add pwcx webcam decompressor In-Reply-To: Message-ID: <20050907041150.915B7303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13425 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Summary|please add pwcx webcam |[dapper] please add pwcx |decompressor |webcam decompressor ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-07 05:11 UTC ------- not for breezy, I don't think -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 04:15:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 05:15:18 +0100 (BST) Subject: [Bug 13831] ltmodem doesn't build against .12 In-Reply-To: Message-ID: <20050907041518.9A4B0303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13831 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Summary|ltmodem built but no longer |ltmodem doesn't build |included in the debs |against .12 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 04:17:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 05:17:23 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050907041723.94AC3303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-07 05:17 UTC ------- Okay, Alexander, could you please add 'nvidia' to /etc/hotplug/blacklist, restart, and do something like this: $ sudo tail -f /var/log/dmesg & $ sudo modprobe nvidia and tell us if dmesg shows anything interesting while you're loading nvidia. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 04:32:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 05:32:35 +0100 (BST) Subject: [Bug 14716] Trackstick failure - Dell Latitude D410 In-Reply-To: Message-ID: <20050907043235.DF01D303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14716 Ubuntu | linux daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |ben.collins at ubuntu.com Status|ASSIGNED |NEW QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 05:35:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 06:35:56 +0100 (BST) Subject: [Bug 14039] PCMCIA/Cardbus cards not detected In-Reply-To: Message-ID: <20050907053556.4645D303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14039 Ubuntu (laptop) | linux ------- Additional Comments From martijn at foodfight.org 2005-09-07 06:35 UTC ------- cardctl insert detects the card for me too -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 08:56:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 09:56:04 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050907085604.D9A53303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux federico.tolomei at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From federico.tolomei at gmail.com 2005-09-07 09:56 UTC ------- Almost the same problem here. With the driver provided by kernel package: #modinfo spca5xx filename: /lib/modules/2.6.12-8-386/kernel/drivers/usb/media/spca5xx/spca5xx.ko vermagic: 2.6.12-8-386 386 gcc-3.4 depends: srcversion: 51F9399718D471302F9487A #dmesg | tail -n 5 [...] [4295048.444000] spca5xx: module license 'unspecified' taints kernel. #lsmod | grep spca5xx spca5xx 96944 0 The device file isn't create. With hand-compiled driver everything works. #lsmod | grep spca5xx spca5xx 297840 0 videodev 9344 2 spca5xx,saa7134 usbcore 104188 5 spca5xx,usbhid,ehci_hcd,ohci_hcd [With precompiled one there're no module dependencies] # modinfo spca5xx.ko filename: spca5xx.ko author: Michel Xhaard based on spca50x driver by Joel Crisp ,ov511 driver by Mark McClelland description: SPCA5XX USB Camera Driver license: GPL vermagic: 2.6.12-8-386 386 gcc-3.4 depends: usbcore,videodev alias: usb:v0733p0430d*dc*dsc*dp*ic*isc*ip* [... many rows like last one ...] srcversion: 6D9499E0C05382938ED6BD5 parm: usbgrabber:Is a usb grabber 0x0733:0x0430 ? (default 1) (int) parm: lum_level:Luminance level for brightness autoadjustment (default 32) (int) parm: min_bpp:The minimal color depth that may be set (default 0) (int) parm: ccd:If zero, default to the internal CCD, otherwise use the external video input (int) parm: contrast:Initial contrast factor (0-255) not know by all webcams !! (int) parm: bright:Initial brightness factor (0-255) not know by all webcams !! (int) parm: GGreen:Gain Green setting range 0 to 512 /256 (int) parm: GBlue:Gain Blue setting range 0 to 512 /256 (int) parm: GRed:Gain Red setting range 0 to 512 /256 (int) parm: OffGreen:OffGreen setting range -128 to 128 (int) parm: OffBlue:OffBlue setting range -128 to 128 (int) parm: OffRed:OffRed setting range -128 to 128 (int) parm: gamma:gamma setting range 0 to 7 3-> gamma=1 (int) parm: force_rgb:Read RGB instead of BGR (int) parm: snapshot:Enable snapshot mode (int) parm: debug:Debug level: 0=none, 1=init/detection, 2=warning, 3=config/control, 4=function call, 5=max (int) parm: autoexpo:Enable/Disable hardware auto exposure / whiteness (default: enabled) (PC-CAM 600 only !!) (int) parm: autoadjust:CCD dynamically changes exposure (spca501x only !! ) (int) #dmesg [..][4295271.888000] /home/hardskinone/spca5xx-20050701/drivers/usb/spca5xx.c: USB SPCA5XX camera found. Type Creative Webcam Notebook Zc301+Tas5130c [4295271.888000] /home/hardskinone/spca5xx-20050701/drivers/usb/spca5xx.c: [spca5xx_probe:8652] Camera type JPEG [4295271.961000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:108] sensor answer1 0 [4295272.010000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:160] sensor answervga 0 [4295272.064000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:160] sensor answervga 0 [4295272.121000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:160] sensor answervga 0 [4295272.190000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:160] sensor answervga 0 [4295272.244000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:160] sensor answervga 0 [4295272.298000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:160] sensor answervga 0 [4295272.355000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:160] sensor answervga 0 [4295272.409000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zcxx_probeSensor:160] sensor answervga 0 [4295272.613000] /home/hardskinone/spca5xx-20050701/drivers/usb/zc3xx.h: [zc3xx_config:345] Find Sensor UNKNOW_0 force Tas5130 [4295272.622000] /home/hardskinone/spca5xx-20050701/drivers/usb/spca5xx.c: [spca5xx_getcapability:2525] maxw 640 maxh 480 minw 176 minh 144 [4295272.624000] usbcore: registered new driver spca5xx [4295272.624000] /home/hardskinone/spca5xx-20050701/drivers/usb/spca5xx.c: spca5xx driver 00.57.00 registered Hope that helps. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 08:57:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 09:57:17 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050907085717.9B426303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux federico.tolomei at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |federico.tolomei at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 09:39:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 10:39:13 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050907093913.A16E1303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb adconrad at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mdz at ubuntu.com ------- Additional Comments From adconrad at ubuntu.com 2005-09-07 10:39 UTC ------- I can't manage to reproduce any corruption-on-resize problems, but for the sake of our sanity, perhaps we should consider updating our nfttools to a newer upstream with the bugfixes mentioned in this bug log. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 11:41:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 12:41:35 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050907114135.14090303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux ------- Additional Comments From obiwan at mailmij.org 2005-09-07 12:41 UTC ------- Ben, I actually mailed you abit this quite a while ago. But i think you missed it and i lost my mail. Anyway, the thing i want to add here is: no, it is not just hald. Actually, just doing cat /dev/hdb > /dev/null in a loop from bash causes the same problem. No ioctls needed, just an open freezes the whole thing. now hope someone fixing this, me specially creating an ubuntu account for this reply:P -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 12:08:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 13:08:54 +0100 (BST) Subject: [Bug 10668] System freezes whilst powernowd stepping up AMD64 freq (intermittent/hoary) In-Reply-To: Message-ID: <20050907120854.24E43303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10668 Ubuntu | linux ------- Additional Comments From ketil at ii.uib.no 2005-09-07 13:08 UTC ------- I've seen this as well, but on a Dell Latitude 810 (and thus an Intel PIII CPU). I had this problem when I installed Hoary, but somehow managed to make it go away (check my log at http://www.ii.uib.no/~ketil/ubuntu-prob.log). Now I installed Breezy (Col 3), and the problem is back. It's fairly evident, every time the CPU is scaled up, there is a second or so of system freeze (including mouse pointer). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 12:15:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 13:15:03 +0100 (BST) Subject: [Bug 10668] System freezes whilst powernowd stepping up AMD64 freq (intermittent/hoary) In-Reply-To: Message-ID: <20050907121503.868D8303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10668 Ubuntu | linux ------- Additional Comments From ketil at ii.uib.no 2005-09-07 13:15 UTC ------- Oops - my computer freezes when the CPU frequency *drops*. See bug 7121. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 13:43:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 14:43:10 +0100 (BST) Subject: [Bug 13506] SATA HDD not recognized during Breezy Colony 4 install In-Reply-To: Message-ID: <20050907134310.CFD6F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13506 Ubuntu (installer, laptop) | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |cjwatson at ubuntu.com AssignedTo|cjwatson at ubuntu.com |ben.collins at ubuntu.com Status|UNCONFIRMED |NEW Component|debian-installer |linux Ever Confirmed|0 |1 QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From cjwatson at ubuntu.com 2005-09-07 14:43 UTC ------- 14:38 < mjg59> Kamion: We should be including ahci, and ahci should be loaded before ata_piix is Please add ahci to the sata-modules udeb. How we're going to ensure that ahci is loaded before ata_piix, I'm not quite sure ... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 13:57:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 14:57:15 +0100 (BST) Subject: [Bug 4199] Need ppc64 flavour In-Reply-To: Message-ID: <20050907135715.D3BCA303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4199 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-07 14:57 UTC ------- Yep, we sure do have ppc64 kernels now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 15:26:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 16:26:33 +0100 (BST) Subject: [Bug 12641] kernel 2.6.12 performance problem In-Reply-To: Message-ID: <20050907152633.A3237303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12641 Ubuntu | linux ------- Additional Comments From p92 at free.fr 2005-09-07 16:26 UTC ------- Perf problems start with kernel.org 2.6.11 upstream bug opened http://bugzilla.kernel.org/show_bug.cgi?id=5186 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 19:00:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 20:00:58 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050907190058.95BD9303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux ------- Additional Comments From jbersac at free.fr 2005-09-07 20:00 UTC ------- Suspend works perfectly on iBook G4 with an hoary with default xorg configuration files updated to last downloadable version by update-manager :D... I hope it was helpful... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 19:20:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 20:20:42 +0100 (BST) Subject: [Bug 14548] pcmcia detection locks up my laptop In-Reply-To: Message-ID: <20050907192042.1FE95303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14548 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|normal |major Component|pcmcia-cs |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 19:34:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 20:34:09 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050907193409.9BEB7303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux ------- Additional Comments From bersace03 at free.fr 2005-09-07 20:34 UTC ------- Jb, you're wrong, you're using breezy with kernel 2.6.12 ! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 19:46:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 20:46:50 +0100 (BST) Subject: [Bug 14574] kernel crash pdflush/find_get_pages_tag+49/75 In-Reply-To: Message-ID: <20050907194650.07EDB303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14574 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|linux-meta |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 19:47:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 20:47:41 +0100 (BST) Subject: [Bug 14575] kernel crash powernowd/pg0+499863808/1070015488 In-Reply-To: Message-ID: <20050907194741.63151303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14575 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|linux-meta |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 20:06:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 21:06:49 +0100 (BST) Subject: [Bug 14563] Wireless firmware errors from ipw2x00 In-Reply-To: Message-ID: <20050907200649.94225303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14563 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Wireless firmware error on |Wireless firmware errors |HP NC4200 |from ipw2x00 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 20:06:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 21:06:59 +0100 (BST) Subject: [Bug 14563] Wireless firmware errors from ipw2x00 In-Reply-To: Message-ID: <20050907200659.4B9B1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14563 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-07 21:06 UTC ------- *** Bug 14628 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 20:07:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 21:07:19 +0100 (BST) Subject: [Bug 14563] Wireless firmware errors from ipw2x00 In-Reply-To: Message-ID: <20050907200719.8AD0B303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14563 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mdz at ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-07 21:07 UTC ------- I also see these errors on my T42 with ipw2200 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 20:49:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 21:49:24 +0100 (BST) Subject: [Bug 14574] Kernel crash after ACPI fails to perform AE_TIME handler method In-Reply-To: Message-ID: <20050907204924.7B174303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14574 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|kernel crash |Kernel crash after ACPI |pdflush/find_get_pages_tag+4|fails to perform AE_TIME |9/75 |handler method ------- Additional Comments From ben.collins at ubuntu.com 2005-09-07 21:49 UTC ------- Wow, the stack and registers are pretty trashed at this point with 0x30 all over the place. 0x30 happens to be the ascii for '0' (zero). Not really helpful, but it shows that it isn't just random data being tossed around in memory. I think the second crash in pdflush is unreliable. Since this occured shortly after the ACPI error, which was followed by a spew of NULL's to printk(kernlog), it seems reasonable to me that the initial problem is somewhere in or after the ACPI error handler. Hell, it may even be a bios bug. Is this reproducible? Does it still occur if you boot with acpi disabled? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 20:55:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 21:55:37 +0100 (BST) Subject: [Bug 14574] Kernel crash after ACPI fails to perform AE_TIME handler method In-Reply-To: Message-ID: <20050907205537.9322E303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14574 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-07 21:55 UTC ------- Ah, it makes sense. The 10 or so lines of '0000000....' we see in the log is the 0x30's ('0'). It's getting sloshed all over memory somehow. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 21:10:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 22:10:10 +0100 (BST) Subject: [Bug 8899] 2-minute delay before booting when CONFIG_EDD=y In-Reply-To: Message-ID: <20050907211010.F1D1A303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8899 Ubuntu | linux ------- Additional Comments From michael.vogt at ubuntu.com 2005-09-07 22:10 UTC ------- Having the edd information available would be helpfull for #1750 (finding the bios device order for grub). Maybe we can have a look after breezy at this again? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 21:56:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 22:56:44 +0100 (BST) Subject: [Bug 14644] Ejecting a firewire iPod causes kernel panic In-Reply-To: Message-ID: <20050907215644.2A8F0303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14644 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|eject |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 22:04:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 23:04:35 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050907220435.1393B303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|acpi |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|power button turns power off|ACPI worked in hoary, no |wo/ running shutdown scripts|longer in breezy |(suspend?) | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 22:19:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 23:19:47 +0100 (BST) Subject: [Bug 14644] Ejecting a firewire iPod causes kernel panic In-Reply-To: Message-ID: <20050907221947.01162303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14644 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-07 23:19 UTC ------- Not sure if this is an ieee1394 bug, or an amd64 bug. Do you have an i386 system to test this on? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 22:29:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 23:29:04 +0100 (BST) Subject: [Bug 10916] apparent interaction bug between ACPI and RAID rebuild in Linux In-Reply-To: Message-ID: <20050907222904.A93D9303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10916 Ubuntu | linux finley at anl.gov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |finley at anl.gov ------- Additional Comments From finley at anl.gov 2005-09-07 23:29 UTC ------- I am experiencing this same issue on a new Sun Fire V40z Server in a well cooled machine room. Hardware: - Quad CPU amd64 -- AMD Opteron(tm) Processor 852 - 32G memory - 2x SCSI disks RAID config: - /dev/md0 RAID1 Mount point: /boot Partitions: /dev/sda1, /dev/sdb1 - /dev/md1 RAID1 Physical device for LVM vg0 $ mount | grep vg0 /dev/mapper/vg0-root on / type ext3 (rw,errors=remount-ro) /dev/mapper/vg0-tmp on /tmp type ext3 (rw) /dev/mapper/vg0-var on /var type ext3 (rw) I didn't try the "acpi=off" option, but was able to temporarily resolve the situation in this way: - multiple boots failed with hoary 2.6.10-5-amd64-k8-smp in the way described below - normal, just hit boot failed - append "init=/bin/bash" boot boot failed - append "single" boot failed - boot from "live" CD, then "watch cat /proc/mdstat" showed /dev/md1 re-syncing - after the re-sync was complete, I was able to reboot with kernel 2.6.12.2-bef without incident (smp kernel) - then tried booting again from 2.6.10-5-amd64-k8-smp, and also had success Another point of potential interest is the file "/script" on the initrd, as this is where the RAID arrays are assembled. It contains the following for my system: mdadm -A /devfs/md/1 -R -u 55f3a23c:a0ef4950:a0a11bfe:250e3f63 /dev/sda2 /dev/sdb2 mkdir /devfs/vg0 mount_tmpfs /var if [ -f /etc/lvm/lvm.conf ]; then cat /etc/lvm/lvm.conf > /var/lvm.conf fi mount_tmpfs /etc/lvm if [ -f /var/lvm.conf ]; then cat /var/lvm.conf > /etc/lvm/lvm.conf fi mount -nt devfs devfs /dev vgchange -a y vg0 umount /dev umount -n /var umount -n /etc/lvm ROOT=/dev/mapper/vg0-root mdadm -A /devfs/md/1 -R -u 55f3a23c:a0ef4950:a0a11bfe:250e3f63 /dev/sda2 /dev/sdb2 The machine is in use now, and I am unable to perform further tests on it. However, I will be receiving another one soon, and will be able to re-create this problem and do further testing on it. Please let me know if there are tests you would like me to perform. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 22:36:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 23:36:39 +0100 (BST) Subject: [Bug 14498] CD fails to boot In-Reply-To: Message-ID: <20050907223639.2A2C3303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14498 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-07 23:36 UTC ------- Did the debian-installer/framebuffer=false option get your further into the installer? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 22:51:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 7 Sep 2005 23:51:38 +0100 (BST) Subject: [Bug 11602] Kernel Bug when attaching USB stick (amd64) In-Reply-To: Message-ID: <20050907225138.24ABA303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11602 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-07 23:51 UTC ------- This looks like an amd64 bug. There's only three cases where this bug in traps.c is triggered. First is a DMA data direction being DMA_NONE during mapping and unmapping of some single page DMA transactions (would affect all arch's), and another is when the addr/size of the DMA data is outside the range of the hw that is using it (in this case the USB host controller). Thing is that the DMA routines should only allow allocation within this range (DMA allocations take the addr mask as an argument). So that would seem to me that the amd64 iommu code is doing something wrong. I need to find an upstream contact for this bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 7 23:13:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 00:13:44 +0100 (BST) Subject: [Bug 14926] New: mac-on-linux modules cannot be built on PPC64 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14926 Ubuntu | linux Summary: mac-on-linux modules cannot be built on PPC64 Product: Ubuntu Version: unspecified Platform: powerpc OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: svu at gnome.org QAContact: kernel-bugs at lists.ubuntu.com Sorry for reporting it against kernel, but there is no mol-modules-source... Mol modules cannot be built on ppc64 because of some missing mollib (???) --------------------------------------------------------------- svu at tosha:/usr/src$ sudo tar -xzf mol-modules.tar.gz svu at tosha:/usr/src$ cd modules/mol/ svu at tosha:/usr/src/modules/mol$ sudo debian/rules build m4 -DKVERS="2.6.12-8-powerpc64-smp" -DKSRC="/usr/src/linux-headers-2.6.12-8-powerpc64-smp" -DKEMAIL="svu at gnome.org" -DKMAINT="svu" -DKDREV="ubuntu0" -DDEBDATE="Thu, 8 Sep 2005 00:12:22 +0100" debian/control.m4 > debian/control m4 -DKVERS="2.6.12-8-powerpc64-smp" -DKSRC="/usr/src/linux-headers-2.6.12-8-powerpc64-smp" -DKEMAIL="svu at gnome.org" -DKMAINT="svu" -DKDREV="ubuntu0" -DDEBDATE="Thu, 8 Sep 2005 00:12:22 +0100" debian/changelog.m4 > debian/changelog touch configure-stamp dh_testdir /usr/bin/make make[1]: Entering directory `/usr/src/modules/mol' /usr/bin/make -C src/kmod make[2]: Entering directory `/usr/src/modules/mol/src/kmod' make[2]: Nothing to be done for `all'. make[2]: Leaving directory `/usr/src/modules/mol/src/kmod' /usr/bin/make -C src/netdriver make[2]: Entering directory `/usr/src/modules/mol/src/netdriver' CC [M] /usr/src/modules/mol/src/netdriver/build/kuname.o strings /usr/src/modules/mol/src/netdriver/build/kuname.o | grep -- '-MAGIC-' | sed -e s/-MAGIC-// > /usr/src/modules/mol/src/netdriver/build/.kuname CC [M] /usr/src/modules/mol/src/netdriver/build/sheep.o /usr/src/modules/mol/src/netdriver/build/sheep.c: In function `sheep_net_open': /usr/src/modules/mol/src/netdriver/build/sheep.c:258: warning: use of cast expressions as lvalues is deprecated /usr/src/modules/mol/src/netdriver/build/sheep.c: In function `sheep_net_ioctl': /usr/src/modules/mol/src/netdriver/build/sheep.c:501: warning: passing arg 3 of `sk_alloc' makes pointer from integer without a cast /usr/src/modules/mol/src/netdriver/build/sheep.c:501: warning: passing arg 4 of `sk_alloc' makes integer from pointer without a cast Building modules, stage 2. MODPOST CC /usr/src/modules/mol/src/netdriver/build/kuname.mod.o LD [M] /usr/src/modules/mol/src/netdriver/build/kuname.ko CC /usr/src/modules/mol/src/netdriver/build/sheep.mod.o LD [M] /usr/src/modules/mol/src/netdriver/build/sheep.ko ln: creating hard link `../../mollib/modules/2.6.12-8-powerpc64-smp-smp//sheep.ko' to `build/sheep.ko': No such file or directory make[2]: *** [all-local] Error 1 make[2]: Leaving directory `/usr/src/modules/mol/src/netdriver' make[1]: [src/netdriver] Error 2 (ignored) make[1]: Leaving directory `/usr/src/modules/mol' touch build-stamp svu at tosha:/usr/src/modules/mol$ ------------------------------------------------------ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 02:22:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 03:22:27 +0100 (BST) Subject: [Bug 14931] New: Missing libata "passthrough" functionality Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14931 Ubuntu | kernel-package Summary: Missing libata "passthrough" functionality Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: mlord at pobox.com QAContact: kernel-bugs at lists.ubuntu.com Breezy kernels are missing the libata passthru functionality that was present in Hoary. this is needed for proper laptop-mode support, as well as for S.M.A.R.T. (smartmontools) and hdparm. Latest passthrough patch available from Jeff Garzik's GIT repository. A recent snapshop is at http://rtr.ca/dell_i9300/kernels/2.6.1[23]/ Cheers! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 02:54:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 03:54:56 +0100 (BST) Subject: [Bug 14853] 2.6.13 kernel? In-Reply-To: Message-ID: <20050908025456.DAE01303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14853 Ubuntu | linux ------- Additional Comments From nigelenki at comcast.net 2005-09-08 03:54 UTC ------- Preempt (full), 1000Hz, third level page tabels, netapplet works for me (bug #11906), so a 2.6.13 kernel in Ubuntu with full preempt should be fine I guess. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 02:55:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 03:55:37 +0100 (BST) Subject: [Bug 11906] kernel crash/preempt (maybe related to wlan) In-Reply-To: Message-ID: <20050908025537.0ADEF303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11906 Ubuntu | linux ------- Additional Comments From nigelenki at comcast.net 2005-09-08 03:55 UTC ------- On 2.6.13 home-built kernel, Preempt (full), 1000Hz, third level page tabels, netapplet works for me, so a 2.6.13 kernel in Ubuntu with full preempt should be a fine way to close this bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 02:59:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 03:59:51 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050908025951.EA934303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-08 03:59 UTC ------- It looks like you're running with apm on Breezy, rather than acpi. Which is somewhat odd. The acpi interpreter seems to be erroring out in acpi_load_namespaces. Could you possibly attach your full /var/log/dmesg and /proc/acpi/dsdt? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 05:57:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 06:57:04 +0100 (BST) Subject: [Bug 14941] New: kernel/udev not recognizing joystick/creating joystick device Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux Summary: kernel/udev not recognizing joystick/creating joystick device Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: elliotf-ubuntu-wiki at gratuitous.net QAContact: kernel-bugs at lists.ubuntu.com upgraded system from hoary to breezy, and joystick devices are not longer recognized/created as devices under /dev. Joysticks were previously recognized when hoary was installed. Motherboard is Asus A7N-8X, nvidia chipset. Original message to ubuntu-dev mailing list follows: I'm having an issue with breezy not recognizing usb joysticks. Hoary sees them fine, and udev creates the /dev/input/jsX device, but breezy does not. I cannot tell if udev's rules are not right, or if the kernel is not recognizing the device. Any ideas? Unfortunately, they are two different machines. When the breezy machine was running hoary, it recognized the joystick just fine. Again, these are two different machines. I will reinstall to hoary (from breezy) if requested. Tasty bits of info follow: Hoary kernel/udev version: Linux frog 2.6.10-5-686 #1 Tue Apr 5 12:27:02 UTC 2005 i686 GNU/Linux udev 0.050-3ubuntu7 Breezy kernel/udev version: Linux kong 2.6.12-8-k7 #1 Tue Aug 30 23:29:08 BST 2005 i686 GNU/Linux udev 0.060-1ubuntu10 Hoary /var/log/syslog portion: Aug 31 20:35:35 frog kernel: usb 2-2: new low speed USB device using uhci_hcd and address 6 Aug 31 20:35:35 frog kernel: input: USB HID v1.00 Joystick [LTS PSX/USB Pad] on usb-0000:00:1d.1-2 Aug 31 20:35:35 frog hal.hotplug[27193]: DEVPATH is not set Aug 31 20:35:36 frog usb.agent[27204]: usbhid: already loaded Aug 31 20:35:36 frog input.agent[27194]: joydev: already loaded Aug 31 20:35:36 frog input.agent[27194]: evdev: already loaded Aug 31 20:35:36 frog input.agent[27194]: evbug: blacklisted Aug 31 20:35:36 frog udev[27275]: configured rule in '/etc/udev/rules.d/udev.rules' at line 61 applied, 'js0' becomes 'input/%k' Aug 31 20:35:36 frog udev[27275]: creating device node '/dev/input/js0' Aug 31 20:35:36 frog udev[27274]: configured rule in '/etc/udev/rules.d/udev.rules' at line 60 applied, 'event3' becomes 'input/%k' Aug 31 20:35:36 frog udev[27274]: creating device node '/dev/input/event3' Aug 31 20:35:36 frog input.agent[27280]: evdev: already loaded Aug 31 20:35:36 frog input.agent[27280]: evbug: blacklisted Aug 31 20:35:36 frog input.agent[27296]: evdev: already loaded Aug 31 20:35:36 frog input.agent[27296]: evbug: blacklisted lsusb: $ lsusb Bus 004 Device 001: ID 0000:0000 Bus 003 Device 003: ID 1668:0441 Actiontec Electronics, Inc. [hex] Bus 003 Device 001: ID 0000:0000 Bus 002 Device 002: ID 8631:1128 Bus 002 Device 001: ID 0000:0000 Bus 001 Device 001: ID 0000:0000 Breezy (logging turned up) /var/log/syslog portion: Aug 31 20:41:00 localhost kernel: [4338248.565000] ohci_hcd 0000:00:02.0: wakeup Aug 31 20:41:01 localhost kernel: [4338249.028000] usb 1-3: new low speed USB device using ohci_hcd and address 2 Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1114 queued, devpath '/devices/pci0000:00/0000:00:02.0/usb1/1-3' Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1114 forked, pid 18487, 0 seconds old Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1115 queued, devpath '/devices/pci0000:00/0000:00:02.0/usb1/1-3/1-3:1.0' Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1116 queued, devpath '/class/input/event4' Aug 31 20:41:01 localhost kernel: [4338249.163000] input: USB HID v1.00 Joystick [LTS PSX/USB Pad] on usb-0000:00:02.0-3 Aug 31 20:41:01 localhost udevd[2372]: udevd.c: udevd event message received Aug 31 20:41:01 localhost last message repeated 3 times Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 0 forked, pid 18491, 43576 seconds old Aug 31 20:41:01 localhost udev[18491]: udev.c: action, subsystem or devpath missing Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 0 exit, 43576 seconds old Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1114 exit, 0 seconds old Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1115 forked, pid 18517, 0 seconds old Aug 31 20:41:01 localhost usb.agent[18520]: usbhid: already loaded Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1115 exit, 0 seconds old Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1116 forked, pid 18568, 0 seconds old Aug 31 20:41:01 localhost udev[18568]: udev_rules.c: configured rule in '/etc/udev/rules.d/udev.rules:71' applied, 'event4' becomes 'input/%k' Aug 31 20:41:01 localhost udev[18568]: udev_add.c: creating device node '/dev/input/event4' Aug 31 20:41:01 localhost input.agent[18573]: evdev: already loaded Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 1116 exit, 0 seconds old lsusb: $ lsusb Bus 003 Device 006: ID 046d:c024 Logitech, Inc. Bus 003 Device 005: ID 046d:c30a Logitech, Inc. Bus 003 Device 004: ID 0424:223a Standard Microsystems Corp. 8-in-1 Card Reader Bus 003 Device 003: ID 0424:2504 Standard Microsystems Corp. Bus 003 Device 002: ID 0424:2502 Standard Microsystems Corp. Bus 003 Device 001: ID 0000:0000 Bus 002 Device 001: ID 0000:0000 Bus 001 Device 003: ID 8631:1128 Bus 001 Device 001: ID 0000:0000 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 06:31:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 07:31:25 +0100 (BST) Subject: [Bug 14941] kernel/udev not recognizing joystick/creating joystick device In-Reply-To: Message-ID: <20050908063125.9A4D7303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |scott-bugs at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 07:04:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 08:04:54 +0100 (BST) Subject: [Bug 14540] [breezy] usb mouse displays error on console during boot In-Reply-To: Message-ID: <20050908070454.C4481303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14540 Ubuntu | linux ------- Additional Comments From robitaille at ubuntu.com 2005-09-08 08:04 UTC ------- I have tried the 4 suggestions in that wiki page. noapic, pci=noacpi and acpi=off still show that error on the console. The laptop doesn't boot with nolapic: I get the error IOAPIC[0]:invalid reference to irq0 No other external devices are connected beside the usb mouse. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 09:32:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 10:32:40 +0100 (BST) Subject: [Bug 14947] New: After latest kernel upgrade Windows partitions have disappeared from grub Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | linux Summary: After latest kernel upgrade Windows partitions have disappeared from grub Product: Ubuntu Version: unspecified Platform: Other URL: https://wiki.ubuntu.com/LaptopTestingTeam/ThinkpadT43- 1871 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: matthew.east at breathe.com QAContact: kernel-bugs at lists.ubuntu.com Just guessing at the package, please reassign if necessary! After the latest Breezy upgrades, including a new kernel, I have found that my Windows partition and Thinkpad Rescue Partition, both previously automatically detected and inserted into the grub menu, have disappeared from my bootup options. Although this is essentially a Good Thing, it's clearly a bug. See URL for the hardware information. Matt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 11:01:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 12:01:00 +0100 (BST) Subject: [Bug 14563] Wireless firmware errors from ipw2x00 In-Reply-To: Message-ID: <20050908110100.12C62303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14563 Ubuntu | linux ------- Additional Comments From rolf.offermanns at gmx.net 2005-09-08 12:00 UTC ------- I also see this bug on my Maxdata Pro 8100IS. There are several entries in the ipw2200 bug database for this (http://www.bughost.org/bugzilla/show_bug.cgi?id=649, http://www.bughost.org/bugzilla/show_bug.cgi?id=697). Some users reported, that "modprobe ipw2200 hwcrypto=0" fixes the problem for them. For me, it does not. The problem occurs less often when I am in near distance to my AP, it gets worse if I am at a "critical distance". -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 11:13:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 12:13:17 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050908111317.4E96F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux ------- Additional Comments From jbersac at free.fr 2005-09-08 12:13 UTC ------- Rhat's what I meant with "updated to last" :D. I'm sorry. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 11:23:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 12:23:18 +0100 (BST) Subject: [Bug 14644] Ejecting a firewire iPod causes kernel panic In-Reply-To: Message-ID: <20050908112318.400D1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14644 Ubuntu | linux ------- Additional Comments From chalserogers at gmail.com 2005-09-08 12:23 UTC ------- Created an attachment (id=3624) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3624&action=view) Output of sudo lspci -vvv -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 11:26:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 12:26:17 +0100 (BST) Subject: [Bug 14644] Ejecting a firewire iPod causes kernel panic In-Reply-To: Message-ID: <20050908112617.29017303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14644 Ubuntu | linux ------- Additional Comments From chalserogers at gmail.com 2005-09-08 12:26 UTC ------- (In reply to comment #1) > Not sure if this is an ieee1394 bug, or an amd64 bug. Do you have an i386 system > to test this on? Tested on the same computer using the latest Breezy i386 live cd - Ejecting works fine there, so it seems to be something amd64 specific. Anything else I can do to help? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 11:41:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 12:41:37 +0100 (BST) Subject: [Bug 14947] After latest kernel upgrade Windows partitions have disappeared from grub In-Reply-To: Message-ID: <20050908114137.EFC75303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | linux ------- Additional Comments From sivan at piware.de 2005-09-08 12:41 UTC ------- (In reply to comment #0) > Just guessing at the package, please reassign if necessary! > > After the latest Breezy upgrades, including a new kernel, I have found that my > Windows partition and Thinkpad Rescue Partition, both previously automatically > detected and inserted into the grub menu, have disappeared from my bootup > options. Although this is essentially a Good Thing, it's clearly a bug. See URL > for the hardware information. > > Matt I can confirm the same behavior over here, on my Dell laptop and intel desktop as well. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 11:43:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 12:43:05 +0100 (BST) Subject: [Bug 14947] After latest kernel upgrade Windows partitions have disappeared from grub In-Reply-To: Message-ID: <20050908114305.282B4303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | linux matthew.east at breathe.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From matthew.east at breathe.com 2005-09-08 12:43 UTC ------- marking as confirmed, then -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 11:53:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 12:53:53 +0100 (BST) Subject: [Bug 1927] System hangs on network activity (realtek 8139) In-Reply-To: Message-ID: <20050908115353.B35E6303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1927 Ubuntu | linux ------- Additional Comments From john at technolalia.org 2005-09-08 12:53 UTC ------- (In reply to comment #40) > Can you try booting with pci=routeirq? This was suggested in a linux-kernel bug > report. Using Breezy Colony 4 live cd, same problem - system hangs on network activity. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 12:07:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 13:07:56 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908120756.1030D303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | udev ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |martin.pitt at ubuntu.com Component|linux |udev Summary|kernel/udev not recognizing |udev not loading joystick |joystick/creating joystick |module/creating joystick |device |device ------- Additional Comments From ben.collins at ubuntu.com 2005-09-08 13:07 UTC ------- Kernel is recognizing the device, so I suspect udev is just not loading things. It only shows it trying to load the hid driver, and nothing else. Reassigning to udev -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 12:13:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 13:13:11 +0100 (BST) Subject: [Bug 14947] After latest kernel upgrade Windows partitions have disappeared from grub In-Reply-To: Message-ID: <20050908121311.89CBC303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|linux |grub ------- Additional Comments From ben.collins at ubuntu.com 2005-09-08 13:13 UTC ------- Does the kernel see the partitions and can you mount them yourself? Can you send the output of /proc/partitions on hoary and breezy kernels. I'm thinking this is a grub bug (or whatever does the partition checking). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 12:14:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 13:14:24 +0100 (BST) Subject: [Bug 1927] System hangs on network activity (realtek 8139) In-Reply-To: Message-ID: <20050908121424.CCEF0303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1927 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-08 13:14 UTC ------- >From what I understand, no kernel upgrade is going to fix this. Have you tried to boot with pci=routeirq yet? That would really help me know if this is the case. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 12:20:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 13:20:58 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908122058.5EA81303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | udev jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com ------- Additional Comments From jbailey at ubuntu.com 2005-09-08 13:20 UTC ------- Can you try: sudo udevstart And see if your joystick device appears, please? Tks, Jeff Bailey -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 12:22:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 13:22:36 +0100 (BST) Subject: [Bug 14947] After latest kernel upgrade Windows partitions have disappeared from grub In-Reply-To: Message-ID: <20050908122236.79EC9303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub ------- Additional Comments From matthew.east at breathe.com 2005-09-08 13:22 UTC ------- (In reply to comment #3) > Does the kernel see the partitions and can you mount them yourself? Can you send > the output of /proc/partitions on hoary and breezy kernels. I only have Breezy installed. Here is the output: matt at kalliope:~$ cat /proc/partitions major minor #blocks name 8 0 39070080 sda 8 1 14651248 sda1 8 2 4142880 sda2 8 3 19406520 sda3 8 4 1 sda4 8 5 859446 sda5 253 0 14651248 dm-0 253 1 4142880 dm-1 253 2 19406520 dm-2 253 3 859446 dm-3 Here is my partition table: matt at kalliope:~$ sudo fdisk -l /dev/sda Disk /dev/sda: 40.0 GB, 40007761920 bytes 255 heads, 63 sectors/track, 4864 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start End Blocks Id System /dev/sda1 1 1824 14651248+ 7 HPFS/NTFS /dev/sda2 * 4348 4864 4142880 2 XENIX root Partition 2 does not end on cylinder boundary. /dev/sda3 1825 4240 19406520 83 Linux /dev/sda4 4241 4347 859477+ 5 Extended /dev/sda5 4241 4347 859446 82 Linux swap / Solaris Partition table entries are not in disk order and here is what I get when I try to mount /dev/sda1: matt at kalliope:~$ sudo mount -t ntfs /dev/sda1 /mnt/test mount: wrong fs type, bad option, bad superblock on /dev/sda1, [4296730.205000] NTFS driver 2.1.22 [Flags: R/O MODULE]. [4296730.245000] NTFS-fs error (device sda1): read_ntfs_boot_sector(): Primary boot sector is invalid. [4296730.245000] NTFS-fs error (device sda1): read_ntfs_boot_sector(): Mount option errors=recover not used. Aborting without trying to recover. [4296730.245000] NTFS-fs error (device sda1): ntfs_fill_super(): Not an NTFS volume. [4296745.723000] NTFS-fs error (device sda2): read_ntfs_boot_sector(): Primary boot sector is invalid. [4296745.723000] NTFS-fs error (device sda2): read_ntfs_boot_sector(): Mount option errors=recover not used. Aborting without trying to recover. [4296745.723000] NTFS-fs error (device sda2): ntfs_fill_super(): Not an NTFS volume. [4296749.694000] NTFS-fs error (device sda1): read_ntfs_boot_sector(): Primary boot sector is invalid. [4296749.694000] NTFS-fs error (device sda1): read_ntfs_boot_sector(): Mount option errors=recover not used. Aborting without trying to recover. [4296749.694000] NTFS-fs error (device sda1): ntfs_fill_super(): Not an NTFS volume. [4296809.817000] NTFS-fs error (device sda1): read_ntfs_boot_sector(): Primary boot sector is invalid. [4296809.817000] NTFS-fs error (device sda1): read_ntfs_boot_sector(): Mount option errors=recover not used. Aborting without trying to recover. [4296809.817000] NTFS-fs error (device sda1): ntfs_fill_super(): Not an NTFS volume. Dunno if this helps, but it is certainly weird. Windows was working fine since my massive dist-upgrade yesterday. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 12:36:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 13:36:55 +0100 (BST) Subject: [Bug 14947] After latNTFS module broken on breezy, not in hoary. In-Reply-To: Message-ID: <20050908123655.D472B303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|grub |linux Summary|After latest kernel upgrade |After latNTFS module broken |Windows partitions have |on breezy, not in hoary. |disappeared from grub | ------- Additional Comments From ben.collins at ubuntu.com 2005-09-08 13:36 UTC ------- Yeah, it looks like it's just a matter of the ntfs module being broken. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 12:55:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 13:55:13 +0100 (BST) Subject: [Bug 14498] CD fails to boot In-Reply-To: Message-ID: <20050908125513.79A1A303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14498 Ubuntu | kernel-package ------- Additional Comments From iczolkos at rz.uni-potsdam.de 2005-09-08 13:55 UTC ------- (In reply to comment #3) > Did the debian-installer/framebuffer=false option get your further into the > installer? Hi, unfortunately not. As before, the screen says something like 'Uncompressing ... kernel...'. Then the curser goes to the next line and flashes while nothing happens anymore. Yours, Ilja Czolkos -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 13:08:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 14:08:05 +0100 (BST) Subject: [Bug 14947] After latNTFS module broken on breezy, not in hoary. In-Reply-To: Message-ID: <20050908130805.1E446303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | linux ------- Additional Comments From matthew.east at breathe.com 2005-09-08 14:08 UTC ------- so is there any way I can boot Windows? I'll do a system restore if there is no change of this being fixed today. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 13:52:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 14:52:57 +0100 (BST) Subject: [Bug 14964] New: Logitech QuickCam 4000 Pro is not supported Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14964 Ubuntu | linux Summary: Logitech QuickCam 4000 Pro is not supported Product: Ubuntu Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: herzi at gnome-de.org QAContact: kernel-bugs at lists.ubuntu.com The web cam mentioned above is not supported by ubuntu breezy yet. When one tries to use it, one only gets a gray picture. I tried with the third party drivers mentioned at: http://www.seismo.ethz.ch/linux/webcam.html and HEY, the cam works perfectly. Please include a working driver with ubuntu breezy. Thank you -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 13:58:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 14:58:15 +0100 (BST) Subject: [Bug 14947] NTFS module broken on breezy, not in hoary. In-Reply-To: Message-ID: <20050908135815.389C3303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|After latNTFS module broken |NTFS module broken on |on breezy, not in hoary. |breezy, not in hoary. ------- Additional Comments From ben.collins at ubuntu.com 2005-09-08 14:58 UTC ------- Sure, add this in /boot/grub/menu.lst title Microsoft Windows root (hd0,0) savedefault makeactive chainloader +1 Change hd0,0 to whatever is your actual windows partition. From the looks of your partition table, it should be correct. You can probably just copy the entry in /boot/grub/menu.lst~ if it's still there. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 14:04:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 15:04:31 +0100 (BST) Subject: [Bug 1927] System hangs on network activity (realtek 8139) In-Reply-To: Message-ID: <20050908140431.3C8D8303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1927 Ubuntu | linux ------- Additional Comments From john at technolalia.org 2005-09-08 15:04 UTC ------- Sorry, should have been clearer. Tried booting (Colony 4 live) with pci=routeirq; system stalled on pinging google (cursor vanishes, cursor and keyboard not responsive.) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 14:27:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 15:27:59 +0100 (BST) Subject: [Bug 14964] Logitech QuickCam 4000 Pro is not supported In-Reply-To: Message-ID: <20050908142759.D25DC303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14964 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-08 15:27 UTC ------- 10.0.8 of that driver patch will be in the next 2.6.12 upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 14:32:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 15:32:10 +0100 (BST) Subject: [Bug 14947] NTFS module broken on breezy, not in hoary. In-Reply-To: Message-ID: <20050908143210.73BC6303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-08 15:32 UTC ------- Can you try adding -o errors=recover with the mount command? If that works, then try unmounting and remount without that option. I'm wondering if your NTFS volume has errors, and it is just failing because the errors need to be recovered (probably booting to Windows one time will resolve this too). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 14:38:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 15:38:32 +0100 (BST) Subject: [Bug 14947] Grub removes Windows boot option when NTFS partition needs recovery In-Reply-To: Message-ID: <20050908143832.2A3B4303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |cjwatson at ubuntu.com Component|linux |grub Summary|NTFS module broken on |Grub removes Windows boot |breezy, not in hoary. |option when NTFS partition | |needs recovery ------- Additional Comments From ben.collins at ubuntu.com 2005-09-08 15:38 UTC ------- I think this bug is that the NTFS partition needs recovery. Which is not a bug in itself, however grub should probably handle this a bit better. It should not remove the boot option, which is probably the best way to handle the recovery. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 15:04:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 16:04:59 +0100 (BST) Subject: [Bug 14947] Grub removes Windows boot option when NTFS partition needs recovery In-Reply-To: Message-ID: <20050908150459.B76A8303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub ------- Additional Comments From matthew.east at breathe.com 2005-09-08 16:04 UTC ------- (In reply to comment #7) > Sure, add this in /boot/grub/menu.lst > > title Microsoft Windows > root (hd0,0) > savedefault > makeactive > chainloader +1 > > Change hd0,0 to whatever is your actual windows partition. From the looks of > your partition table, it should be correct. You can probably just copy the entry > in /boot/grub/menu.lst~ if it's still there. This doesn't work :( I get the error "File System Type Unknown" or something similar after the root line, and nothing happens. I can mount the drive as you suggest with the option errors=recover, but after I unmount it and try and mount it without that option, it fails again. Windows appears to be unbootable right now. I haven't worked in Windows since it was working and the only thing I've done on the computer is a dist-upgrade on my Breezy installation. Matt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 15:47:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 16:47:32 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908154732.B4EE9303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | udev ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-08 16:47 UTC ------- No love. Nothing happens. Nothing appears in syslog, and no output from the command. No js* device appears in /dev/ or /dev/input. If the kernel is recognizing the device as ben says, couldn't we just mknod the device file and see if it works? I tried that a while ago, to no avail. I'm not sure if there is more magic to udev than just creating the device files in /dev/. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 15:54:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 16:54:50 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908155450.BC169303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | udev ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-08 16:54 UTC ------- Plugged both joysticks in, created device files manually: /dev/input$ sudo mknod js0 c 13 0 /dev/input$ sudo mknod js1 c 13 1 /dev/input$ ls -al /dev/input/js* crw-r--r-- 1 root root 13, 0 2005-09-08 08:58 /dev/input/js0 crw-r--r-- 1 root root 13, 1 2005-09-08 08:58 /dev/input/js1 /dev/input$ sudo cat /dev/input/js0 cat: /dev/input/js0: No such device /dev/input$ sudo cat /dev/input/js1 cat: /dev/input/js1: No such device Am I being ignorant, or shouldn't this work? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 16:42:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 17:42:54 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908164254.6ADC3303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | udev ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-08 17:42 UTC ------- (In reply to comment #4) > Plugged both joysticks in, created device files manually: > /dev/input$ sudo cat /dev/input/js0 > cat: /dev/input/js0: No such device > /dev/input$ sudo cat /dev/input/js1 > cat: /dev/input/js1: No such device > > Am I being ignorant, or shouldn't this work? No, if the kernel does not know the device, randomly creating a node for it can't work. OTOH, if the kernel knew about the actual joystick device, it is very likely that udev had already created the device automatically. The most probable solution is that a module is missing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 16:46:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 17:46:17 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908164617.E25A1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux martin.pitt at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.pitt at ubuntu.com AssignedTo|martin.pitt at ubuntu.com |ben.collins at ubuntu.com Component|udev |linux ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-08 17:46 UTC ------- (In reply to comment #1) > Kernel is recognizing the device, so I suspect udev is just not loading things. Are you sure? The Hoary kernel does, but not the Breezy one. It recognizes an USB device, sure, but not the actual kind of it (like it did in Hoary: "frog kernel: input: USB HID v1.00 Joystick [LTS PSX/USB Pad] on usb-0000:00:1d.1-2). Elliotf, can you please do a "lsmod > mod-hoary.txt" under Hoary, and an "lsmod > mod-breezy.txt" when under Breezy? (Both times with attached joystick). Please attach the resulting two text files here. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 16:53:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 17:53:52 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908165352.888D5303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-08 17:53 UTC ------- (In reply to comment #5) > (In reply to comment #4) > > Plugged both joysticks in, created device files manually: > > /dev/input$ sudo cat /dev/input/js0 > > cat: /dev/input/js0: No such device > > /dev/input$ sudo cat /dev/input/js1 > > cat: /dev/input/js1: No such device > > > > Am I being ignorant, or shouldn't this work? > > No, if the kernel does not know the device, randomly creating a node for it > can't work. OTOH, if the kernel knew about the actual joystick device, it is > very likely that udev had already created the device automatically. I agree. I was testing to see if the kernel recognized it. Ben Collins seemed to think that the kernel was recognizing it fine, and that it was udev not doing something. I was testing that theory. > The most probable solution is that a module is missing. > I will attach the two lsmod outputs. Again, these are two different machines running different hardware (Hoary = IBM T40, Breezy = A7N-8X nvidia/athlon) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 16:55:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 17:55:18 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908165518.E6EDB303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-08 17:55 UTC ------- Created an attachment (id=3629) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3629&action=view) lsmod output on athlon/nforce mobo running breezy -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 16:56:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 17:56:01 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908165601.B5923303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-08 17:56 UTC ------- Created an attachment (id=3630) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3630&action=view) lsmod output on IBM T40 running hoary -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 16:59:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 17:59:36 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050908165936.45FF7303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-08 17:59 UTC ------- (In reply to comment #6) > (In reply to comment #1) > > Kernel is recognizing the device, so I suspect udev is just not loading things. > > Are you sure? The Hoary kernel does, but not the Breezy one. It recognizes an > USB device, sure, but not the actual kind of it (like it did in Hoary: "frog > kernel: input: USB HID v1.00 Joystick [LTS PSX/USB Pad] on usb-0000:00:1d.1-2). > > Elliotf, can you please do a "lsmod > mod-hoary.txt" under Hoary, and an "lsmod > > mod-breezy.txt" when under Breezy? (Both times with attached joystick). Please > attach the resulting two text files here. Martin, I attached the files to the bug. Also, if you look, the breezy kernel does have the line that you're talking about. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 17:43:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 18:43:24 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050908174324.3C96E303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux ------- Additional Comments From tobivollebregt at gmail.com 2005-09-08 18:43 UTC ------- Created an attachment (id=3631) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3631&action=view) /var/log/dmesg /proc/acpi/dsdt does not exist. In fact, /proc/acpi does not exist. /var/log/dmesg attached. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 18:09:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 19:09:19 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050908180919.8A6B5303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-08 19:09 UTC ------- Ok. Could you download http://www.kernel.org/pub/linux/kernel/people/lenb/acpi/utils/pmtools-20050823.tar.gz and build the acpidump utility, then run (it'll need sudo) and attach the output? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 18:22:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 19:22:36 +0100 (BST) Subject: [Bug 12940] Nova-T (connexant chipset) will not work with normal kernel In-Reply-To: Message-ID: <20050908182236.46770303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12940 Ubuntu | linux markboydell at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |markboydell at gmail.com Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From markboydell at gmail.com 2005-09-08 19:22 UTC ------- Latest Breezy release has integrated the changes - bug is no more. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 18:24:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 19:24:32 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050908182432.22BAF303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From jm-ubuntu at jmason.org 2005-09-08 19:24 UTC ------- I'm afraid I've done something in the intervening months that is interfering with the reproducability of my crashes now! ;) So here's the situation. I've reinstalled laptop-mode and laptop-mode-tools; run "sudo /etc/init.d/laptop-mode start"; verified that "cat /proc/sys/vm/laptop_mode" is giving me "2", when on battery, indicating that it's active; but I now get no crashes. However, if I *manually* run "hdparm -B 1 /dev/hda", on ac or battery, it hangs shortly afterwards, as before. So I can confirm that "hdparm -B 1" does indeed cause crashes, but I'm having trouble getting laptop-mode itself to be linked to that in my setup. Perhaps something about how I previously disabled laptop-mode is still causing parts of the scripts be disabled. FWIW, I'm using APM, not ACPI -- in my experience, and according to reports on the linux-thinkpad list, APM works better on this hardware once it's been set up, so I haven't switched yet. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 18:25:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 19:25:14 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050908182514.D36AD303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From jm-ubuntu at jmason.org 2005-09-08 19:25 UTC ------- oh -- is there a way to query the "hdparm -B" status of a device? afaics hdparm doesn't allow it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 18:54:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 19:54:10 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050908185410.4988F303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux bmaurer at novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bmaurer at novell.com ------- Additional Comments From bmaurer at novell.com 2005-09-08 19:54 UTC ------- Myself and two others have had this happen on dell 600m's with the latest breezy. It really sounds like this should be disabled by default unless it can be fixed... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 19:03:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 20:03:25 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050908190325.E6699303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux brandon at smarterits.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |brandon at smarterits.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 19:20:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 20:20:23 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050908192023.30CC6303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux gui_dos at libero.it changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gui_dos at libero.it ------- Additional Comments From gui_dos at libero.it 2005-09-08 20:20 UTC ------- *** Bug 13734 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 22:59:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 8 Sep 2005 23:59:33 +0100 (BST) Subject: [Bug 14995] New: Live CD HP dx5150 MT (Athlon64) does not boot with USB DVD drive attached Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14995 Ubuntu | linux Summary: Live CD HP dx5150 MT (Athlon64) does not boot with USB DVD drive attached Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: joe at k12s.phast.umass.edu QAContact: kernel-bugs at lists.ubuntu.com I have an HP DX5150 MT (Athlon64) machine on my desk at work, and am currently running hoary with a custom compiled kernel, and custom compiled x.org to get things *mostly* working. I'm hoping breezy will work out of the box. I'll be writing up many bugs w/ this machine (it has all REALLY new hardware new to 2.6.12). Trying to boot the Breezy AMD64 live-CD 9/6 build, if I have my USB DVD+-RW drive attached to the system, it freezes during bootup. (I am *NOT* booting from this drive, it just happens to be attached). Unfortunately it crashes early enough I don't get alot of useful debug. It crashes with this on the screen: ACPI: bus type ide registered atiixp: loaded successfully ohci_hcd 0000:00:13.0: Unlink after no-IRQ? Controller is probably using the wrong IRQ. PCI [success] Running /etc/hotplug/usb.rc On my current hoary system (with custom kernel+crazyness) the drive works, and the system boots. When I plug in the drive, my system puts this into the syslog: Sep 8 18:55:29 artemis kernel: [37413.497265] usb 3-2: new high speed USB device using ehci_hcd and address 3 Sep 8 18:55:29 artemis kernel: [37413.737387] Initializing USB Mass Storage driver... Sep 8 18:55:29 artemis kernel: [37413.745711] scsi2 : SCSI emulation for USB Mass Storage devices Sep 8 18:55:29 artemis kernel: [37413.746204] usb-storage: device found at 3 Sep 8 18:55:29 artemis kernel: [37413.746206] usb-storage: waiting for device to settle before scanning Sep 8 18:55:29 artemis kernel: [37413.746305] usbcore: registered new driver usb-storage Sep 8 18:55:29 artemis kernel: [37413.746307] USB Mass Storage support registered. Sep 8 18:55:29 artemis usb.agent[24335]: usb-storage: loaded successfully Sep 8 18:55:34 artemis kernel: [37416.016359] Vendor: HL-DT-ST Model: DVDRAM GSA-4081B Rev: A100 Sep 8 18:55:34 artemis kernel: [37416.016367] Type: CD-ROM ANSI SCSI revision: 00 Sep 8 18:55:34 artemis kernel: [37416.019756] usb-storage: device scan complete Sep 8 18:55:34 artemis kernel: [37416.100054] sr0: scsi3-mmc drive: 62x/62x writer dvd-ram cd/rw xa/form2 cdda tray Sep 8 18:55:34 artemis kernel: [37416.100538] Attached scsi CD-ROM sr0 at scsi2, channel 0, id 0, lun 0 Sep 8 18:55:34 artemis scsi.agent[24412]: sr_mod: loaded sucessfully Sep 8 18:55:34 artemis udev[24449]: creating device node '/dev/sg0' Sep 8 18:55:34 artemis kernel: [37416.115385] Attached scsi generic sg0 at scsi1, channel 0, id 0, lun 0, type 0 Sep 8 18:55:34 artemis kernel: [37416.115831] Attached scsi generic sg1 at scsi2, channel 0, id 0, lun 0, type 5 Sep 8 18:55:34 artemis scsi.agent[24412]: sg: loaded sucessfully Sep 8 18:55:34 artemis udev[24464]: configured rule in '/etc/udev/rules.d/udev.rules' at line 24 applied, 'sg1' becomes '%k' Sep 8 18:55:34 artemis udev[24464]: creating device node '/dev/sg1' Sep 8 18:55:35 artemis udev[24462]: configured rule in '/etc/udev/rules.d/cd-aliases.rules' at line 8 applied, added symlink '%c{1} %c{2} %c{3} %c{4} %c{5} %c{6}' Sep 8 18:55:35 artemis udev[24462]: configured rule in '/etc/udev/rules.d/udev.rules' at line 23 applied, added symlink 'sr%n' Sep 8 18:55:35 artemis udev[24462]: configured rule in '/etc/udev/rules.d/udev.rules' at line 23 applied, 'sr0' becomes 'scd%n' Sep 8 18:55:35 artemis udev[24462]: creating device node '/dev/scd0' Sep 8 18:55:35 artemis kernel: [37416.307786] cdrom: This disc doesn't have any tracks I recognize! I will attach my /proc/bus/usb/devices file from my hoary setup to this bug. If I remove the drive, the system will boot past this point (but still doesn't boot because of other issues described in other bugs) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 23:00:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 00:00:27 +0100 (BST) Subject: [Bug 14995] Live CD HP dx5150 MT (Athlon64) does not boot with USB DVD drive attached In-Reply-To: Message-ID: <20050908230027.BD1B2303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14995 Ubuntu | linux ------- Additional Comments From joe at k12s.phast.umass.edu 2005-09-09 00:00 UTC ------- Created an attachment (id=3643) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3643&action=view) /proc/bus/usb/devices -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 23:13:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 00:13:14 +0100 (BST) Subject: [Bug 14996] New: Live CD HP dx5150 MT (Athlon64) cannot mount installation CD during boot Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14996 Ubuntu | linux Summary: Live CD HP dx5150 MT (Athlon64) cannot mount installation CD during boot Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: joe at k12s.phast.umass.edu QAContact: kernel-bugs at lists.ubuntu.com I have an HP DX5150 MT (Athlon64) machine on my desk at work, and am currently running hoary with a custom compiled kernel, and custom compiled x.org to get things *mostly* working. I'm hoping breezy will work out of the box. I'll be writing up many bugs w/ this machine (it has all REALLY new hardware new to 2.6.12). It's a stock config from HP, but basically EVERYTHING is on a single chip on the motherboard (sound, video, sata, ata, usb) When I try to boot the LiveCD 9/6 build, AMD64, the machine fails when it tries to mount the "installation CD". The system can obviously read the CD (since it booted off of it) When I open a shell, and try to mount the drive, I get an invalid argument error: mount -t iso9660 /dev/cdroms/cdrom0 /z mount: /dev/cdroms/cdrom0 is write proetected, mounting read-only mount: Mounting /dev/cdroms/cdrom0 on /z failed: Invalid argument dmesg shows: Unable to identify CD-ROM format. I have tried this on two identical HP machines, with the same results. Earlier in syslog I see these errors (I don't think they're related) Missing modules 'ide-mod (Lnux IDE driver), ide-probe-mod (linux ide probe driver), ide-detect (linux ide detection) then it starts searching for ubuntu installation media and cdrom-detect gets mad While the system is in this state, I can eject the cdrom. I tried putting a known good CD in the drive. It cannot mount that. I tried putting a known good PRESSED cd in the drive, it did not mount either. The machine itself normally runs a hoary system with a custom 2.6.12 kernel. That cannot mount cdroms either. If I cat /dev/cdroms/cdrom0, it DOES produce data. hdparm reports DMA is not on: /dev/hda: IO_support = 0 (default 16-bit) unmaskirq = 0 (off) using_dma = 0 (off) keepsettings = 0 (off) readonly = 0 (off) readahead = 256 (on) HDIO_GETGEO failed: Invalid argument Since it properly detects the drive, can read data from it, the drive works.. I tried to figure out why it can't mount things on it. I did a dd if=/dev/cdrom/cdrom0 of=/tmp/cdrom-1meg-hp bs=1M count=1 on the HP machine, and did the same thing on my old dell machine. I used a pressed hoary live CD for this. I have attached the two files. If you do a hex diff between the two files, you will discover my HP machine every 60 (sometimes less) bytes adds 2 (hex) to a single byte. Soundly corrupting what it's reading :) I am assuming this drive works because: a) This happens on another HP dx5150 b) The thing can friggin' boot the live cd, just not "mount" the partition c) I did a hoary install partially from cd on this thing a few months ago when we got the machine I assume this is some nasty kernel issue. Here is my /proc/pci PCI devices found: Bus 0, device 0, function 0: Host bridge: PCI device 1002:5950 (ATI Technologies Inc) (rev 1). Master Capable. Latency=64. Non-prefetchable 64 bit memory at 0x0 [0x1fffffff]. Bus 0, device 1, function 0: PCI bridge: PCI device 1002:5a3f (ATI Technologies Inc) (rev 0). Master Capable. Latency=99. Min Gnt=10. Bus 0, device 5, function 0: PCI bridge: PCI device 1002:5a37 (ATI Technologies Inc) (rev 0). Master Capable. No bursts. Min Gnt=2. Bus 0, device 18, function 0: IDE interface: ATI Technologies Inc ATI 4379 Serial ATA Controller (rev 0). IRQ 5. Master Capable. Latency=64. I/O at 0xfc00 [0xfc07]. I/O at 0xf800 [0xf803]. I/O at 0xf400 [0xf407]. I/O at 0xf000 [0xf003]. I/O at 0xec00 [0xec0f]. Non-prefetchable 32 bit memory at 0xfe02f000 [0xfe02f1ff]. Bus 0, device 19, function 0: USB Controller: PCI device 1002:4374 (ATI Technologies Inc) (rev 0). IRQ 10. Master Capable. Latency=64. Non-prefetchable 32 bit memory at 0xfe02e000 [0xfe02efff]. Bus 0, device 19, function 1: USB Controller: PCI device 1002:4375 (ATI Technologies Inc) (rev 0). IRQ 10. Master Capable. Latency=64. Non-prefetchable 32 bit memory at 0xfe02d000 [0xfe02dfff]. Bus 0, device 19, function 2: USB Controller: PCI device 1002:4373 (ATI Technologies Inc) (rev 0). IRQ 10. Master Capable. Latency=64. Non-prefetchable 32 bit memory at 0xfe02c000 [0xfe02cfff]. Bus 0, device 20, function 0: SMBus: ATI Technologies Inc ATI SMBus (rev 16). I/O at 0x500 [0x50f]. Non-prefetchable 32 bit memory at 0xfe02b000 [0xfe02b3ff]. Bus 0, device 20, function 1: IDE interface: ATI Technologies Inc Standard Dual Channel PCI IDE Controller ATI (rev 0). Master Capable. Latency=64. I/O at 0xe400 [0xe40f]. Bus 0, device 20, function 3: ISA bridge: PCI device 1002:4377 (ATI Technologies Inc) (rev 0). Bus 0, device 20, function 4: PCI bridge: PCI device 1002:4371 (ATI Technologies Inc) (rev 0). Master Capable. Latency=64. Min Gnt=2. Bus 0, device 20, function 5: Multimedia audio controller: PCI device 1002:4370 (ATI Technologies Inc) (rev 1). IRQ 11. Master Capable. Latency=64. Min Gnt=2. Non-prefetchable 32 bit memory at 0xfe02a000 [0xfe02a0ff]. Bus 0, device 24, function 0: Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration (rev 0). Bus 0, device 24, function 1: Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map (rev 0). Bus 0, device 24, function 2: Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller (rev 0). Bus 0, device 24, function 3: Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control (rev 0). Bus 1, device 5, function 0: VGA compatible controller: PCI device 1002:5954 (ATI Technologies Inc) (rev 0). IRQ 11. Master Capable. Latency=64. Min Gnt=8. Prefetchable 32 bit memory at 0xd0000000 [0xd7ffffff]. I/O at 0xcc00 [0xccff]. Non-prefetchable 32 bit memory at 0xfdaf0000 [0xfdafffff]. Bus 1, device 5, function 1: Display controller: PCI device 1002:5854 (ATI Technologies Inc) (rev 0). Master Capable. Latency=64. Min Gnt=8. Prefetchable 32 bit memory at 0xc8000000 [0xcfffffff]. Non-prefetchable 32 bit memory at 0xfdae0000 [0xfdaeffff]. Bus 2, device 0, function 0: Ethernet controller: Broadcom Corporation NetXtreme BCM5751 Gigabit Ethernet PCI Express (rev 32). IRQ 11. Non-prefetchable 64 bit memory at 0xfde00000 [0xfde0ffff]. Let me know what else you might want. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 23:16:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 00:16:46 +0100 (BST) Subject: [Bug 14996] Live CD HP dx5150 MT (Athlon64) cannot mount installation CD during boot In-Reply-To: Message-ID: <20050908231646.E12E1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14996 Ubuntu | linux ------- Additional Comments From joe at k12s.phast.umass.edu 2005-09-09 00:16 UTC ------- Created an attachment (id=3644) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3644&action=view) First 512k of the hoary pressed live CD. BAD. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 23:17:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 00:17:23 +0100 (BST) Subject: [Bug 14996] Live CD HP dx5150 MT (Athlon64) cannot mount installation CD during boot In-Reply-To: Message-ID: <20050908231723.9A4AF303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14996 Ubuntu | linux ------- Additional Comments From joe at k12s.phast.umass.edu 2005-09-09 00:17 UTC ------- Created an attachment (id=3645) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3645&action=view) First 512k of the hoary pressed live CD. GOOD. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 8 23:18:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 00:18:03 +0100 (BST) Subject: [Bug 14996] Live CD HP dx5150 MT (Athlon64) cannot mount installation CD during boot In-Reply-To: Message-ID: <20050908231803.6F2B6303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14996 Ubuntu | linux ------- Additional Comments From joe at k12s.phast.umass.edu 2005-09-09 00:18 UTC ------- I did the first 512k because the max attachment is 1mb -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 00:58:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 01:58:38 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050909005838.E45F5303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules ------- Additional Comments From mdz at ubuntu.com 2005-09-09 01:58 UTC ------- The nvidia module, like other video drivers, is never loaded automatically by hotplug If it's being loaded here, it's probably because it's in /etc/modules. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 01:12:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 02:12:26 +0100 (BST) Subject: [Bug 14748] Orinoco Classic gold cards stopped working In-Reply-To: Message-ID: <20050909011226.C9199303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14748 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|pcmcia-cs |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 01:14:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 02:14:04 +0100 (BST) Subject: [Bug 14757] Data Corruption on AMD64 SATA System with Breezy Badger In-Reply-To: Message-ID: <20050909011404.383B1303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14757 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 02:12:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 03:12:11 +0100 (BST) Subject: [Bug 14757] Data Corruption on AMD64 SATA System with Breezy Badger In-Reply-To: Message-ID: <20050909021211.09B07303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14757 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-09 03:12 UTC ------- I'd really be interested if a stock compile of 2.6.12 shows the problem or not. I've been noticing a lot of issues lately with amd64's DMA (not just in SATA), so my first guess is that, but I can't be sure. We also have a lot of libata patches in current breezy kernels, which may also be the cause. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:04:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:04:30 +0100 (BST) Subject: [Bug 14786] Hoary SMP Kernel on Dell Poweredge 6450 crashes on reboot In-Reply-To: Message-ID: <20050909030430.CEDAF303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14786 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:06:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:06:19 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050909030619.A920A303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:07:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:07:45 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050909030745.4BE94303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |aleitner at raboof.at ------- Additional Comments From mdz at ubuntu.com 2005-09-09 04:07 UTC ------- *** Bug 14792 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:09:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:09:25 +0100 (BST) Subject: [Bug 14245] snd_bt87x module doesn't declare support for sub-device 11bd:0012 In-Reply-To: Message-ID: <20050909030925.42B81303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14245 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC|jdthood at yahoo.co.uk, | |crimsun at fungus.sh.nu | AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|linux-meta |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:11:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:11:36 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8319too) In-Reply-To: Message-ID: <20050909031136.7D65D303C03F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|martin.pitt at ubuntu.com |ben.collins at ubuntu.com Component|hal |linux QAContact|desktop- |kernel-bugs at lists.ubuntu.com |bugs at lists.ubuntu.com | Summary|No ethernet colony 4 |No ethernet colony 4 (8139cp | |vs. 8319too) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:14:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:14:27 +0100 (BST) Subject: [Bug 14806] Unplugging AC power makes laptop freeze In-Reply-To: Message-ID: <20050909031427.EAB66303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14806 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux Keywords| |laptop QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:15:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:15:14 +0100 (BST) Subject: [Bug 14806] Unplugging AC power makes laptop freeze In-Reply-To: Message-ID: <20050909031514.15F9B303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14806 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-09 04:15 UTC ------- Sounds like possibly another duplicate of bug #6108 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:16:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:16:11 +0100 (BST) Subject: [Bug 14808] HP DV4121AP CD/DVDRW Troubles In-Reply-To: Message-ID: <20050909031611.42EDC303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14808 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-09 04:16 UTC ------- What kind of disc do you have in the drive when you see these errors? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:21:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:21:17 +0100 (BST) Subject: [Bug 14827] Garbled sound In-Reply-To: Message-ID: <20050909032117.0B450303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|colony 4 sounds bad w/ |Garbled sound |gstreamer apps | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:26:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:26:20 +0100 (BST) Subject: [Bug 14808] HP DV4121AP CD/DVDRW Troubles In-Reply-To: Message-ID: <20050909032620.51269303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14808 Ubuntu | linux ------- Additional Comments From pat at welldone.com.au 2005-09-09 04:26 UTC ------- (In reply to comment #2) > What kind of disc do you have in the drive when you see these errors? There is no disc in the drive at all when this occurs. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:26:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:26:50 +0100 (BST) Subject: [Bug 14832] Include zd1211 wlan driver In-Reply-To: Message-ID: <20050909032650.9AE67303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14832 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:31:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:31:08 +0100 (BST) Subject: [Bug 14840] No battery status on a certain acer laptop? In-Reply-To: Message-ID: <20050909033108.9D3AF303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14840 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk Keywords| |laptop Summary|dpkg-reconfigure Not |No battery status on a |touching initrd |certain acer laptop? ------- Additional Comments From mdz at ubuntu.com 2005-09-09 04:31 UTC ------- (In reply to comment #0) > Hello, when I install DSDT module without compile kernel, and execute > > # dpkg-reconfigure linux-image-2.6.12-8-386 > > Not touching initrd symlinks since we are being reinstalled (2.6.12-8.12) > Not updating image symbolic links since we are being updated (2.6.12-8.12) These messages are normal. > I can't see battery level in my acer labtop > Thanks for your great work. Is this a problem that you expected to be fixed by a replacement DSDT? Where did you get it, and where did you put it? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:34:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:34:06 +0100 (BST) Subject: [Bug 14853] 2.6.13 kernel? In-Reply-To: Message-ID: <20050909033406.0D72C303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14853 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |LATER ------- Additional Comments From mdz at ubuntu.com 2005-09-09 04:34 UTC ------- 2.6.13 will be brought in after the 5.10 release -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:37:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:37:49 +0100 (BST) Subject: [Bug 14863] (USB?) Keyboard unresponsive In-Reply-To: Message-ID: <20050909033749.A3515303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14863 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Status|NEEDINFO |UNCONFIRMED Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|installation failure |(USB?) Keyboard unresponsive ------- Additional Comments From mdz at ubuntu.com 2005-09-09 04:37 UTC ------- Try booting the installer with the "noapic" option, or some of the others in https://wiki.ubuntu.com/DebuggingIRQProblems Also please try booting the new preview CD and see if that works better for you: http://lists.ubuntu.com/archives/ubuntu-announce/2005-September/000031.html -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:38:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:38:59 +0100 (BST) Subject: [Bug 14840] No battery status on a certain acer laptop? In-Reply-To: Message-ID: <20050909033859.CEF6B303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14840 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-09 04:38 UTC ------- If it's an Acer with a smart battery, then there's nothing we can do. What model of Acer is this? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:47:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:47:31 +0100 (BST) Subject: [Bug 14898] colony 4 live ppc64 crashes starting gnome desktop on imac g5 In-Reply-To: Message-ID: <20050909034731.76155303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14898 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 03:52:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 04:52:42 +0100 (BST) Subject: [Bug 14906] Hang when loading some module In-Reply-To: Message-ID: <20050909035242.2DECC303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14906 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Ubuntu Installation problems|Hang when loading some | |module ------- Additional Comments From mdz at ubuntu.com 2005-09-09 04:52 UTC ------- Rest assured that the CDs are working for most users; most likely this is a problem which is specific to your computer. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 04:01:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 05:01:29 +0100 (BST) Subject: [Bug 14898] colony 4 live ppc64 crashes starting gnome desktop on imac g5 In-Reply-To: Message-ID: <20050909040129.5C571303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14898 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-09 05:01 UTC ------- *** Bug 14927 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 04:02:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 05:02:34 +0100 (BST) Subject: [Bug 14931] Missing libata "passthrough" functionality In-Reply-To: Message-ID: <20050909040234.3F0F2303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14931 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 04:05:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 05:05:43 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050909040543.D9C1E303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC|scott-bugs at ubuntu.com | AssignedTo|ben.collins at ubuntu.com |scott-bugs at ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-09 05:05 UTC ------- duplicate of bug #14894? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 05:06:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 06:06:22 +0100 (BST) Subject: [Bug 14757] Data Corruption on AMD64 SATA System with Breezy Badger In-Reply-To: Message-ID: <20050909050622.2AB26303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14757 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |joe at k12s.phast.umass.edu -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 05:45:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 06:45:44 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050909054544.CB20F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-09 06:45 UTC ------- I can confirm that they are recognized if plugged in before the system is started. I restarted the system while plugged in, and they show: $ uptime 22:44:58 up 2 min, 1 user, load average: 0.35, 0.28, 0.11 $ ls -al /dev/js* lrwxrwxrwx 1 root root 9 2005-09-08 22:48 /dev/js0 -> input/js0 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 07:35:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 08:35:58 +0100 (BST) Subject: [Bug 2711] acpi does not give correct battery status In-Reply-To: Message-ID: <20050909073558.72274303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2711 Ubuntu | linux ------- Additional Comments From matthew.east at breathe.com 2005-09-09 08:35 UTC ------- OK, with the latest kernel (-8) this is working if I boot with the option ec_burst=1. I won't close the bug because it isn't working out of the box yet, but I'm pretty happy because it's the first time I've had battery status in about a year... :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 07:45:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 08:45:00 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050909074500.25E76303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | linux martin.pitt at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |borgi2008 at yahoo.de ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-09 08:45 UTC ------- *** Bug 14894 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 07:47:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 08:47:41 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050909074741.BC674303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug martin.pitt at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Component|linux |hotplug Ever Confirmed|0 |1 ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-09 08:47 UTC ------- (In reply to comment #12) > I can confirm that they are recognized if plugged in before the system is > started. Ah, thanks. So can you please do the module comparison this way instead: * Boot your system without the joystick attached, attach it afterwards, do "lsmod > modules-hotplug.txt" * Boot your system with joystick attached, do "lsmod > modules-coldplug.txt" and attach both files? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 09:09:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 10:09:46 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050909090946.8B719303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux ------- Additional Comments From tobivollebregt at gmail.com 2005-09-09 10:09 UTC ------- Created an attachment (id=3649) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3649&action=view) acpidump output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 10:00:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 11:00:45 +0100 (BST) Subject: [Bug 12718] Memory leak in 2.6.10++ with software raid md, affects Ubuntu kernel In-Reply-To: Message-ID: <20050909100045.65924303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12718 Ubuntu | linux ------- Additional Comments From valentyn+ubuntu at blub.net 2005-09-09 11:00 UTC ------- Hi Fabio, Thanks for your comments, and my apologies for being a bit too fast in pointing fingers. However, I'd like to point something out about our experiences - please read and please don't feel offended, as that's not what I'm trying to tell. (In reply to comment #9) > > We have fixed it for the current version of Ubuntu, see > Why publishing extra kernels when the fix made hoary too? Yes we do care of > degradations > and so on, but when releasing for stable, we need to be even more care not to > introduce regressions Please see it from a user standpoint: there's a grave bug in the kernel that eats all your memory, we file a bug *and* file the fix for it (the latter is crucial, it means that OSS is working after all, i.e. we don't try to rely on free support but actually help fixing stuff here!). Essentially, I filed the bug to tell Ubuntu about the problem - so it could get fixed in Ubuntu instead of only being fixed in the server-computer-somewhere-deep-down-at-our-customer. However, after filing the bug and the fix, we didn't hear a thing, until the next necessary server reboot for us, when we hear Ubuntu say "yeah, it's fixed in the next version". This made me think "wow, they didn't even look at the fix and it won't get fixed for Hoary". Well, luckily it did, but we had to find out by seeing the list of updates, instead of seeing the bug report updated. A better way of handling could have been "we've seen your bug report, thanks for finding the fix" and "we're currently testing it / pondering it / looking at it" and/or "we'll put it in the next Hoary kernel update" or something. Again, please don't feel offended, as that's totally not what I'm trying to do, I'm only trying to explain that bug handling is sometimes communicating to the community. We've seen this go wrong a couple of times now with the Ubuntu bug database - and we would like to help fix it. (As a side note, my company just got into a real support contract with Canonical - so we really do appreciate the work of the Ubuntu developers). Valentijn -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 11:27:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 12:27:52 +0100 (BST) Subject: [Bug 14806] Unplugging AC power makes laptop freeze In-Reply-To: Message-ID: <20050909112752.E4699303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14806 Ubuntu (laptop) | linux ------- Additional Comments From c.elkjaer at gmail.com 2005-09-09 12:27 UTC ------- Looking at bug #6108 this bug could very likely be a duplicate, yes. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 11:44:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 12:44:26 +0100 (BST) Subject: [Bug 15025] New: vga16fb off by a few lines Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15025 Ubuntu | linux Summary: vga16fb off by a few lines Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: ruben at Lambda1.be QAContact: kernel-bugs at lists.ubuntu.com On my Dell Inspiron 8600, the vga16fb is shifted down by 1.5 lines, making it impossible to read the bottom lines (--> the command you are typing). GFX: 0000:01:00.0 VGA compatible controller: nVidia Corporation NV34M [GeForce FX Go 5200] (rev a1) Dell A12 BIOS -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 11:44:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 12:44:26 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050909114426.1C69E303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From c.elkjaer at gmail.com 2005-09-09 12:44 UTC ------- (In reply to comment #50) > oh -- is there a way to query the "hdparm -B" status of a device? afaics hdparm > doesn't allow it. try "hdparm -I /dev/hda" You will see a lot of nice info on the configuration of the harddisk. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 12:20:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 13:20:35 +0100 (BST) Subject: [Bug 15025] vga16fb off by a few lines In-Reply-To: Message-ID: <20050909122035.76CAC303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15025 Ubuntu | linux ------- Additional Comments From debian at oursours.net 2005-09-09 13:20 UTC ------- Is there a BIOS update on the Dell website? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 12:25:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 13:25:50 +0100 (BST) Subject: [Bug 15025] vga16fb off by a few lines In-Reply-To: Message-ID: <20050909122550.836C5303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15025 Ubuntu | linux ------- Additional Comments From ruben at Lambda1.be 2005-09-09 13:25 UTC ------- There are 2 BIOS updates, however, none are related to this (adding device support, battery fixes). If I find a way to upgrade my BIOS without having to install Windows, I'll give it a go though. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 12:46:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 13:46:56 +0100 (BST) Subject: [Bug 15031] New: ALC880 + Intel 915GM - ICH6 results in Kernel panic Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | kernel-package Summary: ALC880 + Intel 915GM - ICH6 results in Kernel panic Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: mp3cube at hotmail.com QAContact: kernel-bugs at lists.ubuntu.com I'm using the latest preview release of Ubuntu breezy with kernel 2.6.12-8-386 (default kernel) Installation was succesfull, but during the first boot, got the following problem : Stacktrace : PCI: Setting latency timer of device 0000:00:1b.0 to 64 hda_codec: Unknown model for ALC880, trying auto-probe from BIOS... Unable to handle kernel NULL pointer dereference at virtual address 00000000 printing eip: f8f421d4 *pde = 00000000 Oops: 0002 [#1] PREEMPT last sysfs file: Modules linked in: snd_hda_intel snd_hda_codec snd_pcm snd_timer snd soundcore snd_page_alloc CPU: 0 EIP: 0060:[] Not tainted VLI EFLAGS: 00010293 (2.6.12-8-386) eax: fffffffe ebx: f7bf6748 ecx: 00000000 edx: 00000000 esi: f7bf6600 edi: 00000000 ebp: 00000006 esp: f718fde4 ds: 007b es: 007b ss: 0068 Process modprobe (pid: 6993, threadinfo=f718e000 task=f74d7a90) Stack: 00000000 00000000 00000000 00000000 f7bf6600 f7bf6748 f7689000 f8f42713 f7bf6600 f7689000 f8f4298d f8f460d8 f8f45556 00000001 f8f3e77e 00000f00 00000005 00000000 f7689000 f753b240 00000000 f8f3e984 00000f00 00000002 Call Trace: [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] [] Code: 31 c0 53 83 ec 10 89 d3 89 e7 f3 ab 8b 12 31 ff 83 fa 00 7e 45 89 f6 0f b7 44 7b 04 8d 48 ec 66 83 f9 03 77 13 8b 56 3c 83 e8 16 <66> 89 04 7a 8b 13 c7 04 8c 01 00 00 00 47 39 fa 7f da 31 ff 83 Usefull link on same problem : http://www.thisishull.net/showthread.php? s=499dbf5ed874743ab2736780b9fd5732&t=110980&page=3&pp=10 Feel free to ask any further questions. Many thanks in advance -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 12:51:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 13:51:51 +0100 (BST) Subject: [Bug 15025] vga16fb off by a few lines In-Reply-To: Message-ID: <20050909125151.85FA5303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15025 Ubuntu | linux ------- Additional Comments From ruben at Lambda1.be 2005-09-09 13:51 UTC ------- Problem persists, even with the newest A14 BIOS supplied by Dell. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 13:14:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 14:14:55 +0100 (BST) Subject: [Bug 14898] colony 4 live ppc64 crashes starting gnome desktop on imac g5 In-Reply-To: Message-ID: <20050909131455.5E478303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14898 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-09 14:14 UTC ------- The Colony 4 live CD worked on my G5 tower, so this was unexpected. Has any previous version of ubuntu live-cd worked on this machine? If so, can you boot to it and get me an lspci and a complete dmesg. Since the period where you are experiencing this problem is well after the CD has been used a lot, then I can't say it is an IDE driver error. Sounds to me like the CD drive is having a hard time reading a certain part of the CD (since it always occurs at the same time). Could be hw, but let's do some testing to be sure one way or the other. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 16:17:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 17:17:00 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050909161700.7EF08303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-09 17:17 UTC ------- Sure enough, on a hotplug the joydev kernel module is not loading: $ diff modules.* 2d1 < udf 92356 1 27d25 < joydev 10048 0 30c28 < snd_ice1724 67236 1 --- > snd_ice1724 67236 0 43c41 < snd 55172 13 snd_ice1724,snd_ac97_codec,snd_ak4114,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_ak4xxx_adda,snd_mpu401_uart,snd_rawmidi,snd_seq_device --- > snd 55172 11 snd_ice1724,snd_ac97_codec,snd_ak4114,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_ak4xxx_adda,snd_mpu401_uart,snd_rawmidi,snd_seq_device 61c59 < unix 27248 797 --- > unix 27248 250 70c68 < ide_cd 41732 1 --- > ide_cd 41732 0 I modprobe the joydev module, and boom, my joysticks appear. Don't I feel a bit dumb about this. I will attach the two module lists anyway for full documentation, and the syslog excerpt where I plugged the joysticks in at 09:11:08, then modprobe'd joydev at 09:14:23. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 16:18:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 17:18:05 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050909161805.6DF04303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-09 17:18 UTC ------- Created an attachment (id=3665) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3665&action=view) lsmod of breezy with joysticks attached before boot -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 16:18:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 17:18:35 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050909161835.6BCB0303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-09 17:18 UTC ------- Created an attachment (id=3666) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3666&action=view) lsmod of breezy with joysticks attached after boot -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 16:21:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 17:21:30 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050909162130.31FB2303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From elliotf-ubuntu-wiki at gratuitous.net 2005-09-09 17:21 UTC ------- Created an attachment (id=3667) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3667&action=view) syslog excerpt of hotplugging joysticks, then modprobing joydev a few minutes later -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 12:57:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 13:57:01 +0100 (BST) Subject: [Bug 15033] New: 3c59x fails on linux-image-2.6.12-8-386 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15033 Ubuntu | linux Summary: 3c59x fails on linux-image-2.6.12-8-386 Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: yann.aubert at free.fr QAContact: kernel-bugs at lists.ubuntu.com The NIC can send packets over the network but doesn't receive any response. (I've made a sniff with tethereal on the dhcp server) Network is fine with 2.6.12-6 lspci 0000:00:00.0 Host bridge: VIA Technologies, Inc. VT8363/8365 [KT133/KM133] (rev 03) 0000:00:01.0 PCI bridge: VIA Technologies, Inc. VT8363/8365 [KT133/KM133 AGP] 0000:00:07.0 ISA bridge: VIA Technologies, Inc. VT82C686 [Apollo Super South] (rev 40) 0000:00:07.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06) 0000:00:07.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 1a) 0000:00:07.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 1a) 0000:00:07.4 Host bridge: VIA Technologies, Inc. VT82C686 [Apollo Super ACPI] (rev 40) 0000:00:07.5 Multimedia audio controller: VIA Technologies, Inc. VT82C686 AC97 Audio Controller (rev 50) 0000:00:09.0 Ethernet controller: 3Com Corporation 3c905C-TX/TX-M [Tornado] (rev 78) 0000:00:0c.0 SCSI storage controller: Adaptec AIC-7892A U160/m (rev 02) 0000:01:00.0 VGA compatible controller: nVidia Corporation NV5M64 [RIVA TNT2 Model 64/Model 64 Pro] (rev 15) lspci -n 0000:00:00.0 0600: 1106:0305 (rev 03) 0000:00:01.0 0604: 1106:8305 0000:00:07.0 0601: 1106:0686 (rev 40) 0000:00:07.1 0101: 1106:0571 (rev 06) 0000:00:07.2 0c03: 1106:3038 (rev 1a) 0000:00:07.3 0c03: 1106:3038 (rev 1a) 0000:00:07.4 0600: 1106:3057 (rev 40) 0000:00:07.5 0401: 1106:3058 (rev 50) 0000:00:09.0 0200: 10b7:9200 (rev 78) 0000:00:0c.0 0100: 9005:0080 (rev 02) 0000:01:00.0 0300: 10de:002d (rev 15) Boot messages with 2.6.12-8-386 and 2.6.12-6-386 Sep 9 12:16:16 localhost kernel: Inspecting /boot/System.map-2.6.12-8-386 Sep 9 12:16:17 localhost kernel: Loaded 28999 symbols from /boot/System.map-2.6.12-8-386. Sep 9 12:16:17 localhost kernel: Symbols match kernel version 2.6.12. Sep 9 12:16:17 localhost kernel: No module symbols loaded - kernel modules not enabled. Sep 9 12:16:17 localhost kernel: 96000] BIOS-e820: 000000001bff3000 - 000000001c000000 (ACPI data) Sep 9 12:16:17 localhost kernel: [4294667.296000] BIOS-e820: 00000000ffff0000 - 0000000100000000 (reserved) Sep 9 12:16:17 localhost kernel: [4294667.296000] 0MB HIGHMEM available. Sep 9 12:16:17 localhost kernel: [4294667.296000] 447MB LOWMEM available. Sep 9 12:16:17 localhost kernel: [4294667.296000] found SMP MP-table at 000f5eb0 Sep 9 12:16:17 localhost kernel: [4294667.296000] DMI 2.2 present. Sep 9 12:16:17 localhost kernel: [4294667.296000] ACPI: PM-Timer IO Port: 0x4008 Sep 9 12:16:17 localhost kernel: [4294667.296000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) Sep 9 12:16:17 localhost kernel: [4294667.296000] Processor #0 6:4 APIC version 16 Sep 9 12:16:17 localhost kernel: [4294667.296000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) Sep 9 12:16:17 localhost kernel: [4294667.296000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 Sep 9 12:16:17 localhost kernel: [4294667.296000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) Sep 9 12:16:17 localhost kernel: [4294667.296000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 dfl dfl) Sep 9 12:16:17 localhost kernel: [4294667.296000] Enabling APIC mode: Flat. Using 1 I/O APICs Sep 9 12:16:17 localhost kernel: [4294667.296000] Using ACPI (MADT) for SMP configuration information Sep 9 12:16:17 localhost kernel: [4294667.296000] Allocating PCI resources starting at 1c000000 (gap: 1c000000:e3ff0000) Sep 9 12:16:17 localhost kernel: [4294667.296000] Built 1 zonelists Sep 9 12:16:17 localhost kernel: [4294667.296000] Kernel command line: root=/dev/mapper/vol0-root ro quiet splash Sep 9 12:16:17 localhost kernel: [4294667.296000] Initializing CPU#0 Sep 9 12:16:17 localhost kernel: [4294667.296000] PID hash table entries: 2048 (order: 11, 32768 bytes) Sep 9 12:16:17 localhost kernel: [4294667.296000] Detected 996.602 MHz processor. Sep 9 12:16:17 localhost kernel: [4294667.296000] Using pmtmr for high-res timesource Sep 9 12:16:17 localhost kernel: [4294667.296000] Console: colour VGA+ 80x25 Sep 9 12:16:17 localhost kernel: [4294667.949000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) Sep 9 12:16:17 localhost kernel: [4294667.949000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) Sep 9 12:16:17 localhost kernel: [4294667.976000] Memory: 446724k/458688k available (1415k kernel code, 11352k reserved, 763k data, 224k init, 0k highmem) Sep 9 12:16:17 localhost kernel: [4294667.976000] Checking if this processor honours the WP bit even in supervisor mode... Ok. Sep 9 12:16:17 localhost kernel: [4294667.998000] Security Framework v1.0.0 initialized Sep 9 12:16:17 localhost kernel: [4294667.998000] SELinux: Disabled at boot. Sep 9 12:16:17 localhost kernel: [4294667.998000] Mount-cache hash table entries: 512 Sep 9 12:16:17 localhost kernel: [4294667.998000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) Sep 9 12:16:17 localhost kernel: [4294667.998000] CPU: L2 Cache: 256K (64 bytes/line) Sep 9 12:16:17 localhost kernel: [4294667.998000] CPU: AMD Athlon(tm) processor stepping 02 Sep 9 12:16:17 localhost kernel: [4294667.998000] Enabling fast FPU save and restore... done. Sep 9 12:16:17 localhost kernel: [4294667.998000] Checking 'hlt' instruction... OK. Sep 9 12:16:17 localhost kernel: [4294668.002000] Checking for popad bug... OK. Sep 9 12:16:17 localhost kernel: [4294668.002000] checking if image is initramfs... it is Sep 9 12:16:17 localhost kernel: [4294668.732000] Freeing initrd memory: 4676k freed Sep 9 12:16:17 localhost kernel: [4294668.739000] ACPI: Looking for DSDT in initrd... not found! Sep 9 12:16:17 localhost kernel: [4294668.837000] not found! Sep 9 12:16:17 localhost kernel: [4294668.838000] ACPI-0287: *** Error: Region SystemIO(1) has no handler Sep 9 12:16:17 localhost kernel: [4294668.838000] ACPI-0127: *** Error: acpi_load_tables: Could not load namespace: AE_NOT_EXIST Sep 9 12:16:17 localhost kernel: [4294668.838000] ACPI-0136: *** Error: acpi_load_tables: Could not load tables: AE_NOT_EXIST Sep 9 12:16:17 localhost kernel: [4294668.839000] ENABLING IO-APIC IRQs Sep 9 12:16:17 localhost kernel: [4294668.839000] ..TIMER: vector=0x31 pin1=2 pin2=-1 Sep 9 12:16:17 localhost kernel: [4294668.950000] NET: Registered protocol family 16 Sep 9 12:16:17 localhost kernel: [4294668.950000] EISA bus registered Sep 9 12:16:17 localhost kernel: [4294668.966000] PCI: PCI BIOS revision 2.10 entry at 0xfb180, last bus=1 Sep 9 12:16:17 localhost kernel: [4294668.967000] PCI: Using configuration type 1 Sep 9 12:16:17 localhost kernel: [4294668.967000] mtrr: v2.0 (20020519) Sep 9 12:16:17 localhost kernel: [4294668.967000] ACPI: Subsystem revision 20050729 Sep 9 12:16:17 localhost kernel: [4294668.967000] ACPI: Interpreter disabled. Sep 9 12:16:17 localhost kernel: [4294668.967000] Linux Plug and Play Support v0.97 (c) Adam Belay Sep 9 12:16:17 localhost kernel: [4294668.967000] pnp: PnP ACPI: disabled Sep 9 12:16:17 localhost kernel: [4294668.967000] PnPBIOS: Scanning system for PnP BIOS support... Sep 9 12:16:17 localhost kernel: [4294668.968000] PnPBIOS: Found PnP BIOS installation structure at 0xc00fbc50 Sep 9 12:16:17 localhost kernel: [4294668.968000] PnPBIOS: PnP BIOS version 1.0, entry 0xf0000:0xbc80, dseg 0xf0000 Sep 9 12:16:17 localhost kernel: [4294668.969000] PnPBIOS: 15 nodes reported by PnP BIOS; 15 recorded by driver Sep 9 12:16:17 localhost kernel: [4294668.969000] PCI: Probing PCI hardware Sep 9 12:16:17 localhost kernel: [4294668.969000] PCI: Probing PCI hardware (bus 00) Sep 9 12:16:17 localhost kernel: [4294668.971000] PCI: Using IRQ router VIA [1106/0686] at 0000:00:07.0 Sep 9 12:16:17 localhost kernel: [4294668.971000] PCI BIOS passed nonexistent PCI bus 0! Sep 9 12:16:17 localhost kernel: [4294668.971000] PCI BIOS passed nonexistent PCI bus 1! Sep 9 12:16:17 localhost kernel: [4294668.971000] PCI BIOS passed nonexistent PCI bus 0! Sep 9 12:16:17 localhost kernel: [4294668.994000] audit: initializing netlink socket (disabled) Sep 9 12:16:17 localhost kernel: [4294668.995000] VFS: Disk quotas dquot_6.5.1 Sep 9 12:16:17 localhost kernel: [4294668.995000] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) Sep 9 12:16:17 localhost kernel: [4294668.995000] devfs: 2004-01-31 Richard Gooch (rgooch at atnf.csiro.au) Sep 9 12:16:17 localhost kernel: [4294668.995000] devfs: boot_options: 0x0 Sep 9 12:16:17 localhost kernel: [4294668.995000] Initializing Cryptographic API Sep 9 12:16:17 localhost kernel: [4294668.995000] Applying VIA southbridge workaround. Sep 9 12:16:17 localhost kernel: [4294668.995000] PCI: Enabling Via external APIC routing Sep 9 12:16:17 localhost kernel: [4294668.995000] isapnp: Scanning for PnP cards... Sep 9 12:16:17 localhost kernel: [4294669.348000] isapnp: No Plug & Play device found Sep 9 12:16:17 localhost kernel: [4294669.379000] PNP: PS/2 Controller [PNP0303,PNP0f13] at 0x60,0x64 irq 1,12 Sep 9 12:16:17 localhost kernel: [4294669.379000] serio: i8042 AUX port at 0x60,0x64 irq 12 Sep 9 12:16:17 localhost kernel: [4294669.379000] serio: i8042 KBD port at 0x60,0x64 irq 1 Sep 9 12:16:17 localhost kernel: [4294669.379000] Serial: 8250/16550 driver $Revision: 1.90 $ 54 ports, IRQ sharing enabled Sep 9 12:16:17 localhost kernel: [4294669.380000] ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A Sep 9 12:16:17 localhost kernel: [4294669.380000] ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A Sep 9 12:16:17 localhost kernel: [4294669.383000] ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A Sep 9 12:16:17 localhost kernel: [4294669.383000] ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A Sep 9 12:16:17 localhost kernel: [4294669.384000] io scheduler noop registered Sep 9 12:16:17 localhost kernel: [4294669.384000] io scheduler anticipatory registered Sep 9 12:16:17 localhost kernel: [4294669.384000] io scheduler deadline registered Sep 9 12:16:17 localhost kernel: [4294669.384000] io scheduler cfq registered Sep 9 12:16:17 localhost kernel: [4294669.384000] RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize Sep 9 12:16:17 localhost kernel: [4294669.385000] EISA: Probing bus 0 at eisa.0 Sep 9 12:16:17 localhost kernel: [4294669.385000] Cannot allocate resource for EISA slot 5 Sep 9 12:16:17 localhost kernel: [4294669.385000] Cannot allocate resource for EISA slot 6 Sep 9 12:16:17 localhost kernel: [4294669.385000] EISA: Detected 0 cards. Sep 9 12:16:17 localhost kernel: [4294669.385000] NET: Registered protocol family 2 Sep 9 12:16:17 localhost kernel: [4294669.394000] IP: routing cache hash table of 4096 buckets, 32Kbytes Sep 9 12:16:17 localhost kernel: [4294669.394000] TCP established hash table entries: 16384 (order: 5, 131072 bytes) Sep 9 12:16:17 localhost kernel: [4294669.394000] TCP bind hash table entries: 16384 (order: 4, 65536 bytes) Sep 9 12:16:17 localhost kernel: [4294669.395000] TCP: Hash tables configured (established 16384 bind 16384) Sep 9 12:16:17 localhost kernel: [4294669.395000] NET: Registered protocol family 8 Sep 9 12:16:17 localhost kernel: [4294669.395000] NET: Registered protocol family 20 Sep 9 12:16:17 localhost kernel: [4294669.396000] Freeing unused kernel memory: 224k freed Sep 9 12:16:17 localhost kernel: [4294669.429000] input: AT Translated Set 2 keyboard on isa0060/serio0 Sep 9 12:16:17 localhost kernel: [4294669.455000] Capability LSM initialized Sep 9 12:16:17 localhost kernel: [4294669.476000] NET: Registered protocol family 1 Sep 9 12:16:17 localhost kernel: [4294669.535000] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 Sep 9 12:16:17 localhost kernel: [4294669.535000] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx Sep 9 12:16:17 localhost kernel: [4294669.554000] usbcore: registered new driver usbfs Sep 9 12:16:17 localhost kernel: [4294669.554000] usbcore: registered new driver hub Sep 9 12:16:17 localhost kernel: [4294669.555000] USB Universal Host Controller Interface driver v2.2 Sep 9 12:16:17 localhost kernel: [4294669.555000] uhci_hcd 0000:00:07.2: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller Sep 9 12:16:17 localhost kernel: [4294669.617000] uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1 Sep 9 12:16:17 localhost kernel: [4294669.617000] uhci_hcd 0000:00:07.2: irq 5, io base 0x0000c400 Sep 9 12:16:17 localhost kernel: [4294669.617000] hub 1-0:1.0: USB hub found Sep 9 12:16:17 localhost kernel: [4294669.617000] hub 1-0:1.0: 2 ports detected Sep 9 12:16:17 localhost kernel: [4294669.620000] uhci_hcd 0000:00:07.3: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2) Sep 9 12:16:17 localhost kernel: [4294669.682000] uhci_hcd 0000:00:07.3: new USB bus registered, assigned bus number 2 Sep 9 12:16:17 localhost kernel: [4294669.682000] uhci_hcd 0000:00:07.3: irq 5, io base 0x0000c800 Sep 9 12:16:17 localhost kernel: [4294669.682000] hub 2-0:1.0: USB hub found Sep 9 12:16:17 localhost kernel: [4294669.682000] hub 2-0:1.0: 2 ports detected Sep 9 12:16:17 localhost kernel: [4294669.743000] 3c59x: Donald Becker and others. www.scyld.com/network/vortex.html Sep 9 12:16:17 localhost kernel: [4294669.743000] 0000:00:09.0: 3Com PCI 3c905C Tornado at 0xdc00. Vers LK1.1.19 Sep 9 12:16:17 localhost kernel: [4294669.783000] SCSI subsystem initialized Sep 9 12:16:17 localhost kernel: [4294669.999000] scsi0 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 6.2.36 Sep 9 12:16:17 localhost kernel: [4294669.999000] Sep 9 12:16:17 localhost kernel: [4294669.999000] aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs Sep 9 12:16:17 localhost kernel: [4294669.999000] Sep 9 12:16:17 localhost kernel: [4294685.000000] Vendor: IBM Model: DDYS-T18350N Rev: S96H Sep 9 12:16:17 localhost kernel: [4294685.000000] Type: Direct-Access ANSI SCSI revision: 03 Sep 9 12:16:17 localhost kernel: [4294685.000000] scsi0:A:0:0: Tagged Queuing enabled. Depth 8 Sep 9 12:16:17 localhost kernel: [4294685.000000] target0:0:0: Beginning Domain Validation Sep 9 12:16:17 localhost kernel: [4294685.002000] WIDTH IS 1 Sep 9 12:16:17 localhost kernel: [4294685.003000] (scsi0:A:0): 6.600MB/s transfers (16bit) Sep 9 12:16:17 localhost kernel: [4294685.007000] (scsi0:A:0): 160.000MB/s transfers (80.000MHz DT, offset 63, 16bit) Sep 9 12:16:17 localhost kernel: [4294685.017000] target0:0:0: Ending Domain Validation Sep 9 12:16:17 localhost kernel: [4294685.788000] Vendor: IBM Model: DDYS-T18350N Rev: S96H Sep 9 12:16:17 localhost kernel: [4294685.788000] Type: Direct-Access ANSI SCSI revision: 03 Sep 9 12:16:17 localhost kernel: [4294685.788000] scsi0:A:4:0: Tagged Queuing enabled. Depth 8 Sep 9 12:16:17 localhost kernel: [4294685.788000] target0:0:4: Beginning Domain Validation Sep 9 12:16:17 localhost kernel: [4294685.790000] WIDTH IS 1 Sep 9 12:16:17 localhost kernel: [4294685.791000] (scsi0:A:4): 6.600MB/s transfers (16bit) Sep 9 12:16:17 localhost kernel: [4294685.795000] (scsi0:A:4): 160.000MB/s transfers (80.000MHz DT, offset 63, 16bit) Sep 9 12:16:17 localhost kernel: [4294685.805000] target0:0:4: Ending Domain Validation Sep 9 12:16:17 localhost kernel: [4294690.421000] VP_IDE: IDE controller at PCI slot 0000:00:07.1 Sep 9 12:16:17 localhost kernel: [4294690.421000] PCI: Via IRQ fixup for 0000:00:07.1, from 255 to 0 Sep 9 12:16:17 localhost kernel: [4294690.421000] VP_IDE: chipset revision 6 Sep 9 12:16:17 localhost kernel: [4294690.421000] VP_IDE: not 100%% native mode: will probe irqs later Sep 9 12:16:17 localhost kernel: [4294690.421000] VP_IDE: VIA vt82c686b (rev 40) IDE UDMA100 controller on pci0000:00:07.1 Sep 9 12:16:17 localhost kernel: [4294690.421000] ide0: BM-DMA at 0xc000-0xc007, BIOS settings: hda:DMA, hdb:pio Sep 9 12:16:17 localhost kernel: [4294690.421000] ide1: BM-DMA at 0xc008-0xc00f, BIOS settings: hdc:pio, hdd:pio Sep 9 12:16:17 localhost kernel: [4294691.213000] hda: Pioneer DVD-ROM ATAPIModel DVD-106S 011, ATAPI CD/DVD-ROM drive Sep 9 12:16:17 localhost kernel: [4294691.519000] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 Sep 9 12:16:17 localhost kernel: [4294692.566000] hdd: IOMEGA ZIP 250 ATAPI, ATAPI FLOPPY drive Sep 9 12:16:17 localhost kernel: [4294692.617000] ide1 at 0x170-0x177,0x376 on irq 15 Sep 9 12:16:17 localhost kernel: [4294694.674000] hda: ATAPI 40X DVD-ROM drive, 256kB Cache Sep 9 12:16:17 localhost kernel: [4294694.674000] Uniform CD-ROM driver Revision: 3.20 Sep 9 12:16:17 localhost kernel: [4294694.698000] SCSI device sda: 35843670 512-byte hdwr sectors (18352 MB) Sep 9 12:16:17 localhost kernel: [4294694.699000] SCSI device sda: drive cache: write back Sep 9 12:16:17 localhost kernel: [4294694.700000] SCSI device sda: 35843670 512-byte hdwr sectors (18352 MB) Sep 9 12:16:17 localhost kernel: [4294694.702000] SCSI device sda: drive cache: write back Sep 9 12:16:17 localhost kernel: [4294694.702000] /dev/scsi/host0/bus0/target0/lun0: p1 p2 < p5 > Sep 9 12:16:17 localhost kernel: [4294694.719000] Attached scsi disk sda at scsi0, channel 0, id 0, lun 0 Sep 9 12:16:17 localhost kernel: [4294694.720000] SCSI device sdb: 35843670 512-byte hdwr sectors (18352 MB) Sep 9 12:16:17 localhost kernel: [4294694.721000] SCSI device sdb: drive cache: write back Sep 9 12:16:17 localhost kernel: [4294694.722000] SCSI device sdb: 35843670 512-byte hdwr sectors (18352 MB) Sep 9 12:16:17 localhost kernel: [4294694.724000] SCSI device sdb: drive cache: write back Sep 9 12:16:17 localhost kernel: [4294694.724000] /dev/scsi/host0/bus0/target4/lun0: Sep 9 12:16:17 localhost kernel: [4294694.738000] Attached scsi disk sdb at scsi0, channel 0, id 4, lun 0 Sep 9 12:16:17 localhost kernel: [4294695.220000] vga16fb: mapped to 0xc00a0000 Sep 9 12:16:17 localhost kernel: [4294695.353000] Console: switching to colour frame buffer device 80x30 Sep 9 12:16:17 localhost kernel: [4294695.353000] fb0: VGA16 VGA frame buffer device Sep 9 12:16:17 localhost kernel: [4294695.512000] device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel at redhat.com Sep 9 12:16:17 localhost kernel: [4294695.525000] cdrom: open failed. Sep 9 12:16:17 localhost kernel: [4294695.688000] Attempting manual resume Sep 9 12:16:17 localhost kernel: [4294695.696000] swsusp: Suspend partition has wrong signature? Sep 9 12:16:17 localhost kernel: [4294695.715000] ReiserFS: dm-0: found reiserfs format "3.6" with standard journal Sep 9 12:16:17 localhost kernel: [4294695.893000] ReiserFS: dm-0: using ordered data mode Sep 9 12:16:17 localhost kernel: [4294695.904000] ReiserFS: dm-0: journal params: device dm-0, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30 Sep 9 12:16:17 localhost kernel: [4294695.908000] ReiserFS: dm-0: checking transaction log (dm-0) Sep 9 12:16:17 localhost kernel: [4294695.938000] ReiserFS: dm-0: Using r5 hash to sort names Sep 9 12:16:17 localhost kernel: [4294696.818000] md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27 Sep 9 12:16:17 localhost kernel: [4294700.716000] Adding 1048568k swap on /dev/mapper/vol0-swap. Priority:-1 extents:1 Sep 9 12:16:17 localhost kernel: [4294711.862000] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP] Sep 9 12:16:17 localhost kernel: [4294711.944000] parport_pc: VIA parallel port: io=0x378, irq=7 Sep 9 12:16:17 localhost kernel: [4294711.948000] lp0: using parport0 (interrupt-driven). Sep 9 12:16:17 localhost kernel: [4294711.964000] mice: PS/2 mouse device common for all mice Sep 9 12:16:17 localhost kernel: [4294712.213000] logips2pp: Detected unknown logitech mouse model 56 Sep 9 12:16:17 localhost kernel: [4294712.265000] input: ImExPS/2 Logitech Explorer Mouse on isa0060/serio1 Sep 9 12:16:17 localhost kernel: [4294716.829000] cdrom: open failed. Sep 9 12:16:17 localhost kernel: [4294717.488000] kjournald starting. Commit interval 5 seconds Sep 9 12:16:17 localhost kernel: [4294717.489000] EXT3 FS on sda1, internal journal Sep 9 12:16:17 localhost kernel: [4294717.489000] EXT3-fs: mounted filesystem with ordered data mode. Sep 9 12:16:17 localhost kernel: [4294718.972000] Linux agpgart interface v0.101 (c) Dave Jones Sep 9 12:16:17 localhost kernel: [4294718.989000] agpgart: Detected VIA Twister-K/KT133x/KM133 chipset Sep 9 12:16:17 localhost kernel: [4294719.024000] agpgart: AGP aperture is 64M @ 0xd0000000 Sep 9 12:16:17 localhost kernel: [4294719.164000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Sep 9 12:16:17 localhost kernel: [4294719.175000] ACPI-0171: *** Error: Method execution failed [\_SB_.PWRB._HID] (Node dbb45aa0), AE_AML_NO_OPERAND Sep 9 12:16:17 localhost kernel: [4294719.175000] ACPI-0171: *** Error: Method execution failed [\_SB_.SLPB._HID] (Node dbb45a40), AE_AML_NO_OPERAND Sep 9 12:16:17 localhost kernel: [4294719.175000] ACPI-0171: *** Error: Method execution failed [\_SB_.MEM_._HID] (Node dbb459c0), AE_AML_NO_OPERAND Sep 9 12:16:17 localhost kernel: [4294719.175000] ACPI-0171: *** Error: Method execution failed [\_SB_.PCI0._HID] (Node dbb45960), AE_AML_NO_OPERAND Sep 9 12:16:17 localhost kernel: [4294719.183000] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Sep 9 12:16:17 localhost kernel: [4294722.945000] Real Time Clock Driver v1.12 Sep 9 12:16:17 localhost kernel: [4294723.057000] input: PC Speaker Sep 9 12:16:17 localhost kernel: [4294723.395000] Floppy drive(s): fd0 is 1.44M Sep 9 12:16:17 localhost kernel: [4294723.409000] FDC 0 is a post-1991 82077 Sep 9 12:16:17 localhost kernel: [4294724.007000] ide-floppy driver 0.99.newide Sep 9 12:16:17 localhost kernel: [4294724.019000] hdd: 244736kB, 239/64/32 CHS, 4096 kBps, 512 sector size, 2941 rpm Sep 9 12:16:17 localhost kernel: [4294724.637000] ts: Compaq touchscreen protocol output Sep 9 12:16:17 localhost kernel: [4294726.175000] NET: Registered protocol family 17 Sep 9 12:16:27 localhost kernel: [4294741.986000] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac) Sep 9 12:16:27 localhost kernel: [4294742.640000] NET: Registered protocol family 10 Sep 9 12:16:27 localhost kernel: [4294742.640000] Disabled Privacy Extensions on device c02eb280(lo) Sep 9 12:16:27 localhost kernel: [4294742.640000] IPv6 over IPv4 tunneling driver Sep 9 12:16:27 localhost kernel: [4294742.848000] Bluetooth: Core ver 2.7 Sep 9 12:16:27 localhost kernel: [4294742.848000] NET: Registered protocol family 31 Sep 9 12:16:27 localhost kernel: [4294742.848000] Bluetooth: HCI device and connection manager initialized Sep 9 12:16:27 localhost kernel: [4294742.848000] Bluetooth: HCI socket layer initialized Sep 9 12:16:27 localhost kernel: [4294742.896000] Bluetooth: L2CAP ver 2.7 Sep 9 12:16:27 localhost kernel: [4294742.896000] Bluetooth: L2CAP socket layer initialized Sep 9 12:16:28 localhost kernel: [4294742.951000] Bluetooth: RFCOMM ver 1.5 Sep 9 12:16:28 localhost kernel: [4294742.951000] Bluetooth: RFCOMM socket layer initialized Sep 9 12:16:28 localhost kernel: [4294742.951000] Bluetooth: RFCOMM TTY layer initialized Sep 9 12:20:07 localhost kernel: Kernel logging (proc) stopped. Sep 9 12:20:07 localhost kernel: Kernel log daemon terminating. Sep 9 12:21:52 localhost kernel: Inspecting /boot/System.map-2.6.12-6-386 Sep 9 12:21:52 localhost kernel: Loaded 28939 symbols from /boot/System.map-2.6.12-6-386. Sep 9 12:21:52 localhost kernel: Symbols match kernel version 2.6.12. Sep 9 12:21:52 localhost kernel: No module symbols loaded - kernel modules not enabled. Sep 9 12:21:52 localhost kernel: 0000000) @ 0x1bff3040 Sep 9 12:21:52 localhost kernel: [4294667.296000] ACPI: PM-Timer IO Port: 0x4008 Sep 9 12:21:52 localhost kernel: [4294667.296000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled) Sep 9 12:21:52 localhost kernel: [4294667.296000] Processor #0 6:4 APIC version 16 Sep 9 12:21:52 localhost kernel: [4294667.296000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) Sep 9 12:21:52 localhost kernel: [4294667.296000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23 Sep 9 12:21:52 localhost kernel: [4294667.296000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) Sep 9 12:21:52 localhost kernel: [4294667.296000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 dfl dfl) Sep 9 12:21:52 localhost kernel: [4294667.296000] Enabling APIC mode: Flat. Using 1 I/O APICs Sep 9 12:21:52 localhost kernel: [4294667.296000] Using ACPI (MADT) for SMP configuration information Sep 9 12:21:52 localhost kernel: [4294667.296000] Allocating PCI resources starting at 1c000000 (gap: 1c000000:e3ff0000) Sep 9 12:21:52 localhost kernel: [4294667.296000] Built 1 zonelists Sep 9 12:21:52 localhost kernel: [4294667.296000] Kernel command line: root=/dev/mapper/vol0-root ro quiet splash Sep 9 12:21:52 localhost kernel: [4294667.296000] Initializing CPU#0 Sep 9 12:21:52 localhost kernel: [4294667.296000] PID hash table entries: 2048 (order: 11, 32768 bytes) Sep 9 12:21:52 localhost kernel: [4294667.296000] Detected 996.026 MHz processor. Sep 9 12:21:52 localhost kernel: [4294667.296000] Using pmtmr for high-res timesource Sep 9 12:21:52 localhost kernel: [4294667.296000] Console: colour VGA+ 80x25 Sep 9 12:21:52 localhost kernel: [4294667.586000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes) Sep 9 12:21:52 localhost kernel: [4294667.587000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes) Sep 9 12:21:52 localhost kernel: [4294667.612000] Memory: 446736k/458688k available (1413k kernel code, 11272k reserved, 761k data, 224k init, 0k highmem) Sep 9 12:21:52 localhost kernel: [4294667.612000] Checking if this processor honours the WP bit even in supervisor mode... Ok. Sep 9 12:21:52 localhost kernel: [4294667.634000] Security Framework v1.0.0 initialized Sep 9 12:21:52 localhost kernel: [4294667.634000] SELinux: Disabled at boot. Sep 9 12:21:52 localhost kernel: [4294667.634000] Mount-cache hash table entries: 512 Sep 9 12:21:52 localhost kernel: [4294667.634000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/line) Sep 9 12:21:52 localhost kernel: [4294667.634000] CPU: L2 Cache: 256K (64 bytes/line) Sep 9 12:21:52 localhost kernel: [4294667.634000] CPU: AMD Athlon(tm) processor stepping 02 Sep 9 12:21:52 localhost kernel: [4294667.634000] Enabling fast FPU save and restore... done. Sep 9 12:21:52 localhost kernel: [4294667.634000] Checking 'hlt' instruction... OK. Sep 9 12:21:52 localhost kernel: [4294667.638000] Checking for popad bug... OK. Sep 9 12:21:52 localhost kernel: [4294667.645000] ACPI: Looking for DSDT in initrd... not found! Sep 9 12:21:52 localhost kernel: [4294667.740000] ACPI-0498: *** Warning: Encountered executable code at module level, [AE_NOT_CONFIGURED] Sep 9 12:21:52 localhost kernel: [4294667.748000] ENABLING IO-APIC IRQs Sep 9 12:21:52 localhost kernel: [4294667.748000] ..TIMER: vector=0x31 pin1=2 pin2=-1 Sep 9 12:21:52 localhost kernel: [4294667.859000] checking if image is initramfs... it is Sep 9 12:21:52 localhost kernel: [4294668.586000] Freeing initrd memory: 4611k freed Sep 9 12:21:52 localhost kernel: [4294668.587000] NET: Registered protocol family 16 Sep 9 12:21:52 localhost kernel: [4294668.587000] EISA bus registered Sep 9 12:21:52 localhost kernel: [4294668.587000] ACPI: bus type pci registered Sep 9 12:21:52 localhost kernel: [4294668.604000] PCI: PCI BIOS revision 2.10 entry at 0xfb180, last bus=1 Sep 9 12:21:52 localhost kernel: [4294668.604000] PCI: Using configuration type 1 Sep 9 12:21:52 localhost kernel: [4294668.604000] mtrr: v2.0 (20020519) Sep 9 12:21:52 localhost kernel: [4294668.604000] ACPI: Subsystem revision 20050408 Sep 9 12:21:52 localhost kernel: [4294668.619000] ACPI: Interpreter enabled Sep 9 12:21:52 localhost kernel: [4294668.619000] ACPI: Using IOAPIC for interrupt routing Sep 9 12:21:52 localhost kernel: [4294668.620000] ACPI: PCI Root Bridge [PCI0] (0000:00) Sep 9 12:21:52 localhost kernel: [4294668.620000] PCI: Probing PCI hardware (bus 00) Sep 9 12:21:52 localhost kernel: [4294668.621000] ACPI: Assume root bridge [\_SB_.PCI0] segment is 0 Sep 9 12:21:52 localhost kernel: [4294668.621000] ACPI: Assume root bridge [\_SB_.PCI0] bus is 0 Sep 9 12:21:52 localhost kernel: [4294668.656000] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 *5 6 7 10 11 12 14 15) Sep 9 12:21:52 localhost kernel: [4294668.657000] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 10 *11 12 14 15) Sep 9 12:21:52 localhost kernel: [4294668.658000] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 *10 11 12 14 15) Sep 9 12:21:52 localhost kernel: [4294668.658000] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 10 11 12 14 15) *9 Sep 9 12:21:52 localhost kernel: [4294668.664000] Linux Plug and Play Support v0.97 (c) Adam Belay Sep 9 12:21:52 localhost kernel: [4294668.664000] pnp: PnP ACPI init Sep 9 12:21:52 localhost kernel: [4294668.670000] pnp: PnP ACPI: found 12 devices Sep 9 12:21:52 localhost kernel: [4294668.670000] PnPBIOS: Disabled by ACPI PNP Sep 9 12:21:52 localhost kernel: [4294668.670000] PCI: Using ACPI for IRQ routing Sep 9 12:21:52 localhost kernel: [4294668.670000] PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report Sep 9 12:21:52 localhost kernel: [4294668.694000] audit: initializing netlink socket (disabled) Sep 9 12:21:52 localhost kernel: [4294668.694000] VFS: Disk quotas dquot_6.5.1 Sep 9 12:21:52 localhost kernel: [4294668.694000] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) Sep 9 12:21:52 localhost kernel: [4294668.694000] devfs: 2004-01-31 Richard Gooch (rgooch at atnf.csiro.au) Sep 9 12:21:52 localhost kernel: [4294668.694000] devfs: boot_options: 0x0 Sep 9 12:21:52 localhost kernel: [4294668.694000] Initializing Cryptographic API Sep 9 12:21:52 localhost kernel: [4294668.694000] Applying VIA southbridge workaround. Sep 9 12:21:52 localhost kernel: [4294668.694000] PCI: Enabling Via external APIC routing Sep 9 12:21:52 localhost kernel: [4294668.695000] isapnp: Scanning for PnP cards... Sep 9 12:21:52 localhost kernel: [4294669.048000] isapnp: No Plug & Play device found Sep 9 12:21:52 localhost kernel: [4294669.078000] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 Sep 9 12:21:52 localhost kernel: [4294669.079000] serio: i8042 AUX port at 0x60,0x64 irq 12 Sep 9 12:21:52 localhost kernel: [4294669.079000] serio: i8042 KBD port at 0x60,0x64 irq 1 Sep 9 12:21:52 localhost kernel: [4294669.079000] Serial: 8250/16550 driver $Revision: 1.90 $ 54 ports, IRQ sharing enabled Sep 9 12:21:52 localhost kernel: [4294669.079000] ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A Sep 9 12:21:52 localhost kernel: [4294669.079000] ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A Sep 9 12:21:52 localhost kernel: [4294669.083000] ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A Sep 9 12:21:52 localhost kernel: [4294669.083000] ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A Sep 9 12:21:52 localhost kernel: [4294669.083000] io scheduler noop registered Sep 9 12:21:52 localhost kernel: [4294669.083000] io scheduler anticipatory registered Sep 9 12:21:52 localhost kernel: [4294669.083000] io scheduler deadline registered Sep 9 12:21:52 localhost kernel: [4294669.083000] io scheduler cfq registered Sep 9 12:21:52 localhost kernel: [4294669.084000] RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize Sep 9 12:21:52 localhost kernel: [4294669.084000] EISA: Probing bus 0 at eisa.0 Sep 9 12:21:52 localhost kernel: [4294669.084000] Cannot allocate resource for EISA slot 4 Sep 9 12:21:52 localhost kernel: [4294669.084000] Cannot allocate resource for EISA slot 5 Sep 9 12:21:52 localhost kernel: [4294669.084000] Cannot allocate resource for EISA slot 6 Sep 9 12:21:52 localhost kernel: [4294669.084000] EISA: Detected 0 cards. Sep 9 12:21:52 localhost kernel: [4294669.084000] NET: Registered protocol family 2 Sep 9 12:21:52 localhost kernel: [4294669.094000] IP: routing cache hash table of 4096 buckets, 32Kbytes Sep 9 12:21:52 localhost kernel: [4294669.094000] TCP established hash table entries: 16384 (order: 5, 131072 bytes) Sep 9 12:21:52 localhost kernel: [4294669.094000] TCP bind hash table entries: 16384 (order: 4, 65536 bytes) Sep 9 12:21:52 localhost kernel: [4294669.095000] TCP: Hash tables configured (established 16384 bind 16384) Sep 9 12:21:52 localhost kernel: [4294669.095000] NET: Registered protocol family 8 Sep 9 12:21:52 localhost kernel: [4294669.095000] NET: Registered protocol family 20 Sep 9 12:21:52 localhost kernel: [4294669.095000] ACPI wakeup devices: Sep 9 12:21:52 localhost kernel: [4294669.095000] SLPB PCI0 USB0 USB1 MODM UAR1 UAR2 LPT1 Sep 9 12:21:52 localhost kernel: [4294669.095000] ACPI: (supports S0 S1 S4 S5) Sep 9 12:21:52 localhost kernel: [4294669.096000] Freeing unused kernel memory: 224k freed Sep 9 12:21:52 localhost kernel: [4294669.128000] input: AT Translated Set 2 keyboard on isa0060/serio0 Sep 9 12:21:52 localhost kernel: [4294669.181000] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 Sep 9 12:21:52 localhost kernel: [4294669.181000] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx Sep 9 12:21:52 localhost kernel: [4294669.181000] ACPI: bus type ide registered Sep 9 12:21:52 localhost kernel: [4294669.197000] usbcore: registered new driver usbfs Sep 9 12:21:52 localhost kernel: [4294669.197000] usbcore: registered new driver hub Sep 9 12:21:52 localhost kernel: [4294669.198000] USB Universal Host Controller Interface driver v2.2 Sep 9 12:21:52 localhost kernel: [4294669.199000] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 10 Sep 9 12:21:52 localhost kernel: [4294669.199000] ACPI: PCI Interrupt 0000:00:07.2[D] -> Link [LNKD] -> GSI 10 (level, low) -> IRQ 10 Sep 9 12:21:52 localhost kernel: [4294669.199000] PCI: Via IRQ fixup for 0000:00:07.2, from 5 to 10 Sep 9 12:21:52 localhost kernel: [4294669.199000] uhci_hcd 0000:00:07.2: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller Sep 9 12:21:52 localhost kernel: [4294669.261000] uhci_hcd 0000:00:07.2: new USB bus registered, assigned bus number 1 Sep 9 12:21:52 localhost kernel: [4294669.261000] uhci_hcd 0000:00:07.2: irq 10, io base 0x0000c400 Sep 9 12:21:52 localhost kernel: [4294669.261000] hub 1-0:1.0: USB hub found Sep 9 12:21:52 localhost kernel: [4294669.261000] hub 1-0:1.0: 2 ports detected Sep 9 12:21:52 localhost kernel: [4294669.264000] ACPI: PCI Interrupt 0000:00:07.3[D] -> Link [LNKD] -> GSI 10 (level, low) -> IRQ 10 Sep 9 12:21:52 localhost kernel: [4294669.264000] PCI: Via IRQ fixup for 0000:00:07.3, from 5 to 10 Sep 9 12:21:52 localhost kernel: [4294669.264000] uhci_hcd 0000:00:07.3: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2) Sep 9 12:21:52 localhost kernel: [4294669.326000] uhci_hcd 0000:00:07.3: new USB bus registered, assigned bus number 2 Sep 9 12:21:52 localhost kernel: [4294669.326000] uhci_hcd 0000:00:07.3: irq 10, io base 0x0000c800 Sep 9 12:21:52 localhost kernel: [4294669.326000] hub 2-0:1.0: USB hub found Sep 9 12:21:52 localhost kernel: [4294669.326000] hub 2-0:1.0: 2 ports detected Sep 9 12:21:52 localhost kernel: [4294669.374000] ACPI: PCI Interrupt 0000:00:09.0[A] -> GSI 18 (level, low) -> IRQ 18 Sep 9 12:21:52 localhost kernel: [4294669.374000] 3c59x: Donald Becker and others. www.scyld.com/network/vortex.html Sep 9 12:21:52 localhost kernel: [4294669.374000] 0000:00:09.0: 3Com PCI 3c905C Tornado at 0xdc00. Vers LK1.1.19 Sep 9 12:21:52 localhost kernel: [4294669.411000] SCSI subsystem initialized Sep 9 12:21:52 localhost kernel: [4294669.416000] ACPI: PCI Interrupt 0000:00:0c.0[A] -> GSI 17 (level, low) -> IRQ 17 Sep 9 12:21:52 localhost kernel: [4294669.626000] scsi0 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 6.2.36 Sep 9 12:21:52 localhost kernel: [4294669.626000] Sep 9 12:21:52 localhost kernel: [4294669.626000] aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs Sep 9 12:21:52 localhost kernel: [4294669.626000] Sep 9 12:21:52 localhost kernel: [4294684.627000] Vendor: IBM Model: DDYS-T18350N Rev: S96H Sep 9 12:21:52 localhost kernel: [4294684.627000] Type: Direct-Access ANSI SCSI revision: 03 Sep 9 12:21:52 localhost kernel: [4294684.627000] scsi0:A:0:0: Tagged Queuing enabled. Depth 8 Sep 9 12:21:52 localhost kernel: [4294684.627000] target0:0:0: Beginning Domain Validation Sep 9 12:21:52 localhost kernel: [4294684.629000] WIDTH IS 1 Sep 9 12:21:52 localhost kernel: [4294684.630000] (scsi0:A:0): 6.600MB/s transfers (16bit) Sep 9 12:21:52 localhost kernel: [4294684.634000] (scsi0:A:0): 160.000MB/s transfers (80.000MHz DT, offset 63, 16bit) Sep 9 12:21:52 localhost kernel: [4294684.644000] target0:0:0: Ending Domain Validation Sep 9 12:21:52 localhost kernel: [4294685.415000] Vendor: IBM Model: DDYS-T18350N Rev: S96H Sep 9 12:21:52 localhost kernel: [4294685.415000] Type: Direct-Access ANSI SCSI revision: 03 Sep 9 12:21:52 localhost kernel: [4294685.415000] scsi0:A:4:0: Tagged Queuing enabled. Depth 8 Sep 9 12:21:52 localhost kernel: [4294685.415000] target0:0:4: Beginning Domain Validation Sep 9 12:21:52 localhost kernel: [4294685.417000] WIDTH IS 1 Sep 9 12:21:52 localhost kernel: [4294685.418000] (scsi0:A:4): 6.600MB/s transfers (16bit) Sep 9 12:21:52 localhost kernel: [4294685.422000] (scsi0:A:4): 160.000MB/s transfers (80.000MHz DT, offset 63, 16bit) Sep 9 12:21:52 localhost kernel: [4294685.432000] target0:0:4: Ending Domain Validation Sep 9 12:21:52 localhost kernel: [4294690.037000] VP_IDE: IDE controller at PCI slot 0000:00:07.1 Sep 9 12:21:52 localhost kernel: [4294690.037000] PCI: Via IRQ fixup for 0000:00:07.1, from 255 to 0 Sep 9 12:21:52 localhost kernel: [4294690.037000] VP_IDE: chipset revision 6 Sep 9 12:21:52 localhost kernel: [4294690.037000] VP_IDE: not 100%% native mode: will probe irqs later Sep 9 12:21:52 localhost kernel: [4294690.037000] VP_IDE: VIA vt82c686b (rev 40) IDE UDMA100 controller on pci0000:00:07.1 Sep 9 12:21:52 localhost kernel: [4294690.037000] ide0: BM-DMA at 0xc000-0xc007, BIOS settings: hda:DMA, hdb:pio Sep 9 12:21:52 localhost kernel: [4294690.037000] ide1: BM-DMA at 0xc008-0xc00f, BIOS settings: hdc:pio, hdd:pio Sep 9 12:21:52 localhost kernel: [4294690.829000] hda: Pioneer DVD-ROM ATAPIModel DVD-106S 011, ATAPI CD/DVD-ROM drive Sep 9 12:21:52 localhost kernel: [4294691.135000] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 Sep 9 12:21:52 localhost kernel: [4294692.182000] hdd: IOMEGA ZIP 250 ATAPI, ATAPI FLOPPY drive Sep 9 12:21:52 localhost kernel: [4294692.233000] ide1 at 0x170-0x177,0x376 on irq 15 Sep 9 12:21:52 localhost kernel: [4294694.289000] hda: ATAPI 40X DVD-ROM drive, 256kB Cache Sep 9 12:21:52 localhost kernel: [4294694.289000] Uniform CD-ROM driver Revision: 3.20 Sep 9 12:21:52 localhost kernel: [4294694.309000] SCSI device sda: 35843670 512-byte hdwr sectors (18352 MB) Sep 9 12:21:52 localhost kernel: [4294694.310000] SCSI device sda: drive cache: write back Sep 9 12:21:52 localhost kernel: [4294694.312000] SCSI device sda: 35843670 512-byte hdwr sectors (18352 MB) Sep 9 12:21:52 localhost kernel: [4294694.313000] SCSI device sda: drive cache: write back Sep 9 12:21:52 localhost kernel: [4294694.313000] /dev/scsi/host0/bus0/target0/lun0: p1 p2 < p5 > Sep 9 12:21:52 localhost kernel: [4294694.333000] Attached scsi disk sda at scsi0, channel 0, id 0, lun 0 Sep 9 12:21:52 localhost kernel: [4294694.334000] SCSI device sdb: 35843670 512-byte hdwr sectors (18352 MB) Sep 9 12:21:52 localhost kernel: [4294694.335000] SCSI device sdb: drive cache: write back Sep 9 12:21:52 localhost kernel: [4294694.336000] SCSI device sdb: 35843670 512-byte hdwr sectors (18352 MB) Sep 9 12:21:52 localhost kernel: [4294694.337000] SCSI device sdb: drive cache: write back Sep 9 12:21:52 localhost kernel: [4294694.337000] /dev/scsi/host0/bus0/target4/lun0: Sep 9 12:21:52 localhost kernel: [4294694.349000] Attached scsi disk sdb at scsi0, channel 0, id 4, lun 0 Sep 9 12:21:52 localhost kernel: [4294694.806000] ACPI: CPU0 (power states: C1[C1]) Sep 9 12:21:52 localhost kernel: [4294694.860000] device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel at redhat.com Sep 9 12:21:52 localhost kernel: [4294694.871000] cdrom: open failed. Sep 9 12:21:52 localhost kernel: [4294695.027000] Attempting manual resume Sep 9 12:21:52 localhost kernel: [4294695.036000] swsusp: Suspend partition has wrong signature? Sep 9 12:21:52 localhost kernel: [4294695.055000] ReiserFS: dm-0: found reiserfs format "3.6" with standard journal Sep 9 12:21:52 localhost kernel: [4294695.233000] ReiserFS: dm-0: using ordered data mode Sep 9 12:21:52 localhost kernel: [4294695.243000] ReiserFS: dm-0: journal params: device dm-0, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30 Sep 9 12:21:52 localhost kernel: [4294695.247000] ReiserFS: dm-0: checking transaction log (dm-0) Sep 9 12:21:52 localhost kernel: [4294695.271000] ReiserFS: dm-0: Using r5 hash to sort names Sep 9 12:21:52 localhost kernel: [4294696.034000] NET: Registered protocol family 1 Sep 9 12:21:52 localhost kernel: [4294696.640000] md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27 Sep 9 12:21:52 localhost kernel: [4294701.989000] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE,EPP] Sep 9 12:21:52 localhost kernel: [4294702.072000] parport_pc: VIA parallel port: io=0x378, irq=7 Sep 9 12:21:52 localhost kernel: [4294702.076000] lp0: using parport0 (interrupt-driven). Sep 9 12:21:52 localhost kernel: [4294702.096000] mice: PS/2 mouse device common for all mice Sep 9 12:21:52 localhost kernel: [4294702.327000] logips2pp: Detected unknown logitech mouse model 56 Sep 9 12:21:52 localhost kernel: [4294702.379000] input: ImExPS/2 Logitech Explorer Mouse on isa0060/serio1 Sep 9 12:21:52 localhost kernel: [4294705.298000] cdrom: open failed. Sep 9 12:21:52 localhost kernel: [4294705.797000] kjournald starting. Commit interval 5 seconds Sep 9 12:21:52 localhost kernel: [4294705.798000] EXT3 FS on sda1, internal journal Sep 9 12:21:52 localhost kernel: [4294705.798000] EXT3-fs: mounted filesystem with ordered data mode. Sep 9 12:21:52 localhost kernel: [4294705.847000] Adding 1048568k swap on /dev/mapper/vol0-swap. Priority:-1 extents:1 Sep 9 12:21:52 localhost kernel: [4294706.492000] Linux agpgart interface v0.101 (c) Dave Jones Sep 9 12:21:52 localhost kernel: [4294706.509000] agpgart: Detected VIA Twister-K/KT133x/KM133 chipset Sep 9 12:21:52 localhost kernel: [4294706.544000] agpgart: AGP aperture is 64M @ 0xd0000000 Sep 9 12:21:52 localhost kernel: [4294706.695000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Sep 9 12:21:52 localhost kernel: [4294708.223000] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 10 Sep 9 12:21:52 localhost kernel: [4294708.223000] ACPI: PCI Interrupt 0000:00:07.5[C] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10 Sep 9 12:21:52 localhost kernel: [4294708.223000] PCI: Via IRQ fixup for 0000:00:07.5, from 9 to 10 Sep 9 12:21:52 localhost kernel: [4294710.790000] Real Time Clock Driver v1.12 Sep 9 12:21:52 localhost kernel: [4294710.885000] input: PC Speaker Sep 9 12:21:52 localhost kernel: [4294711.029000] Floppy drive(s): fd0 is 1.44M Sep 9 12:21:52 localhost kernel: [4294711.044000] FDC 0 is a post-1991 82077 Sep 9 12:21:52 localhost kernel: [4294711.664000] ide-floppy driver 0.99.newide Sep 9 12:21:52 localhost kernel: [4294711.675000] hdd: 244736kB, 239/64/32 CHS, 4096 kBps, 512 sector size, 2941 rpm Sep 9 12:21:52 localhost kernel: [4294712.295000] ts: Compaq touchscreen protocol output Sep 9 12:21:52 localhost kernel: [4294713.792000] ACPI: PCI Interrupt 0000:00:09.0[A] -> GSI 18 (level, low) -> IRQ 18 Sep 9 12:21:52 localhost kernel: [4294713.833000] NET: Registered protocol family 17 Sep 9 12:21:52 localhost kernel: [4294716.051000] nfs warning: mount version older than kernel Sep 9 12:21:52 localhost kernel: [4294716.738000] NET: Registered protocol family 10 Sep 9 12:21:52 localhost kernel: [4294716.739000] Disabled Privacy Extensions on device c02ea260(lo) Sep 9 12:21:52 localhost kernel: [4294716.739000] IPv6 over IPv4 tunneling driver Sep 9 12:21:52 localhost kernel: [4294722.164000] ACPI: Power Button (FF) [PWRF] Sep 9 12:21:52 localhost kernel: [4294722.164000] ACPI: Power Button (CM) [PWRB] Sep 9 12:21:52 localhost kernel: [4294722.164000] ACPI: Sleep Button (CM) [SLPB] Sep 9 12:22:02 localhost kernel: [4294732.696000] apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac) Sep 9 12:22:02 localhost kernel: [4294732.696000] apm: overridden by ACPI. Sep 9 12:22:02 localhost kernel: [4294733.411000] Bluetooth: Core ver 2.7 Sep 9 12:22:02 localhost kernel: [4294733.411000] NET: Registered protocol family 31 Sep 9 12:22:02 localhost kernel: [4294733.411000] Bluetooth: HCI device and connection manager initialized Sep 9 12:22:02 localhost kernel: [4294733.411000] Bluetooth: HCI socket layer initialized Sep 9 12:22:02 localhost kernel: [4294733.446000] Bluetooth: L2CAP ver 2.7 Sep 9 12:22:02 localhost kernel: [4294733.446000] Bluetooth: L2CAP socket layer initialized Sep 9 12:22:03 localhost kernel: [4294733.698000] Bluetooth: RFCOMM ver 1.5 Sep 9 12:22:03 localhost kernel: [4294733.698000] Bluetooth: RFCOMM socket layer initialized Sep 9 12:22:03 localhost kernel: [4294733.698000] Bluetooth: RFCOMM TTY layer initialized -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 19:58:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 20:58:06 +0100 (BST) Subject: [Bug 14765] Ubuntu breezy linux does not halt/reboot, just gives me console root shell In-Reply-To: Message-ID: <20050909195806.60C13303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14765 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |debzilla at ubuntu.com Component|linux |UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-09 20:58 UTC ------- It's working fine for me and others; I suspect this is unique to your system. Making manual changes to the startup/shutdown configuration files could cause something like this -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 20:00:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 21:00:55 +0100 (BST) Subject: [Bug 14489] Sound looping on VIA chipset without "noapic" In-Reply-To: Message-ID: <20050909200055.1ADAE303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14489 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Summary|Sound looping, after upgrade|Sound looping on VIA chipset |to 2.6.12-7 |without "noapic" -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 20:11:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 21:11:40 +0100 (BST) Subject: [Bug 14765] Ubuntu breezy linux does not halt/reboot, just gives me console root shell In-Reply-To: Message-ID: <20050909201140.B717C303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14765 Ubuntu | UNKNOWN ------- Additional Comments From svu at gnome.org 2005-09-09 21:11 UTC ------- I did not change any startup scripts. All I did was apt-get dist-upgrade from breezy repo. Just it. Is there any particular script I could check? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 20:16:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 21:16:17 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8319too) In-Reply-To: Message-ID: <20050909201617.DF347303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From thecr3pe at gmail.com 2005-09-09 21:16 UTC ------- I have this problem too. I have a card which work with the 8139too driver and a wired network which work well. And the dhcp don't work during the install of breezy preview -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 20:38:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 21:38:36 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050909203836.06B26303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules alexanderjurjens at lycos.nl changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |daniel.stone at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 20:42:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 21:42:00 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050909204200.03D0F303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules ------- Additional Comments From alexanderjurjens at lycos.nl 2005-09-09 21:41 UTC ------- (In reply to comment #4) > Okay, Alexander, could you please add 'nvidia' to /etc/hotplug/blacklist, > restart, and do something like this: > $ sudo tail -f /var/log/dmesg & > $ sudo modprobe nvidia > > and tell us if dmesg shows anything interesting while you're loading nvidia. I've added nvidia to /etc/hotplug/blacklist, but it didn't solve the problem. I don't think that the nvidia module is the cause of my problem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 21:04:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 22:04:44 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050909210444.BEFF4303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |c.elkjaer at gmail.com ------- Additional Comments From mdz at ubuntu.com 2005-09-09 22:04 UTC ------- *** Bug 14806 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 21:08:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 22:08:24 +0100 (BST) Subject: [Bug 6108] laptop-mode hang on various laptops In-Reply-To: Message-ID: <20050909210824.AF29E303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |critical Priority|P2 |P1 ------- Additional Comments From mdz at ubuntu.com 2005-09-09 22:08 UTC ------- Upgrading severity, as this seems to affect a large number of users. Ben, what can we do to help track this down? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 21:20:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 22:20:08 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050909212008.205F4303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 21:29:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 22:29:30 +0100 (BST) Subject: [Bug 15045] Breezy Preview not bootable on P4 with Intel SATA controler In-Reply-To: Message-ID: <20050909212930.48340303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15045 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|cjwatson at ubuntu.com |ben.collins at ubuntu.com Component|debian-installer |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-09 22:29 UTC ------- Can you send lspci and dmesg output from a successful boot? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 21:42:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 22:42:03 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050909214203.F2613303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |joe at fatnsoft.com Status|RESOLVED |UNCONFIRMED Resolution|FIXED | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 21:43:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 9 Sep 2005 22:43:47 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050909214347.B9530303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From mdz at ubuntu.com 2005-09-09 22:43 UTC ------- (In reply to comment #6) > ... fixed as per previous comments? There is clearly still a problem somewhere; the problem simply isn't that we forgot to run depmod (we do run it). My best guess is that clock skew is to blame, but this needs further investigation. ls -al /lib/modules/`uname -r`/{modules.dep,volatile} from an affected system would be helpful -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 23:06:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 00:06:12 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050909230612.C9629303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|laptop-mode hang on various |IDE power management hang on |laptops |various laptops ------- Additional Comments From mdz at ubuntu.com 2005-09-10 00:06 UTC ------- OK, I've reproduced this problem using the following steps: - Boot into recovery mode - kill dhclient3 (and any other daemons which do regular disk I/O) - hdparm -B1 - wait a while - with the disk spun down, cause some disk I/O (I used "ls /") Since I was on the console, I actually got some kernel messages out of this: hda: dma_timer_expiry: dma status == 0x21 hda: DMA timeout error so the kernel is still at least somewhat alive, and this bug is decidedly unrelated to laptop-mode. The obvious workaround would seem to be to disable the hdparm -B command in acpi-support. I assume the disk will still spin down? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 9 23:53:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 00:53:15 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050909235315.E9267303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-10 00:53 UTC ------- (In reply to comment #55) > OK, I've reproduced this problem using the following steps: > > - Boot into recovery mode > - kill dhclient3 (and any other daemons which do regular disk I/O) > - hdparm -B1 > - wait a while > - with the disk spun down, cause some disk I/O (I used "ls /") Correction: it's not clear that the disk was spun down at all; it's much quieter than I thought. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 00:15:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 01:15:42 +0100 (BST) Subject: [Bug 14284] sk98lin driver needs updating In-Reply-To: Message-ID: <20050910001542.DB314303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14284 Ubuntu | linux ------- Additional Comments From alex.roman at gmail.com 2005-09-10 01:15 UTC ------- The installer for the driver from Syskonnect has an option to generate a kernel patch. In my experience, it has worked well. I am affected by this bug, so is there any chance to get it into breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 00:21:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 01:21:41 +0100 (BST) Subject: [Bug 14284] sk98lin driver needs updating In-Reply-To: Message-ID: <20050910002141.1C0BE303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14284 Ubuntu | linux alex.roman at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alex.roman at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 00:40:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 01:40:38 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050910004038.2BDD8303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-10 01:40 UTC ------- Unfortunately, it isn't deterministic. I haven't been able to reproduce the problem after repeating the same procedure a few times. I suppose it was lucky that it happened the first time, as it was in a very controlled environment and allowed us to exclude some factors. (the system was plugged into AC power the entire time, and acpid doesn't run in single-user mode). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 03:54:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 04:54:24 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050910035424.C98FD303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules ------- Additional Comments From pete at shinners.org 2005-09-10 04:54 UTC ------- I will run this test next time there is an upgrade. It seems to consistently have a problem on my system. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 04:20:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 05:20:27 +0100 (BST) Subject: [Bug 15068] CardBus not functional, no IRQ, ENE CB1410 CardBus In-Reply-To: Message-ID: <20050910042027.95580303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15068 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|major |normal Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 04:22:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 05:22:05 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050910042205.EB786303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|sysvinit |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 04:23:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 05:23:22 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050910042322.ADF5D303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-10 05:23 UTC ------- Bug #14765 seems like a separate issue; the message you are seeing: [ 363.504485] Restarting system indicates that the kernel is attempting to reboot the hardware. By this time, all processes except init itself have been sent the KILL signal. I don't see how you could still have a shell running at that point. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 09:36:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 10:36:11 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050910093611.13C2F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From bart at samwel.tk 2005-09-10 10:36 UTC ------- The following error: hda: dma_timer_expiry: dma status == 0x21 hda: DMA timeout error was reported on the Linux Kernel mailing list (about a month ago, I think) as starting to occur in version 2.6.11 of the kernel. If you downgrade to 2.6.10, do the hangs still happen? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 10:22:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 11:22:20 +0100 (BST) Subject: [Bug 14757] Data Corruption on AMD64 SATA System with Breezy Badger In-Reply-To: Message-ID: <20050910102220.CF175303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14757 Ubuntu | linux ------- Additional Comments From c-t-b at gmx.de 2005-09-10 11:22 UTC ------- (In reply to comment #3) > I'd really be interested if a stock compile of 2.6.12 shows the problem or not. > I've been noticing a lot of issues lately with amd64's DMA (not just in SATA), > so my first guess is that, but I can't be sure. We also have a lot of libata > patches in current breezy kernels, which may also be the cause. Dear Ben Collins, I'm not totally sure about the meaning of 'stock compile' kernel. If you give me a hint, i'll try. I don't know about the content of patches from libata 1.10 -> 1.11 in the ubuntu kernel. But I guess that this might not the cause because the data corruption happens with former libata version under different linux flavors (SuSE/Fedora). Meanwhile the DMA suggestion sounds good to me cause I discover a new data corruption problem under hoary while sending large files through a LAN (which seems not to be present in breezy - but it's finally not tested so I will post details later). Thanks and bye, Christian -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 10:48:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 11:48:44 +0100 (BST) Subject: [Bug 14898] colony 4 live ppc64 crashes starting gnome desktop on imac g5 In-Reply-To: Message-ID: <20050910104844.7C024303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14898 Ubuntu | linux ------- Additional Comments From bertranddekoninck at wanadoo.fr 2005-09-10 11:48 UTC ------- > Several times during the live cd start up, when the hardware is being detected > and configured, I get the error: > "error while running 'modprove -v sbp2'". > I assume that firewire in this model imac is not fully supported by the kernel? > Continuing through these errors, everything seems to work up until the live > gnome session starts. > Same here on 2*2.0 Ghz G5 tower (latest model), but the install went fine. Not installing this module does not seem to hurt. Bertrand Dekoninck -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 11:42:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 12:42:58 +0100 (BST) Subject: [Bug 15087] New: [breezy] beagle/reiserfs/inotify/AMD64 killed me Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15087 Ubuntu | linux Summary: [breezy] beagle/reiserfs/inotify/AMD64 killed me Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: aurelien at resus.univ-mrs.fr QAContact: kernel-bugs at lists.ubuntu.com not really sure where the problem stands, it looks like a reiserfs problem (I get a kernel stack trace) but it's only triggered when trying to run beagle, perhaps a bad interaction with inotify or Extended Attributes... I'm on an up to date breezy, with kernel 2.6.12-8-amd64-generic, beagle 0.0.13.4-0ubuntu1 (also happened with 0.0.12) I have a RAID5/LVM system with a separate /home beagle used to make my system unusable (I wasn't even able to log in VT, and had to reboot whenever I launched it) so I created a new user and launched beagle for him in VT, and I get a kernel message saying something about reiserfs If I kill all beagle process and try to run it again then the system get blocked (I can switch VT, but not log in or run anything that need read acces to my home) if I move the home of the user outside of /home, it seems to work much better. this really looks like a corrupted FS or a problem with reiser's EA, so I'm going to try to reiserfsck my /home and keep you informed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 11:43:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 12:43:40 +0100 (BST) Subject: [Bug 15087] [breezy] beagle/reiserfs/inotify/AMD64 killed me In-Reply-To: Message-ID: <20050910114340.A9B88303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15087 Ubuntu | linux ------- Additional Comments From aurelien at resus.univ-mrs.fr 2005-09-10 12:43 UTC ------- Created an attachment (id=3678) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3678&action=view) dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 11:45:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 12:45:12 +0100 (BST) Subject: [Bug 15087] [breezy] beagle/reiserfs/inotify/AMD64 killed me In-Reply-To: Message-ID: <20050910114512.D5C0F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15087 Ubuntu | linux ------- Additional Comments From aurelien at resus.univ-mrs.fr 2005-09-10 12:45 UTC ------- Created an attachment (id=3679) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3679&action=view) content of syslog -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 14:15:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 15:15:49 +0100 (BST) Subject: [Bug 14947] Grub removes Windows boot option when NTFS partition needs recovery In-Reply-To: Message-ID: <20050910141549.A36D7303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub ubuntu at paul.sladen.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ubuntu at paul.sladen.org -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 14:53:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 15:53:31 +0100 (BST) Subject: [Bug 14081] SD card in laptop reader does not work In-Reply-To: Message-ID: <20050910145331.3E3B3303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14081 Ubuntu | linux ------- Additional Comments From ubuntu.com at schildbach.de 2005-09-10 15:53 UTC ------- I'm adding the SD card reader of the Dell Latitude X1 to this list, just for completeness. It's either this device: 0000:02:01.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev b3) Subsystem: Dell: Unknown device 01a3 Flags: bus master, medium devsel, latency 168, IRQ 19 Memory at 50000000 (32-bit, non-prefetchable) [size=4K] Bus: primary=02, secondary=03, subordinate=06, sec-latency=176 Memory window 0: 50400000-507ff000 (prefetchable) Memory window 1: 50800000-50bff000 I/O window 0: 00004000-000040ff I/O window 1: 00004400-000044ff 16-bit legacy interface ports at 0001 ...or this device: 0000:02:01.2 0805: Ricoh Co Ltd: Unknown device 0822 (rev 17) (prog-if 01) Subsystem: Dell: Unknown device 01a3 Flags: bus master, medium devsel, latency 64, IRQ 10 Memory at dfcfe700 (32-bit, non-prefetchable) [size=256] Capabilities: -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 15:25:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 16:25:07 +0100 (BST) Subject: [Bug 14898] colony 4 live ppc64 crashes starting gnome desktop on imac g5 In-Reply-To: Message-ID: <20050910152507.B1B06303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14898 Ubuntu | linux ------- Additional Comments From lgrover at zoominternet.net 2005-09-10 16:25 UTC ------- (In reply to comment #2) > The Colony 4 live CD worked on my G5 tower, so this was unexpected. > > Has any previous version of ubuntu live-cd worked on this machine? If so, can > you boot to it and get me an lspci and a complete dmesg. The hoary live CD did not work. The problem is described here: https://bugzilla.ubuntu.com/show_bug.cgi?id=9115 Colony 3 has the same problem as Colony 4. I haven't tried any other Ubuntu live CDs. Here's the output of lspci, grabbed (copied by hand, so there may be mistakes) from an ealier point in the startup, before the ubuntu live session is started: 0000:f0:0b.0 Host bridge: Apple Computer Inc.: Unknown device 0058 0000:f0:10.0 VGA compatible controller: nVidia Corporation NV34M [GeForce FX Go5200] (rev a1) 0001:00:01.0 PCI bridge: Apple Computer Inc.: Unknown device 0053 0001:00:02.0 PCI bridge: Apple Computer Inc.: Unknown device 0054 0001:00:03.0 PCI bridge: Apple Computer Inc.: Unknown device 0055 0001:01:01.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller (rev 03) 0001:01:07.0 ff00: Apple Computer Inc.: Unknown device 004f 0001:01:0b.0 USB Controller: NEC Corporation USB (rev 43) 0001:01:0b.1 USB Controller: NEC Corporation USB (rev 43) 0001:01:0b.2 USB Controller: NEC Corporation USB 2.0 (rev 04) 0001:02:0c.0 IDE interface: ServerWorks: Unknown device 0240 0001:02:0d.0 ff00: Apple Computer Inc.: Unknown device 0050 0001:02:0e.0 Firewire (IEEE 1394): Apple Computer Inc.: Unknown device 0052 0001:03:0f.0 Ethernet controller: Apple Computer Inc.: Unknown device 0051 > Since the period where you are experiencing this problem is well after the CD > has been used a lot, then I can't say it is an IDE driver error. Sounds to me > like the CD drive is having a hard time reading a certain part of the CD (since > it always occurs at the same time). Could be hw, but let's do some testing to be > sure one way or the other. If you need additional information, just let me know what you need and from which point during the live CD startup you need it (keep in mind there's a very limited window of time once the desktop session starts -- but there is enough time to quickly switch over to a console and run a command or two before the system locks up). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 15:32:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 16:32:48 +0100 (BST) Subject: [Bug 12721] Hibernate destroys boot configuration In-Reply-To: Message-ID: <20050910153248.EDD79303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12721 Ubuntu | linux ------- Additional Comments From timlindner at web.de 2005-09-10 16:32 UTC ------- (In reply to comment #4) > Did the kernel misdetect the partition, or did fsck misdetect it and try to run > fsck.ext3? I deleted the system but I remember that it was fsck that printed a ext3 access error. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 15:36:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 16:36:07 +0100 (BST) Subject: [Bug 15087] [breezy] beagle/reiserfs/inotify/AMD64 killed me In-Reply-To: Message-ID: <20050910153607.D3E69303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15087 Ubuntu | linux ------- Additional Comments From aurelien at resus.univ-mrs.fr 2005-09-10 16:36 UTC ------- reiserfsck --clean-attributes went fine but didn't change anything. no error was found on my /home and the bug is still here. PS: obviously it didn't even try to create extended attribute outside /home as all other mountpoints are without the user_xattr option. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 15:44:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 16:44:40 +0100 (BST) Subject: [Bug 14081] SD card in laptop reader does not work In-Reply-To: Message-ID: <20050910154440.E4FE0303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14081 Ubuntu | linux ubuntu.com at schildbach.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ubuntu.com at schildbach.de -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 16:33:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 17:33:47 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050910163347.27538303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-10 17:33 UTC ------- I don't understand it either. If there is any way I could debug the situation - just let me know... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 18:42:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 19:42:54 +0100 (BST) Subject: [Bug 15118] New: Error updating Linux kernel image through "Software Updates" Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15118 Ubuntu | kernel-package Summary: Error updating Linux kernel image through "Software Updates" Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: sgronblo at abo.fi QAContact: kernel-bugs at lists.ubuntu.com The auto-updater wants to update my kernel image (present version 2.6.10-5-386) to a new version (2.6.10-34.5). However the setup fails and gives the following error: E: /var/cache/apt/archives/linux-image-2.6.10-5-386_2.6.10-34.5_i386.deb: unable to make backup link of `./lib/modules/2.6.10-5-386/kernel/drivers/char/drm/drm.ko' before installing new version: Operation not permitted This is the output of the terminal window: Preconfiguring packages ... (Reading database ... 59788 files and directories currently installed.) Preparing to replace linux-image-2.6.10-5-386 2.6.10-34.4 (using .../linux-image-2.6.10-5-386_2.6.10-34.5_i386.deb) ... The directory /lib/modules/2.6.10-5-386 still exists. Continuing as directed. Unpacking replacement linux-image-2.6.10-5-386 ... dpkg: error processing /var/cache/apt/archives/linux-image-2.6.10-5-386_2.6.10-34.5_i386.deb (--unpack): unable to make backup link of `./lib/modules/2.6.10-5-386/kernel/drivers/char/drm/drm.ko' before installing new version: Operation not permitted dpkg-deb: subprocess paste killed by signal (Broken pipe) Searching for GRUB installation directory ... found: /boot/grub . Testing for an existing GRUB menu.list file... found: /boot/grub/menu.lst . Searching for splash image... none found, skipping... Found kernel: /boot/vmlinuz-2.6.10-5-386 Found kernel: /boot/memtest86+.bin Updating /boot/grub/menu.lst ... done Errors were encountered while processing: /var/cache/apt/archives/linux-image-2.6.10-5-386_2.6.10-34.5_i386.deb I am on an Acer Travelmate 430 laptop and have a strange problem where I can't restart the laptop through the OS either. Screen goes dark at the end. This should probably be filed as a separate bug, but I thought it could be worth mentioning that the system doesn't work 100% correctly. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 19:29:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 20:29:05 +0100 (BST) Subject: [Bug 15085] Fan run at full speed on my G5 tower In-Reply-To: Message-ID: <20050910192905.A1BC0303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15085 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 19:36:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 20:36:41 +0100 (BST) Subject: [Bug 15100] Reboot fails in vmware In-Reply-To: Message-ID: <20050910193641.759FE303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15100 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|System hangs after finishing|Reboot fails in vmware |first stage of installation | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 19:41:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 20:41:11 +0100 (BST) Subject: [Bug 15113] madwifi not fully functional after resume? In-Reply-To: Message-ID: <20050910194111.D379E303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15113 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|laptop-mode |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|after |madwifi not fully functional |hibernating/ssuspend2ram |after resume? |wifi interface doesn't get | |ip address | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 19:41:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 20:41:20 +0100 (BST) Subject: [Bug 15113] madwifi not fully functional after resume? In-Reply-To: Message-ID: <20050910194120.80735303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15113 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 19:43:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 20:43:54 +0100 (BST) Subject: [Bug 15118] Error updating Linux kernel image through "Software Updates" In-Reply-To: Message-ID: <20050910194354.CFA9C303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15118 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux ------- Additional Comments From mdz at ubuntu.com 2005-09-10 20:43 UTC ------- The unpacking process, which runs as root, is not able to rename a file. This is impossible in a normal configuration. Is anything printed in dmesg when this happens? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 19:45:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 20:45:30 +0100 (BST) Subject: [Bug 15120] Hang when loading some module In-Reply-To: Message-ID: <20050910194530.518CE303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15120 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|scott-bugs at ubuntu.com |ben.collins at ubuntu.com Severity|critical |major Component|hotplug |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|after reboot , boot process |Hang when loading some |freezes on Starting Hotplug |module |Subsystem line | ------- Additional Comments From mdz at ubuntu.com 2005-09-10 20:45 UTC ------- Boot the system in recovery mode; that should provide more verbose output. Tell us the last 5 or so messages that you see, so that we can tell which module is causing the hang. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 20:54:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 21:54:47 +0100 (BST) Subject: [Bug 15120] Hang when loading some module In-Reply-To: Message-ID: <20050910205447.58299303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15120 Ubuntu | linux ------- Additional Comments From aali at ece.ubc.ca 2005-09-10 21:54 UTC ------- I tried with recovery mode and here are the results: When using reboot and then booting to recovery mode everything looks ok until it reaches to the line: [xxxx.xxxx] ipw2100Error calling register_netdev [xxxx.xxxx] ipw2100: eth1 : Failed to start the card The wierd thig is eth1 is my ethernet card and it's not plugged in my primary network card is eth0 which is the wireless card. I dont know why it is trying to initialize eth1 with ipw2100. I also truned off the computer and powered up in recovery mode to make sure it boots fine which was successful. ps: in one of the trials it also printed a lot of assembly code and trace callback stuff but i dont know anyway to pipe these logs to a file. Feel free to ask for more info. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:01:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:01:05 +0100 (BST) Subject: [Bug 15131] New: USB and Hibernation Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15131 Ubuntu | linux Summary: USB and Hibernation Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: skoobi at free.fr QAContact: kernel-bugs at lists.ubuntu.com Hi, congrats guys for the nearly-working hibernation support on my laptop. Everything works fine except USB.. Here's the scenario : 1) boot normally 2) plug a USB mouse on the laptop 3) Hibernate the computer 4) Reboot the computer with the USB mouse plugged in 5) Everything works fine until this point 6) unplug then replug the USB mouse => the USB mouse is not working anymore... more details about my system : lspci : 0000:00:00.0 Host bridge: Intel Corp. 82852/855GM Host Bridge (rev 02) 0000:00:00.1 System peripheral: Intel Corp. 855GM/GME GMCH Memory I/O Control Registers (rev 02) 0000:00:00.3 System peripheral: Intel Corp. 855GM/GME GMCH Configuration Process Registers (rev 02) 0000:00:02.0 VGA compatible controller: Intel Corp. 82852/855GM Integrated Graphics Device (rev 02) 0000:00:02.1 Display controller: Intel Corp. 82852/855GM Integrated Graphics Device (rev 02) 0000:00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 03) 0000:00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 03) 0000:00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 03) 0000:00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB 2.0 EHCI Controller (rev 03) 0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev 83) 0000:00:1f.0 ISA bridge: Intel Corp. 82801DBM LPC Interface Controller (rev 03) 0000:00:1f.1 IDE interface: Intel Corp. 82801DBM (ICH4) Ultra ATA Storage Controller (rev 03) 0000:00:1f.3 SMBus: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 03) 0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 03) 0000:00:1f.6 Modem: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 03) 0000:01:00.0 FireWire (IEEE 1394): VIA Technologies, Inc. IEEE 1394 Host Controller (rev 80) 0000:01:01.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10) 0000:01:02.0 Network controller: Intel Corp. PRO/Wireless 2200BG (rev 05) 0000:01:04.0 CardBus bridge: ENE Technology Inc CB1410 Cardbus Controller (rev 01) If you need anything else, just ask. Regards, Sami Dalouche -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:02:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:02:17 +0100 (BST) Subject: [Bug 15120] Hang when loading some module In-Reply-To: Message-ID: <20050910210217.A1D71303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15120 Ubuntu | linux ------- Additional Comments From aali at ece.ubc.ca 2005-09-10 22:02 UTC ------- I also forget to add that it will print the second line : [xxxx.xxxx] ipw2100: eth1 : Failed to start the card in an infinite loop. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:03:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:03:46 +0100 (BST) Subject: [Bug 14489] Sound looping on VIA chipset without "noapic" In-Reply-To: Message-ID: <20050910210346.1B61F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14489 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-10 22:03 UTC ------- This really isn't a kernel problem per se; it's a chipset problem. I had the exact symptoms you described, and with older versions of ACPI in the kernel the chipset problem was being masked. Newer versions of ACPI simply expose the problem more fitfully. (KT133* are horrible pieces of junk.) You can verify by either disabling ACPI and booting without noapic or by booting with pci=noacpi. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:12:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:12:02 +0100 (BST) Subject: [Bug 14827] Garbled sound In-Reply-To: Message-ID: <20050910211202.4979A303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-10 22:12 UTC ------- What is the load average while listening to a music file with the external USB CD-ROM plugged in? Also, please attach the output from ''dmesg''. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:21:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:21:34 +0100 (BST) Subject: [Bug 14489] Sound looping on VIA chipset without "noapic" In-Reply-To: Message-ID: <20050910212134.4A609303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14489 Ubuntu | linux ------- Additional Comments From gjc at inescporto.pt 2005-09-10 22:21 UTC ------- Well, you could be right. I just openend the Wiki page, tried the first suggestion listed there, which was noapic, and it worked, so I reported back. I'm going to try noacpi instead of noapic and see if you're right. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:24:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:24:41 +0100 (BST) Subject: [Bug 15110] No swap for hibernation In-Reply-To: Message-ID: <20050910212441.4FB08303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15110 Ubuntu | linux fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|partman-auto-lvm |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:25:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:25:42 +0100 (BST) Subject: [Bug 15110] No swap for hibernation In-Reply-To: Message-ID: <20050910212542.6E9B6303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15110 Ubuntu | linux ------- Additional Comments From fabbione at ubuntu.com 2005-09-10 22:25 UTC ------- (In reply to comment #3) > Hello, > > In fact, I'm not sure you're swap is regular, see : > > $ mount > /dev/mapper/Ubuntu-root on / type ext3 (rw,errors=remount-ro) > proc on /proc type proc (rw) > sysfs on /sys type sysfs (rw) > devpts on /dev/pts type devpts (rw,gid=5,mode=620) > tmpfs on /dev/shm type tmpfs (rw) > usbfs on /proc/bus/usb type usbfs (rw) > tmpfs on /lib/modules/2.6.12-8-386/volatile type tmpfs (rw) > /dev/hda1 on /boot type ext3 (rw) > tmpfs on /dev type tmpfs (rw,size=10M,mode=0755) > none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) swap is not a mounted partition you see with mount. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:26:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:26:51 +0100 (BST) Subject: [Bug 15110] No swap for hibernation In-Reply-To: Message-ID: <20050910212651.40DA7303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15110 Ubuntu | linux fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC|fabbione at ubuntu.com | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:29:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:29:44 +0100 (BST) Subject: [Bug 15113] madwifi not fully functional after resume? In-Reply-To: Message-ID: <20050910212944.D64A6303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15113 Ubuntu (laptop) | linux ------- Additional Comments From sh at sourcecode.de 2005-09-10 22:29 UTC ------- well.. i don't think it has anything todo with the kernel, cause the interface is there (ath0) only dhcp renew doesn't work. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 21:34:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 10 Sep 2005 22:34:15 +0100 (BST) Subject: [Bug 14489] Sound looping on VIA chipset without "noapic" In-Reply-To: Message-ID: <20050910213415.CE5C8303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14489 Ubuntu | linux ------- Additional Comments From gjc at inescporto.pt 2005-09-10 22:34 UTC ------- The option 'pic=noacpi' instead of 'noapic' worked as well. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 23:16:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 00:16:49 +0100 (BST) Subject: [Bug 15113] madwifi not fully functional after resume? In-Reply-To: Message-ID: <20050910231649.9CD86303C03D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15113 Ubuntu (laptop) | linux ------- Additional Comments From sh at sourcecode.de 2005-09-11 00:16 UTC ------- Ok, I think I have the mistake: in /etc/acpi/resume.sh # Bring up the interfaces (this should probably be left up to some policy # manager, but at the moment we just bring back whatever we ifdowned) #for x in $INTERFACES; do # ifup $x; #done # Actually, we don't for the moment - we end up waiting for things to time out # because multiple ifups want to write to the state file and it's locked. We # need a better way of doing this - for now just bring back up whatever is # flagged as auto ifup -a & my wifi device is not in /etc/network/interfaces and not flagged as auto... so this is issue.... but this should not be the correct way of resuming. I think we should save the state of the running devices and resume them later as it was before suspend2ram or hibernating. regards, \sh -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 23:19:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 00:19:48 +0100 (BST) Subject: [Bug 15120] Hang when loading ipw2100 In-Reply-To: Message-ID: <20050910231948.97896303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15120 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Hang when loading some |Hang when loading ipw2100 |module | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 10 23:42:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 00:42:05 +0100 (BST) Subject: [Bug 15118] Error updating Linux kernel image through "Software Updates" In-Reply-To: Message-ID: <20050910234205.98D2F303C03E@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15118 Ubuntu | linux ------- Additional Comments From sgronblo at abo.fi 2005-09-11 00:42 UTC ------- (In reply to comment #1) > The unpacking process, which runs as root, is not able to rename a file. This > is impossible in a normal configuration. > > Is anything printed in dmesg when this happens? I'm not used to looking through dmesg output. Is there anything in particular i should be looking for? Also it seems I can only make dmesg display the diagnostic messages during bootup. There doesn't seem to be any messages related to anything that happened during my running of gnome and any other applications. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 02:18:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 03:18:34 +0100 (BST) Subject: [Bug 14284] sk98lin driver needs updating In-Reply-To: Message-ID: <20050911021834.8788422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14284 Ubuntu | linux ------- Additional Comments From lionknight at lionknight.net 2005-09-11 03:18 UTC ------- I'm under i386 platform but the problem is the same. I cannot install the driver of my marvell yukon gigabit express ethernet card. So, I tried to patch the kernel 2.6.12 from ubuntu with the latest driver from syskonect (sk98lin 8.23) because the skge module didn't worked at all, the install didn't worked because of missing rules or something, so I tried in manual mode and patch the kernel with the generated patch, and It didn't worked too. So I'm under linux without any abillity to surf on the internet, and also to upgrade my breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 04:03:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 05:03:32 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050911040332.76CE222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-11 05:03 UTC ------- (In reply to comment #58) > The following error: > > hda: dma_timer_expiry: dma status == 0x21 > hda: DMA timeout error > > was reported on the Linux Kernel mailing list (about a month ago, I think) as > starting to occur in version 2.6.11 of the kernel. If you downgrade to 2.6.10, > do the hangs still happen? This bug has been around since well before the release of Hoary (with Linux 2.6.10), so it's definitely been seen in older kernels as well. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 07:45:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 08:45:42 +0100 (BST) Subject: [Bug 15156] New: Skystar2 not working on breezy/2.6.12-* Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15156 Ubuntu | linux Summary: Skystar2 not working on breezy/2.6.12-* Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: sepreh at gmx.de QAContact: kernel-bugs at lists.ubuntu.com Since the update to breezy with kernel 2.6.12 my SkyStar2 refuses to work. After bootup, udev doesn't put up the correct device names (only /dev/dvb0.demux0, not /dev/dvb/adapter0/*). After a restart, the /dev/dvb/adapter* links are there, but still frontend0 is missing. The kernel log gives me: [4294718.822000] b2c2-flexcop: B2C2 FlexcopII/II(b)/III digital TV receiver chip loaded successfully [4294718.832000] flexcop-pci: will use the HW PID filter. [4294718.832000] flexcop-pci: card revision 1 [4294718.832000] ACPI: PCI Interrupt Link [APC1] enabled at IRQ 16 [4294718.832000] ACPI: PCI Interrupt 0000:01:06.0[A] -> Link [APC1] -> GSI 16 (level, high) -> IRQ 16 [4294718.832000] DVB: registering new adapter (FlexCop Digital TV device). [4294718.845000] b2c2-flexcop: MAC address = 00:d0:d7:02:69:ec [4294718.847000] b2c2-flexcop: i2c master_xfer failed [4294719.048000] b2c2-flexcop: i2c master_xfer failed [4294719.048000] b2c2-flexcop: i2c master_xfer failed [4294719.048000] mt352_read_register: readreg error (reg=127, ret==-121) [4294719.048000] b2c2-flexcop: i2c master_xfer failed [4294719.048000] i2c_readbytes: i2c read error (addr 0a, err == -121) [4294719.049000] b2c2-flexcop: i2c master_xfer failed [4294719.049000] stv0297_readreg: readreg error (reg == 0x80, ret == -22) [4294719.049000] b2c2-flexcop: i2c master_xfer failed [4294719.049000] mt312_read: ret == -121 [4294719.049000] b2c2-flexcop: no frontend driver found for this B2C2/FlexCop adapter [4294719.115000] ACPI: PCI interrupt for device 0000:01:06.0 disabled [4294719.168000] ACPI: PCI Interrupt 0000:01:06.0[A] -> Link [APC1] -> GSI 16 (level, high) -> IRQ 16 [4294719.194000] drivers/media/dvb/b2c2/skystar2.c: FlexCopII(rev.130) chip found [4294719.194000] drivers/media/dvb/b2c2/skystar2.c: the chip has 6 hardware filters [4294719.320000] driver_initialize MAC address = 00:d0:d7:02:69:ec:00:00 [4294719.320000] DVB: registering new adapter (SkyStar2). [4294719.529000] i2c_readbytes: i2c read error (addr 0a, err == -121) [4294720.115000] mt352_read_register: readreg error (reg=127, ret==-121) [4294720.243000] mt312_read: ret == -121 [4294720.243000] skystar2: A frontend driver was not found for device 13d0/2103 subsystem 13d0/2103 So, the frontend driver isn't found. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 07:46:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 08:46:29 +0100 (BST) Subject: [Bug 15156] Skystar2 not working on breezy/2.6.12-* In-Reply-To: Message-ID: <20050911074629.24AAD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15156 Ubuntu | linux sepreh at gmx.de changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |blocker -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 08:08:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 09:08:06 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050911080806.D0B2322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux fbn at thelogic.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From fbn at thelogic.org 2005-09-11 09:08 UTC ------- I have the same issue on my system with onboard sound Intel High Definition Audio / Realtek ALC880. Installation was successful but during the first boot system stops at Starting hotplug subsystem. If I disable the onboard sound in the BIOS booting is fine (but without sound). I don't know how to copy the boot messages in case of the error because no log entries are written at this time, here is what I've written off: Oops: 0002 [#1] Modules linked in: snd_hda_intel snd_hda_codec snd_pcm_oss ... ... some kernel messages here ... Process modprobe (pid: 4948, threadinfo=f7fac000 task=df9fe520) Stack: .... ... more kernel messages here ... <3>hw_random: RNG not detected Tested with the Ubuntu Hoary 5.10 installation CD. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 08:08:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 09:08:32 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050911080832.5551222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux fbn at thelogic.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |fbn at thelogic.org -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 08:28:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 09:28:35 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050911082835.BEEE522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From federico.tolomei at gmail.com 2005-09-11 09:28 UTC ------- Same problem with Breezy Preview LiveCD. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 08:48:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 09:48:55 +0100 (BST) Subject: [Bug 11541] No framebuffer for sis chipset In-Reply-To: Message-ID: <20050911084855.C858A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11541 Ubuntu | linux ------- Additional Comments From joerg.unglaub at gmail.com 2005-09-11 09:48 UTC ------- (In reply to comment #9) > Hi, > > The same remark apply to d-i. Note that i'm not able to install ubuntu on this > laptop with defaults options as d-i automatically load vga16fb ... This is not > very user friendly ! > > Thanks. (In reply to comment #8) > According to Thomas Winnishhofer, the sis chipset should not work with vga16fb > (http://lists.debian.org/debian-boot/2003/12/msg01084.html) but only with vesafb > or sisfb. > > Do we will allow to choose the fb driver in the initramfs ? Does usplash work > with vesafb in the future ? > > Thanks. usplash workes for me on sisfb after a i patched usplash. it is very special for my laptop but see Bug 15039 and reed the further comments. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 10:25:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 11:25:26 +0100 (BST) Subject: [Bug 11541] No framebuffer for sis chipset In-Reply-To: Message-ID: <20050911102526.BDFB822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11541 Ubuntu | linux ------- Additional Comments From bersace03 at free.fr 2005-09-11 11:25 UTC ------- Hello, Yes, i reported this bug ! :) Thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 11:01:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 12:01:05 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8319too) In-Reply-To: Message-ID: <20050911110105.7D33522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux kaaloo at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From kaaloo at gmail.com 2005-09-11 12:01 UTC ------- I have this problem too with the 2.6.12-8-686 kernel on latest breezy. Everything works well with the 2.6.10-5-686 kernel. I'm on an Aspire 2003WLMi laptop with the ipw2100. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 11:13:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 12:13:12 +0100 (BST) Subject: [Bug 14489] Sound looping on VIA chipset without "noapic" In-Reply-To: Message-ID: <20050911111312.42AAC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14489 Ubuntu | linux ------- Additional Comments From gjc at inescporto.pt 2005-09-11 12:13 UTC ------- I just got a complete kernel freeze, after less than an hour uptime :| /me going back to noapic. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 13:11:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 14:11:24 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050911131124.E07EC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-11 14:11 UTC ------- This problem persists in Breezy-preview 2005-09-09 Should hotplug load the i82365 module? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 15:43:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 16:43:43 +0100 (BST) Subject: [Bug 15184] New: Powerbook special keys not working on newer powerbooks Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15184 Ubuntu | linux Summary: Powerbook special keys not working on newer powerbooks Product: Ubuntu Version: unspecified Platform: powerpc OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: harry at bnro.de QAContact: kernel-bugs at lists.ubuntu.com adb detection detects nothing on Powerbooks >= Feb2005. On my older Powerbook Ti, /var/log/messages has this info: Sep 11 12:04:29 localhost kernel: [ 29.111054] adb: starting probe task... Sep 11 12:04:29 localhost kernel: [ 29.112165] PCI: Enabling device 0002:24:0d.0 (0000 -> 0002) Sep 11 12:04:29 localhost kernel: [ 29.370648] ADB keyboard at 2, handler 1 Sep 11 12:04:29 localhost kernel: [ 29.370656] Detected ADB keyboard, type ISO, swapping keys. Sep 11 12:04:29 localhost kernel: [ 29.370696] input: ADB keyboard on adb2:2.c4/input Sep 11 12:04:29 localhost kernel: [ 29.370724] input: ADB Powerbook buttons on adb7:7.1f/input Sep 11 12:04:29 localhost kernel: [ 29.385907] ADB mouse at 3, handler set to 4 (trackpad) Sep 11 12:04:29 localhost kernel: [ 29.446049] input: ADB mouse on adb3:3.01/input Sep 11 12:04:29 localhost kernel: [ 29.446054] adb: finished probe task... On the newer powerbook, I'm only getting the starting/finished probe task messages, but nothing is detected. Thus, the Powerbook special keys and the touchpad are not working. I could fix the touchpad with the information from Bug 7904, though. Without the PowerBook special keys, there's no way to press PageUp, PageDown, Home/End and some others, so this is pretty anoying :( Note - both PowerBooks run the current Breezy (updated today). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 15:43:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 16:43:53 +0100 (BST) Subject: [Bug 14284] sk98lin driver needs updating In-Reply-To: Message-ID: <20050911154353.C6DC622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14284 Ubuntu | linux ------- Additional Comments From lionknight at lionknight.net 2005-09-11 16:43 UTC ------- new bug, I'm lucky the sk98lin installation works under the preview release of breezy, BUT I made a dist-upgrade, and after that, I don't know why, I cant connect to the internet, my card is detected, activated, but It's like it is vitually disconnected. I don't know how to get back my connection. lsmod is good, but error message in dmesg log. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 15:55:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 16:55:01 +0100 (BST) Subject: [Bug 15184] Powerbook special keys not working on newer powerbooks In-Reply-To: Message-ID: <20050911155501.537C422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15184 Ubuntu | linux ------- Additional Comments From harry at bnro.de 2005-09-11 16:55 UTC ------- This page has the kernel patch needed to fix the fn key: http://johannes.sipsolutions.net/PowerBook/special_buttons Also, newer version of pbbuttonsd have the necessary fixes, it would be nice if breezy/final could ship with at least pbbuttonsd 0.6.8. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 16:56:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 17:56:43 +0100 (BST) Subject: [Bug 14827] Garbled sound In-Reply-To: Message-ID: <20050911165643.6A66822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux ------- Additional Comments From spd106 at lycos.co.uk 2005-09-11 17:56 UTC ------- (In reply to comment #3) > What is the load average while listening to a music file with the external USB > CD-ROM plugged in? > > Also, please attach the output from ''dmesg''. The average cpu load is about 10%. I plugged in the usb cd-rom drive and played track using cd player and here is the output from dmesg [29735.950686] usb 1-1: new full speed USB device using uhci_hcd and address 3 [29741.714585] SCSI subsystem initialized [29741.910598] Initializing USB Mass Storage driver... [29741.917147] scsi0 : SCSI emulation for USB Mass Storage devices [29741.922214] usb-storage: device found at 3 [29741.922228] usb-storage: waiting for device to settle before scanning [29741.922762] usbcore: registered new driver usb-storage [29741.922773] USB Mass Storage support registered. [29746.953832] Vendor: GENERIC Model: FREECOM24B Rev: 1.51 [29746.953864] Type: CD-ROM ANSI SCSI revision: 00 [29746.969507] usb-storage: device scan complete [29747.291747] sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray [29747.296223] Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0 [29747.382035] Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0, type 5 [29822.692112] sg_write: data in/out 56/56 bytes for SCSI command 0x12--guessing data in; [29822.692121] program gnome-cd not setting count and/or reply_len properly [29822.696753] sg_write: data in/out 26/26 bytes for SCSI command 0x5a--guessing data in; [29822.696762] program gnome-cd not setting count and/or reply_len properly [29822.699265] sg_write: data in/out 12/12 bytes for SCSI command 0x43--guessing data in; [29822.699273] program gnome-cd not setting count and/or reply_len properly [29822.702209] sg_write: data in/out 12/12 bytes for SCSI command 0x43--guessing data in; [29822.702216] program gnome-cd not setting count and/or reply_len properly [29822.707658] sg_write: data in/out 12/12 bytes for SCSI command 0x43--guessing data in; [29822.707666] program gnome-cd not setting count and/or reply_len properly [29822.710455] sg_write: data in/out 12/12 bytes for SCSI command 0x43--guessing data in; [29822.710463] program gnome-cd not setting count and/or reply_len properly [29822.713181] sg_write: data in/out 12/12 bytes for SCSI command 0x43--guessing data in; [29822.713189] program gnome-cd not setting count and/or reply_len properly [29822.716653] sg_write: data in/out 2352/2352 bytes for SCSI command 0xbe--gues sing data in; [29822.716662] program gnome-cd not setting count and/or reply_len properly [29824.273579] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29824.273589] program gnome-cd not setting count and/or reply_len properly [29824.376889] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29824.376899] program gnome-cd not setting count and/or reply_len properly [29827.713847] printk: 33 messages suppressed. [29827.713867] sg_write: data in/out 16464/16464 bytes for SCSI command 0xbe--gu essing data in; [29827.713874] program gnome-cd not setting count and/or reply_len properly [29833.370599] printk: 24 messages suppressed. [29833.370621] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29833.370628] program gnome-cd not setting count and/or reply_len properly [29837.711594] printk: 34 messages suppressed. [29837.711615] sg_write: data in/out 16464/16464 bytes for SCSI command 0xbe--gu essing data in; [29837.711622] program gnome-cd not setting count and/or reply_len properly [29843.365613] printk: 24 messages suppressed. [29843.365634] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29843.365641] program gnome-cd not setting count and/or reply_len properly [29847.706922] printk: 32 messages suppressed. [29847.706941] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29847.706948] program gnome-cd not setting count and/or reply_len properly [29853.426312] printk: 26 messages suppressed. [29853.426332] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29853.426339] program gnome-cd not setting count and/or reply_len properly [29857.695654] printk: 32 messages suppressed. [29857.695765] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29857.695772] program gnome-cd not setting count and/or reply_len properly [29863.415535] printk: 26 messages suppressed. [29863.415555] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29863.415562] program gnome-cd not setting count and/or reply_len properly [29867.690799] printk: 30 messages suppressed. [29867.691091] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29867.691098] program gnome-cd not setting count and/or reply_len properly [29873.483442] printk: 28 messages suppressed. [29873.483462] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29873.483469] program gnome-cd not setting count and/or reply_len properly [29877.700584] printk: 30 messages suppressed. [29877.700604] sg_write: data in/out 30576/30576 bytes for SCSI command 0xbe--gu essing data in; [29877.700611] program gnome-cd not setting count and/or reply_len properly stephen at dagger:~$ Thanks for the help. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 17:28:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 18:28:54 +0100 (BST) Subject: [Bug 15188] New: Installing new kernel-images via apt corrupts menu.lst entries Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15188 Ubuntu | linux Summary: Installing new kernel-images via apt corrupts menu.lst entries Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: sebastian_latz at yahoo.de QAContact: kernel-bugs at lists.ubuntu.com Every time I install/remove a new kernel image via apt (... based tools), my /boot/grub/menu.lst gets corrupted. Always the last entry gets removed. On my machine its the chainloader derictive to boot windows xp. "Normal" entries didn't seem to get removed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 18:04:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 19:04:35 +0100 (BST) Subject: [Bug 14115] Doesn't create modules until next reboot In-Reply-To: Message-ID: <20050911180435.70F1622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14115 Ubuntu | linux-restricted-modules seb128 at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |seb128 at ubuntu.com ------- Additional Comments From seb128 at ubuntu.com 2005-09-11 19:04 UTC ------- Daniel, you marked this as PENDINGUPLOAD. Do you know what is wrong and how to fix it? A friend just updated his hoary and got his box broken by this, what is the right fix? Do you intend to upload a fixed version this week? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 19:39:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 20:39:28 +0100 (BST) Subject: [Bug 15199] New: Ports on localhost doesn't work Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | kernel-package Summary: Ports on localhost doesn't work Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: lean-please-dont-share-my-email-ubuntu at omnia.dk QAContact: kernel-bugs at lists.ubuntu.com My hardware ID is: afde5fca416a8deb611c8306b9f715ec. Whenever a program tries to create a local port only, it fails. This is seen in gnome-cups-manager, which cannot connect to the printer server. It is also seen in other external programs like freenet and azureus, which creates a local server, where the client can connect to. The hardware database doesn't seem to work, my netcard is: 0000:00:0b.0 Ethernet controller: Broadcom Corporation NetXtreme BCM5788 Gigabit Ethernet (rev 03) on an acer ferrari 3200 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 19:42:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 20:42:20 +0100 (BST) Subject: [Bug 14827] Garbled sound In-Reply-To: Message-ID: <20050911194220.6C8EB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-11 20:42 UTC ------- (In reply to comment #1) > Oops I was mistaken. This problem does exist in hoary and breezy colony-3. I > have installed xmms on hoary and when I change the output plugin to libALSA.so > the sound seems fine. It also works fine through the libOSS.so plugin. So it's > the libesdout.so plugin where the playback is dodgy. > > CD Player, Totem and Music Player (Rhythmbox) are affected and Realplayer seems > to be unaffected. > > Steve > I presume you imply that the ALSA and OSS output plugins in XMMS both work fine regardless whether the external USB CD-ROM is connected? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 20:17:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 21:17:13 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050911201713.6119E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From gouchi at gmail.com 2005-09-11 21:17 UTC ------- Same here using LivecD Breezy Colony 4, Ubuntu 5.10 Preview LiveCD and upgrade to Breezy. Here is the log : [4294909.799000] [4294909.799000] oops : 0002[#1] Modules linked in : snd_hda_intel snd_hda_codec snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd soundcore snd_page_alloc shpchp pci_hotplug intel_agp agpgart psmouse lp mod ipv6 dm_snapshot dm_mod loop cloop af_packet ipw2200 firmware_class ieee80211_crypt skge nsl_cp437 pcmcia sr_mod sbp2 isofs ide_cd cdrom ide_disk ide_floppy ide_generic pdc202xx_new aec62xx alim15x3 amd74 atiixp cmd64x cs5520 cs5530 cy82c693 generic hpt34x ns87415 opti621 pdc202xx old rz1000 sc1200 serverworks siimage sis5513 slc90e66 triflex trù290 via82cxxx usb_storage scsi_mod parport_pc parport mousedev fbcon tileblit font bitblit vga16fb vgastate vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor usbserial usbkbd thermal processor fan usbhid ohci1394 ieee1394 yenta_socket rsrc_nonstatic pcmcia_core piix ide_core ehci_hcd uhci_hcd usbcore evdev unix [4294909.799000] CPU : [w]0 [4294909.799000] EIP : [] Not tainted VLI [4294909.799000] EFLAGS : 00010246 (2.6.12-8-386) [4294909.799000] EIP is at alc880_auto_fill_dac_nids+0x39/0x92 [snd_hda_codec] [4294909.799000] eax : 00000000 ebx : deb67748 ecx : 00000000 edx : fffffffe [4294909.799000] esi : deb67600 edi : 00000000 dbp : dd501000 esp : de937e1c [4294909.799000] ds : 007b es 007b ss : 0068 [4294909.799000] Process modprobe (pid : 21982, threadinfo=de936000 task=dde22060) [4294909.799000] stack : 00000000 00000000 00000000 00000000 deb67600 deb67748 00000006 e0e549f0 [4294909.799000] : deb67600 deb67748 dev67600 dd501000 e0e54b49 dd501000 dd050100 [4294909.799000] : d3586480 00000000 e0e517a1 dd501000 00001007 d358b40 e0e5cb04 d358b480 [4294909.799000] : Call Trace : [4294909.799000] [] alc_880_parse_auto_config+0x27/0xda [snd_hda_codec] [4294909.799000] [] patch_alc880+0x82/0x1e7 [snd_hda_codec] [4294909.799000] [] snd_hda_codec_new+0x13f/0x18f [snd_hda_codec] [4294909.799000] [] azx_codec_create+0x73/0xa1 [snd_hda_intel] [4294909.799000] [] azx_send_cmd+0x0/0x60 [snd_hda_intel] [4294909.799000] [] azx_get_response+0x0/0x5b [snd_hda_intel] [4294909.799000] [] azx_probe+0xdc/0x150 [snd_hda_intel] [4294909.799000] [] pci_device_probe_static+0x2e/0x41 [4294909.799000] [] __pci_device_probe+0x1f/0x32 [4294909.799000] [] pci_device_probe+0x1c/0x31 [4294909.799000] [] driver_probe_device+0x36/0x54 [4294909.799000] [] driver_attach+0x39/0x6a [4294909.799000] [] bus_add_driver+0x5e/0x80 [4294909.799000] [] driver_register+0x23/0x25 [4294909.799000] [] pci_register_driver+0x5f/0x72 [4294909.799000] [] alsa_card_azx_init+0xa/0xc [snd_hda_intel] [4294909.799000] [] sys_init_module+0xb5/0x172 [4294909.799000] [] sysenter_past_esp+0x54/0x75 [4294909.799000] Code : 74 24 20 8b 5c 24 24 89 e7 f3 ab 31 ff 3b 3b 7d 28 0f b7 54 7b 04 8d 42 ec 66 83 f8 03 77 17 0f b7 c2 8b 4e 3c 83 e8 14 8d 50 fe <66> 89 14 79 c7 04 84 01 00 00 00 47 eb d4 31 ff 8b 13 39 d7 7d [4294909.799000] <3> hw_random : RNG not detected. lspci -v | grep audio 0000:00:1b.0 0403: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 03) sorry dunno how to use ksymoops. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 20:26:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 21:26:35 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050911202635.E6CF422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux crimsun at fungus.sh.nu changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:10:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:10:42 +0100 (BST) Subject: [Bug 15156] Skystar2 not working on breezy/2.6.12-* In-Reply-To: Message-ID: <20050911211042.F410222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15156 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|blocker |normal -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:25:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:25:25 +0100 (BST) Subject: [Bug 15161] Bad and weak sound on G5 powermac In-Reply-To: Message-ID: <20050911212525.C16FB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15161 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|alsa-driver |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:25:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:25:39 +0100 (BST) Subject: [Bug 15162] G5 freezes at shutdown or reboot In-Reply-To: Message-ID: <20050911212539.BD07122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15162 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:29:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:29:00 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050911212900.3B43422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |scott-bugs at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:31:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:31:47 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8319too) In-Reply-To: Message-ID: <20050911213147.9ED9D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major ------- Additional Comments From mdz at ubuntu.com 2005-09-11 22:31 UTC ------- Regression from Hoary, increasing severity -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:34:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:34:28 +0100 (BST) Subject: [Bug 15184] Powerbook special keys not working on newer powerbooks In-Reply-To: Message-ID: <20050911213428.E4B9722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15184 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:37:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:37:36 +0100 (BST) Subject: [Bug 15188] Default update-grub behaviour is not intuitive In-Reply-To: Message-ID: <20050911213736.4BC7222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15188 Ubuntu | grub mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |debzilla at ubuntu.com Component|linux |grub Summary|Installing new kernel-images|Default update-grub |via apt corrupts menu.lst |behaviour is not intuitive |entries | ------- Additional Comments From mdz at ubuntu.com 2005-09-11 22:37 UTC ------- You must place custom entries according to the instructions in the comments in menu.lst -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:40:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:40:14 +0100 (BST) Subject: [Bug 14115] Doesn't create modules until next reboot In-Reply-To: Message-ID: <20050911214014.00EE722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14115 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mdz at ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-11 22:40 UTC ------- (In reply to comment #7) > Daniel, you marked this as PENDINGUPLOAD. Do you know what is wrong and how to > fix it? A friend just updated his hoary and got his box broken by this, what is > the right fix? The (trivial) fix is explained in comment #3 (In reply to comment #6) > Here is is my fstab, and output of mount command. > > $ cat /etc/fstab > # /etc/fstab: static file system information. > # > # > proc /proc proc defaults 0 0 > /dev/hda5 / ext3 noatime,errors=remount-ro 0 1 > /dev/hda1 /boot ext2 defaults 0 2 > /dev/hda6 /home reiserfs noatime,user_xattr 0 2 > /dev/hda7 /tmp ext3 noatime,nodev,nosuid 0 2 > /dev/hda11 /usr ext3 noatime 0 2 > /dev/hda10 /var ext3 noatime 0 2 > /dev/hda8 none swap sw 0 0 > /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0 > /dev/hdd /media/cdrom1 udf,iso9660 user,noauto 0 0 > /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 > > $mount > /dev/hda5 on / type ext3 (rw,noatime,errors=remount-ro) > proc on /proc type proc (rw) > sysfs on /sys type sysfs (rw) > devpts on /dev/pts type devpts (rw,gid=5,mode=620) > tmpfs on /dev/shm type tmpfs (rw) > usbfs on /proc/bus/usb type usbfs (rw) > tmpfs on /lib/modules/2.6.12-7-386/volatile type tmpfs (rw) > /dev/hda1 on /boot type ext2 (rw) > /dev/hda6 on /home type reiserfs (rw,noatime,user_xattr) > /dev/hda7 on /tmp type ext3 (rw,nosuid,nodev,noatime) > /dev/hda11 on /usr type ext3 (rw,noatime) > /dev/hda10 on /var type ext3 (rw,noatime) > tmpfs on /dev type tmpfs (rw,size=10M,mode=0755) > none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) > > noatime on / and /var seems like a bad idea to me. Unless you are running on a flash filesystem or otherwise cannot tolerate disk writes, don't do this. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 21:45:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 22:45:20 +0100 (BST) Subject: [Bug 15199] Ports on localhost doesn't work In-Reply-To: Message-ID: <20050911214520.7192C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |debzilla at ubuntu.com Component|kernel-package |UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-11 22:45 UTC ------- It sounds like your loopback network interface (lo) is not configured. The installer configures it initially, so something must have broken it since then. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 22:01:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 23:01:23 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050911220123.5EB5022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux ------- Additional Comments From martinalderson at gmail.com 2005-09-11 23:01 UTC ------- Is there any update on this? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 22:12:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 23:12:57 +0100 (BST) Subject: [Bug 15212] New: compatibility issues between kernel 2.6.12 and pwc in universe Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15212 Ubuntu | kernel-package Summary: compatibility issues between kernel 2.6.12 and pwc in universe Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: mjpowersjr at gmail.com QAContact: kernel-bugs at lists.ubuntu.com There are compatibility issues between the pwc-source package and the 2.6.12 kernel. The pwc module is requried for many phillips based webcams (many popular logitech webcams are phillips based). I have ran into this problem with my Logitech QuickCam Orbit. Below is a summary of the problem, and my current fix. Background: My webcam is a Logitech Quickcam Orbit, it uses the pwc kernel module. I downloaded and suscessfully compiled the pwc-source module from universe, along with libpt-plugins-v4l. When I plug in the camera, it creates a new device /dev/video1, and GnomeMeeting seems to detect the device just fine. Problem: The problem is when enabling the webcam GnomeMeeting, the red light on the camera comes on, but a flat gray image is displayed instead of the video stream from the webcam. Tracked down a bit more info on the problem. Grey output is a known issue on the 2.6.12 kernel. I found a fedora bugzilla report on the issue [1] as well as information on the pwc driver mailing list from August [2]. I'm not sure when this plans to be fixed, but their is a workaround (worked for me anyway). 1) Download pwc-10.0.7a.tar.bz2 from the pwc website [3] 2) rmmod pwc #remove the old module, if loaded. 3) Decompress the file, make, and make install the new module. 4) modprobe pwc # load the new module 5) unplug, and plug back in your usb webcam, and your good to go ------------------------------------------------------- [1] fedora bugzilla - https://bugzilla.redhat.com/bugzill...g.cgi?id=159608 [2] psc mailing list - http://lists.saillard.org/pipermail...ust/thread.html [3] pwc website - http://www.saillard.org/linux/pwc/files/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 22:18:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 23:18:01 +0100 (BST) Subject: [Bug 15212] compatibility issues between kernel 2.6.12 and pwc in universe In-Reply-To: Message-ID: <20050911221801.ECFC322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15212 Ubuntu | kernel-package ------- Additional Comments From mdz at ubuntu.com 2005-09-11 23:18 UTC ------- This sounds like a problem with the pwc driver (which is in universe, and should have its bugs filed in Malone), rather than with the kernel. Do you have any information to the contrary? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 22:19:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 11 Sep 2005 23:19:32 +0100 (BST) Subject: [Bug 15105] Scan mode not supported on Dell Truemobile 1150 In-Reply-To: Message-ID: <20050911221932.7C41922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15105 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|normal |enhancement Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-11 23:19 UTC ------- Which driver is used for your wireless device? Send the output of "lsmod" if you aren't sure. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 23:04:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 00:04:42 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050911230442.B238322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux ------- Additional Comments From obiwan at mailmij.org 2005-09-12 00:04 UTC ------- in reply to the last messages: this particular bug (the cdrom polling one, this tread has been polluted with another bug a bit) only happens (AFAIK) on ibook G3. The G4 seems to have a different drive which is not affected by this problem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 11 23:15:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 00:15:18 +0100 (BST) Subject: [Bug 15184] Powerbook special keys not working on newer powerbooks In-Reply-To: Message-ID: <20050911231518.55E0322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15184 Ubuntu (laptop) | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.pitt at ubuntu.com Severity|normal |critical Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 01:30:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 02:30:17 +0100 (BST) Subject: [Bug 14115] Doesn't create modules until next reboot In-Reply-To: Message-ID: <20050912013017.DA22922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14115 Ubuntu | linux-restricted-modules ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-12 02:30 UTC ------- (In reply to comment #7) > Daniel, you marked this as PENDINGUPLOAD. Do you know what is wrong and how to > fix it? A friend just updated his hoary and got his box broken by this, what is > the right fix? Do you intend to upload a fixed version this week? yeah, hoping to get to the fixed version today; was busy with xorg preview stuff all last week. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 01:39:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 02:39:07 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050912013907.1D3F422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From zulcss at gmail.com 2005-09-12 02:39 UTC ------- No I have been busy with work related commitments -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 03:21:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 04:21:09 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer REQUIRES vga=771 to function In-Reply-To: Message-ID: <20050912032109.2195822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|normal |major Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 04:08:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 05:08:17 +0100 (BST) Subject: [Bug 15228] New: Reiser crash Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15228 Ubuntu | linux Summary: Reiser crash Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: skoobi at free.fr QAContact: kernel-bugs at lists.ubuntu.com Since I upgraded to breezy (kernel 2.6.12-8), I experience some (apparently) reiser-related crashes. It happens each time (reproducible as much as I want) I try to import pictures from my digital camera (canon powershot a95). It also happens at other times, but couldn't find the exact cause (often many applications opened..). I remember it happened once I was in OpenOffice, but there are many times I open OOo and it works.. Here's my setup : reiserfs (3.6), which is an encrypted (using cryptsetup defaults) partition that is created inside LVM... Another important thing is that I tried to revert back to 2.6.10-5 (hoary kernel), but the problem still hapens. However, if I boot Hoary's LiveCD, I can successfully import my pictures on the exact same partition that is causing problems under breezy... Here's the dmesg output (other information upon request) : Sep 11 15:57:46 localhost kernel: [4347102.257000] REISERFS: panic (device Null superblock): vs-6030: check_internal_block_head: invalid item number level=2, nr_items=170, free_space=65520 rdkey Sep 11 15:57:46 localhost kernel: [4347102.257000] ------------[ cut here ]------------ Sep 11 15:57:46 localhost kernel: [4347102.257000] kernel BUG at :63109! Sep 11 15:57:46 localhost kernel: [4347102.257000] invalid operand: 0000 [#1] Sep 11 15:57:46 localhost kernel: [4347102.257000] Modules linked in: ipv6 binfmt_misc speedstep_centrino cpufreq_userspace cpufreq_stats freq_table cpufreq_powersave cpufreq_ondemand cpufreq_conservative i915 drm pcmcia video sony_acpi pcc_acpi dev_acpi i2c_acpi_ec button battery container ac af_packet joydev tsdev pcspkr rtc yenta_socket rsrc_nonstatic pcmcia_core ipw2200 firmware_class ieee80211 ieee80211_crypt ohci1394 snd_intel8x0 snd_ac97_codec snd_pcm_oss snd_mixer_oss snd_pcm snd_timer snd soundcore snd_page_alloc i2c_i801 i2c_core tpm_atmel tpm_nsc tpm shpchp pci_hotplug intel_agp agpgart reiserfs aes_i586 dm_crypt evdev sr_mod sbp2 scsi_mod ieee1394 psmouse mousedev parport_pc lp parport md ext3 jbd mbcache dm_mod thermal processor fan ide_cd cdrom ide_disk ide_generic usbhid 8139too 8139cp mii piix ide_core ehci_hcd uhci_hcd usbcore unix fbcon tileblit font bitblit vesafb cfbcopyarea cfbimgblt cfbfillrect softcursor capability commoncap Sep 11 15:57:46 localhost kernel: [4347102.257000] CPU: 0 Sep 11 15:57:46 localhost kernel: [4347102.257000] EIP: 0060:[pg0+527738968/1 069872128] Not tainted VLI Sep 11 15:57:46 localhost kernel: [4347102.257000] EFLAGS: 00010282 (2.6.12-8-686) Sep 11 15:57:46 localhost kernel: [4347102.257000] EIP is at reiserfs_panic+0x51/0x70 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] eax: 000000a8 ebx: dfb141dc ecx: c02d28ec edx: c02d28ec Sep 11 15:57:46 localhost kernel: [4347102.257000] esi: 00000000 edi: 00000140 ebp: c090d000 esp: c0c2d8f0 Sep 11 15:57:46 localhost kernel: [4347102.257000] ds: 007b es: 007b ss: 0068 Sep 11 15:57:46 localhost kernel: [4347102.257000] Process gthumb (pid: 20391, threadinfo=c0c2c000 task=c0acfa20) Sep 11 15:57:46 localhost kernel: [4347102.257000] Stack: dfb11448 dfb141dc dfb1eee0 000000aa c090d000 c8a756fc dfafa4f5 00000000 Sep 11 15:57:46 localhost kernel: [4347102.257000] dfb11ad4 c8a756fc 00000018 db307aa8 c090d018 dfafd905 c8a756fc dd940200 Sep 11 15:57:46 localhost kernel: [4347102.257000] c8a756fc c090d000 000000aa db307a90 000000aa c8a756fc 00000001 d40ebad8 Sep 11 15:57:46 localhost kernel: [4347102.257000] Call Trace: Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527742197/1069872128] check_internal_block_head+0x7d/0x99 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527755525/1069872128] i nternal_copy_pointers_items+0x192/0x223 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527755732/1069872128] internal_move_pointers_items+0x3e/0xc4 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527756771/1069872128] internal_shift_right+0xd7/0x121 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527759461/1069872128] balance_internal+0x672/0xa51 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [__find_get_block+144/206] __find_get_block+0x90/0xce Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527656754/1069872128] do_balance+0xb3/0x135 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527776645/1069872128] reiserfs_paste_into_item+0x243/0x27e [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527696166/1069872128] reiserfs_allocate_blocks_for_region+0xb69/0x1648 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527766191/1069872128] search_for_position_by_key+0x176/0x39a [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527669595/1069872128] make_cpu_key+0x59/0x65 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527761388/1069872128] pathrelse+0x26/0x37 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527701826/1069872128] reiserfs_prepare_file_region_for_write+0x391/0x936 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527704878/1069872128] reiserfs_file_write+0x647/0x699 [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [pg0+527820398/1069872128] reiserfs_permission+0x27/0x2b [reiserfs] Sep 11 15:57:46 localhost kernel: [4347102.257000] [vfs_write+240/435] vfs_write+0xf0/0x1b3 Sep 11 15:57:46 localhost kernel: [4347102.257000] [sys_write+81/128] sys_write+0x51/0x80 Sep 11 15:57:46 localhost kernel: [4347102.257000] [sysenter_past_esp+84/117] sysenter_past_esp+0x54/0x75 Sep 11 15:57:46 localhost kernel: [4347102.257000] Code: 24 8d be 40 01 00 00 e8 3b fd ff ff 85 f6 89 d8 c7 44 24 08 e0 ee b1 df c7 04 24 48 14 b1 df 0f 45 c7 89 44 24 04 e8 c0 f1 61 e0 <0f> 0b 85 f6 c7 44 24 08 e0 ee b1 df c7 04 24 6c 14 b1 df 0f 45 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 04:23:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 05:23:53 +0100 (BST) Subject: [Bug 7678] installer does not set up access to wireless card successfully In-Reply-To: Message-ID: <20050912042353.95E3722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7678 Ubuntu (installer) | netcfg ------- Additional Comments From michael.white2 at mchsi.com 2005-09-12 05:23 UTC ------- The Ubuntu 5.10 Breezy preview installer also fails (as did Ubuntu 5.04) to recognize my laptop wireless card on ThinkPad 600e w/PCMCIA 3com 3CRPAG175 (atheros chipset). The installer says there is no network access. The lights on the card stay off during the probe. After installing, with dmesg, lsmod I can see that the ath_pci, ath_rate_oneo and ath_hal are loaded. The output from dmesg ath_rate_oneo has a complaint about disagreeing symbol versions. ifconfig -a lists lo, ath0, and eth0 interfaces. However, I still have no luck making it work. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 06:09:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 07:09:51 +0100 (BST) Subject: [Bug 15045] Breezy Preview not bootable on P4 with Intel SATA controler In-Reply-To: Message-ID: <20050912060951.25A0722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15045 Ubuntu | linux ------- Additional Comments From fabbione at ubuntu.com 2005-09-12 07:09 UTC ------- The net boot kernel and the cd kernel are exactly the same. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 08:21:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 09:21:45 +0100 (BST) Subject: [Bug 14115] Doesn't create modules until next reboot In-Reply-To: Message-ID: <20050912082145.D7E4F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14115 Ubuntu | linux-restricted-modules ------- Additional Comments From seb128 at ubuntu.com 2005-09-12 09:21 UTC ------- (In reply to comment #8) > The (trivial) fix is explained in comment #3 Rather a workaround since you have to do it at every box startup, anyway it's going to be fixed so it's all right :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 09:16:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 10:16:17 +0100 (BST) Subject: [Bug 15105] Scan mode not supported on Dell Truemobile 1150 In-Reply-To: Message-ID: <20050912091617.200AE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15105 Ubuntu | linux ------- Additional Comments From tony.arnold at manchester.ac.uk 2005-09-12 10:16 UTC ------- Created an attachment (id=3744) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3744&action=view) Output from lsmod showing wireless card driver -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 09:17:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 10:17:39 +0100 (BST) Subject: [Bug 15105] Scan mode not supported on Dell Truemobile 1150 In-Reply-To: Message-ID: <20050912091739.A107022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15105 Ubuntu | linux ------- Additional Comments From tony.arnold at manchester.ac.uk 2005-09-12 10:17 UTC ------- (In reply to comment #1) > Which driver is used for your wireless device? Send the output of "lsmod" if > you aren't sure. It appears to be the orinoco/hermes driver. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 10:44:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 11:44:05 +0100 (BST) Subject: [Bug 13155] on boot, Kernel panic - not syncing : VFS: Unable to mount root fs on unknown-block(0, 0) In-Reply-To: Message-ID: <20050912104405.A1D0422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13155 Ubuntu | linux ------- Additional Comments From lists at whitehouse.org.nz 2005-09-12 11:44 UTC ------- This one hit me as well. I was using a fully updated Hoary and the update notifier told me that there was a new kernel image (from memory it went from 2.6.10-4 to 2.6.10-5) and now my machine won't boot into the default. I am on a Dothan Pentium M, am using ReiserFS for my / and home. Is there any other information which I can give you. This is a bit of a major given that others may be having this automatically happen to them right now! I would recommend taking that deb from the mirrors until you know what is happening. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 10:46:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 11:46:22 +0100 (BST) Subject: [Bug 13155] on boot, Kernel panic - not syncing : VFS: Unable to mount root fs on unknown-block(0, 0) In-Reply-To: Message-ID: <20050912104622.3B32622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13155 Ubuntu | linux ------- Additional Comments From lists at whitehouse.org.nz 2005-09-12 11:46 UTC ------- Ah... okay - I didn't realise that these reports are spread over a decent time-span. I was sure that it was -5 which just came up as new today/yesterday?? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 11:26:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 12:26:56 +0100 (BST) Subject: [Bug 13155] on boot, Kernel panic - not syncing : VFS: Unable to mount root fs on unknown-block(0, 0) In-Reply-To: Message-ID: <20050912112656.421A622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13155 Ubuntu | linux ------- Additional Comments From lists at whitehouse.org.nz 2005-09-12 12:26 UTC ------- Okay, I have tried to get as much information for you as possible. My kernel version (as of today) is 2.6.10-5-386 and my hardware catalogue ID thing is ab4d55311e734d27f3679e60a3ba8604 - a standard Dell Inspiron 510m. I went into 'recovery mode' and jotted down all that was left on the final screen in case it was of any use to you (a real pain without copy and paste, but did my best to be exact!): io scheduler anticipatory registered io schedular deadline registered io schedular cfq registered RAMDISK driver initialised 16 RAM disks of 8192K size 1024 blocksize input: AT Translated Set 2 keyboard on isa0060/serio0 EISA: Probing bus 0 at eisa0 EISA: Detected 0 cards. NET: Registered protocol family 2 IP: routing cache hash table of 2048 buckets, 16Kbytes TCP: Hash tables configured (established 16384 bind 32768) NET: Registered protocol family 8 NET: Registered protocol family 20 Restarting tasks ...<6> Strange, kswapd0 not stopped Strange, kseriod not stopped done ACPI wakeup devices: LID PBTN PCI0 USB0 CH1 USB1 USB2 USB3 MODM PCIE ACPI: (Supports S0 S1 S3 S4 S4bios S5) RAMDISK: cramfs filesystem found at block 0 RAMDISK: Loading 4264KiB [1 disk] into ram disk... done. VFS: Mounted root (cramfs filesystem) readonly. VFS: Cannot open root device "hda6" or unknown-block(0,0) Please append a correct "root=" boot option Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0) I have Windows to boot back into, but this is a really bad look for Ubuntu if newbies click on the 'Update' button and can no longer boot!!! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:12:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:12:17 +0100 (BST) Subject: [Bug 15045] Breezy Preview not bootable on P4 with Intel SATA controler In-Reply-To: Message-ID: <20050912121217.A848022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15045 Ubuntu | linux ------- Additional Comments From ivoks at ubuntu.com 2005-09-12 13:12 UTC ------- Well, netboot kernel boots (but doesn't support my network card) and preview release doesn't boot at all. lspci and dmesg in attachment. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:13:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:13:00 +0100 (BST) Subject: [Bug 15045] Breezy Preview not bootable on P4 with Intel SATA controler In-Reply-To: Message-ID: <20050912121300.6699D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15045 Ubuntu | linux ------- Additional Comments From ivoks at ubuntu.com 2005-09-12 13:13 UTC ------- Created an attachment (id=3747) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3747&action=view) lspci -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:14:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:14:01 +0100 (BST) Subject: [Bug 15045] Breezy Preview not bootable on P4 with Intel SATA controler In-Reply-To: Message-ID: <20050912121401.C280E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15045 Ubuntu | linux ------- Additional Comments From ivoks at ubuntu.com 2005-09-12 13:14 UTC ------- Created an attachment (id=3748) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3748&action=view) dmesg Ignore errors in the end, these are my modules that are broken. BTW, would it be possible to support this network cards? This is netboot kernel -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:15:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:15:46 +0100 (BST) Subject: [Bug 15045] Breezy Preview not bootable on P4 with Intel SATA controler In-Reply-To: Message-ID: <20050912121546.DDE5A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15045 Ubuntu | linux ------- Additional Comments From ivoks at ubuntu.com 2005-09-12 13:15 UTC ------- I think problem could be in initrd. Since, preview release detects my IDE/SATA controler and dies, and netboot doesn't search for IDE/SATA at all. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:42:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:42:15 +0100 (BST) Subject: [Bug 15045] Breezy Preview not bootable on P4 with Intel SATA controler In-Reply-To: Message-ID: <20050912124215.8B4B922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15045 Ubuntu | linux ------- Additional Comments From ivoks at ubuntu.com 2005-09-12 13:42 UTC ------- Did some debuging/testing... It goes ok with acpi=off. Still, remains issue with unsupported network card in installer. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:44:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:44:26 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050912124426.6124222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- OtherBugsDependingO| |15197 nThis| | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:50:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:50:09 +0100 (BST) Subject: [Bug 4120] acer aspire 2001 does not resume from suspend to ram In-Reply-To: Message-ID: <20050912125009.EF12E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4120 Ubuntu (laptop) | linux ------- Additional Comments From maksim at fastmail.fm 2005-09-12 13:50 UTC ------- Created an attachment (id=3751) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3751&action=view) script for sucessfully suspending-resuming acer aspire 2001WLMI -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:51:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:51:39 +0100 (BST) Subject: [Bug 15188] Default update-grub behaviour is not intuitive In-Reply-To: Message-ID: <20050912125139.2F42122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15188 Ubuntu | grub ------- Additional Comments From sebastian_latz at yahoo.de 2005-09-12 13:51 UTC ------- (In reply to comment #1) > You must place custom entries according to the instructions in the comments in > menu.lst Well, I've made no custom entries to my menu.lst. Ubuntu installer puts the entries into the file: Ubuntu Kernel, Ubuntu Kernel (recovery), memtest and Windows. I never ever toutched the file before I installed a new kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 12:54:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 13:54:23 +0100 (BST) Subject: [Bug 4120] acer aspire 2001 does not resume from suspend to ram In-Reply-To: Message-ID: <20050912125423.448D522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4120 Ubuntu (laptop) | linux ------- Additional Comments From maksim at fastmail.fm 2005-09-12 13:54 UTC ------- apologies for taking so long to get this script added here. I guesss its too late for 5.10 but hopefully this will help for the next version. I'm also currently downloading the preview CD of 5.10 so will try it out and see if it works out of box and/or with this script. I'm afraid I dont remember the origin of the script, but I think it may have come from a link on one of the ubuntu wiki acpi pages. (In reply to comment #6) > Created an attachment (id=3751) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3751&action=view) [edit] > script for sucessfully suspending-resuming acer aspire 2001WLMI > -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 13:30:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 14:30:02 +0100 (BST) Subject: [Bug 14947] Grub removes Windows boot option when NTFS partition needs recovery In-Reply-To: Message-ID: <20050912133002.6DB3422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub matthew.east at breathe.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major ------- Additional Comments From matthew.east at breathe.com 2005-09-12 14:30 UTC ------- Help!? Windows is still unbootable on my machine, and given that I'm not the only person who has reported this bug I'm increasing the severity to major: it would be terrible is this happens to others when Breezy is released. Matt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 14:09:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 15:09:14 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050912140914.F19CB22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |scott-bugs at ubuntu.com AssignedTo|ben.collins at ubuntu.com |mjg59 at codon.org.uk Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-12 15:09 UTC ------- Ok, this is a hardware quirk issue. We can work around this without too much pain, though it needs a small kernel patch. Scott, can you include the output of lspci -vn and tell me which driver your chipset uses? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 14:17:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 15:17:01 +0100 (BST) Subject: [Bug 15258] New: Kernel panic 2.6.12-8-amd64-k8 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15258 Ubuntu | kernel-package Summary: Kernel panic 2.6.12-8-amd64-k8 Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: herko at vanbergen.name QAContact: kernel-bugs at lists.ubuntu.com After upgrading to kernel 2.6.12-8 (with Synaptic (Breezy)) I get the error at boot: depmod: error while loading shared libraries: libc.so.6 cannot open shared object files: no such file or directory. Kernel 2.6.12-7 boots without problem. Is there something wrong with the initrd? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 14:21:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 15:21:03 +0100 (BST) Subject: [Bug 14947] Grub removes Windows boot option when NTFS partition needs recovery In-Reply-To: Message-ID: <20050912142103.9DB1E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub ------- Additional Comments From ubuntu at paul.sladen.org 2005-09-12 15:21 UTC ------- Hello Matthew, Can you try: title Windows chainloader directly chainloader (hd0,0)+1 or if that doesn't work: title Windows rootnoverify rootnoverify (hd0,0) chainloader +1 FWIW, "makeactive" shouldn't be needed by anything modern, and causes the on-disk partition table to be changed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 14:37:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 15:37:50 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050912143750.8857322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-12 15:37 UTC ------- 0000:00:06.0 0401: 10b9:5451 (rev 02) Subsystem: 0e11:005a Flags: bus master, medium devsel, latency 64, IRQ 11 I/O ports at 3000 [size=256] Memory at 98100000 (32-bit, non-prefetchable) [size=4K] Capabilities: [dc] Power Management version 2 Driver is snd_ali5451 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 14:56:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 15:56:26 +0100 (BST) Subject: [Bug 14947] Grub removes Windows boot option when NTFS partition needs recovery In-Reply-To: Message-ID: <20050912145626.926DF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub ------- Additional Comments From matthew.east at breathe.com 2005-09-12 15:56 UTC ------- (In reply to comment #12) > Hello Matthew, Hi Paul, Neither work. > Can you try: > > title Windows chainloader directly > chainloader (hd0,0)+1 Error 13: Invalid or unsupported executable format > or if that doesn't work: > > title Windows rootnoverify > rootnoverify (hd0,0) > chainloader +1 This is as before, except without the error message on the partition. It just goes to a sort of cmd prompt, which looks like this: GRUB _ But I can't type anything and have to restart the computer. Hope this helps. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 16:58:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 17:58:41 +0100 (BST) Subject: [Bug 14115] Doesn't create modules until next reboot In-Reply-To: Message-ID: <20050912165841.75ABF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14115 Ubuntu | linux-restricted-modules ------- Additional Comments From mdz at ubuntu.com 2005-09-12 17:58 UTC ------- (In reply to comment #10) > (In reply to comment #8) > > The (trivial) fix is explained in comment #3 > > Rather a workaround since you have to do it at every box startup, anyway it's > going to be fixed so it's all right :) At the very end of comment #3 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 17:10:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 18:10:43 +0100 (BST) Subject: [Bug 15267] New: linux-restricted-modules init script runs before /usr is mounted Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15267 Ubuntu | linux-restricted-modules Summary: linux-restricted-modules init script runs before /usr is mounted Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: danholm at gmail.com QAContact: kernel-bugs at lists.ubuntu.com The linux-restricted-modules-common initialization script runs before all of the disks are mounted, which leads to failure since /usr/bin/ld (needed by lrm-manager) might not exist yet. I worked around this by moving the initialization to runlevel 2, since I don't need the restricted modules until just before gdm starts. Other people might not be so lucky. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 18:30:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 19:30:01 +0100 (BST) Subject: [Bug 15227] b44 slow to initialize? In-Reply-To: Message-ID: <20050912183001.2765A22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15227 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Breezy DHCP always faiils |b44 slow to initialize? |first attempt in installer; | |works second try | ------- Additional Comments From mdz at ubuntu.com 2005-09-12 19:30 UTC ------- Working fine here with other drivers (e1000, 3c59x, sis900). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 18:43:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 19:43:51 +0100 (BST) Subject: [Bug 15234] Kernel bug while hibernating on Dell inspiron 600m In-Reply-To: Message-ID: <20050912184351.BBCE422F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15234 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|mjg59 at codon.org.uk |ben.collins at ubuntu.com Component|acpi-support |linux Keywords| |laptop QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-12 19:43 UTC ------- Were you able to get a photo of the next screen of output, with the stack trace? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 18:45:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 19:45:17 +0100 (BST) Subject: [Bug 15234] Kernel bug while hibernating on Dell inspiron 600m In-Reply-To: Message-ID: <20050912184517.F40F322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15234 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-12 19:45 UTC ------- This looks similar to bug #15189, though we'd need the trace to be certain -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 18:49:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 19:49:12 +0100 (BST) Subject: [Bug 15105] Scan mode not supported by orinoco/hermes In-Reply-To: Message-ID: <20050912184912.E0F7922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15105 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Scan mode not supported on |Scan mode not supported by |Dell Truemobile 1150 |orinoco/hermes -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 19:13:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 20:13:49 +0100 (BST) Subject: [Bug 15188] Default update-grub behaviour is not intuitive In-Reply-To: Message-ID: <20050912191349.657FB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15188 Ubuntu | grub ------- Additional Comments From mdz at ubuntu.com 2005-09-12 20:13 UTC ------- Works fine here. The installer places the entries in the correct place. Please attach your menu.lst. Perhaps you modified the file after installation? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 19:16:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 20:16:24 +0100 (BST) Subject: [Bug 15188] Default update-grub behaviour is not intuitive In-Reply-To: Message-ID: <20050912191624.280F222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15188 Ubuntu | grub ------- Additional Comments From mdz at ubuntu.com 2005-09-12 20:16 UTC ------- It sounds like you may be experiencing bug #14947 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 21:35:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 22:35:46 +0100 (BST) Subject: [Bug 15068] CardBus not functional, no IRQ, ENE CB1410 CardBus In-Reply-To: Message-ID: <20050912213546.998B022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15068 Ubuntu | linux tiagomatos at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |tiagomatos at gmail.com ------- Additional Comments From tiagomatos at gmail.com 2005-09-12 22:35 UTC ------- My laptop also has an ENE CB1410 although slightly different: 0000:00:0c.0 CardBus bridge: ENE Technology Inc CB1410 Cardbus Controller Subsystem: CLEVO/KAPOK Computer: Unknown device 0400 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- Reset+ 16bInt- PostWrite+ 16-bit legacy interface ports at 0001 Mine seems to work great (it always has) although some days ago (using latest breezy kernel) this appeared on my syslog: Sep 4 18:34:13 hive kernel: [4299212.229000] Stopping tasks: ===================================================================| Sep 4 18:34:13 hive kernel: [4299212.231000] GTM info 78,3c,ffffffff,ffffffff,13 Sep 4 18:34:13 hive kernel: [4299212.244000] GTM info 78,14,ffffffff,ffffffff,13 Sep 4 18:34:13 hive kernel: [4299213.233000] ACPI: PCI interrupt for device 0000:00:0c.0 disabled Sep 4 18:34:13 hive kernel: [4299213.233000] ACPI: PCI interrupt for device 0000:00:02.7 disabled Sep 4 18:34:13 hive kernel: [4299213.233000] Back to C! Sep 4 18:34:13 hive kernel: [4300752.879000] ACPI: PCI Interrupt 0000:00:02.3[B] -> Link [LNKB] -> GSI 9 (level, low) -> IRQ 9 Sep 4 18:34:13 hive kernel: [4300752.879000] ACPI: PCI Interrupt 0000:00:02.5[A] -> Link [LNKA] -> GSI 11 (level, low) -> IRQ 11 Sep 4 18:34:13 hive kernel: [4300752.879000] ACPI: PCI Interrupt 0000:00:02.7[C] -> Link [LNKC] -> GSI 5 (level, low) -> IRQ 5 Sep 4 18:34:13 hive kernel: [4300752.881000] ACPI: PCI Interrupt 0000:00:0c.0[?]: no GSI - using IRQ 5 Sep 4 18:34:13 hive kernel: [4300752.912000] PCMCIA: socket de1d842c: *** DANGER *** unable to remove socket power As you can see it was right after coming back from sleep. But it hasn't happened there after... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 22:49:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 12 Sep 2005 23:49:33 +0100 (BST) Subject: [Bug 15289] New: linux-image-2.6.12-8-amd64-k8 unable to find root partition Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15289 Ubuntu | linux Summary: linux-image-2.6.12-8-amd64-k8 unable to find root partition Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: ubuntu-bugs at nullinfinity.org QAContact: kernel-bugs at lists.ubuntu.com When booting, linux-image-2.6.12-8-amd64-k8 tells me "/dev/hda2: no such device" (may not be exact wording) and drops me to a shell. 2.6.12-6-amd64-k8 works fine with the same system. $ cat /etc/fstab # /etc/fstab: static file system information. # # proc /proc proc defaults 0 0 /dev/hda2 / ext3 defaults,errors=remount-ro 0 1 /dev/hda3 /home ext3 defaults 0 2 /dev/hda1 none swap sw 0 0 /dev/hdc /media/cdrom0 udf,iso9660 user,noauto 0 0 This is on an HP 6125 Turion laptop running Breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 12 23:59:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 00:59:19 +0100 (BST) Subject: [Bug 15292] New: linux-restricted-modules-powerpc64-smp is not installable Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15292 Ubuntu | linux-restricted-modules Summary: linux-restricted-modules-powerpc64-smp is not installable Product: Ubuntu Version: unspecified Platform: powerpc OS/Version: Linux Status: UNCONFIRMED Severity: major Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: james.troup at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com linux-restricted-modules-power* are not installable; the root cause is: linux-restricted-modules-powerpc64-smp: Depends: linux-restricted-modules-2.6.12-8-powerpc64-smp but it is not installable and indeed there are no l-r-m for powerpc64; either we need to provide them or not provide the meta packages. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 00:13:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 01:13:02 +0100 (BST) Subject: [Bug 15279] hub3-0:1.0:connect-debounce failed port1 disabled In-Reply-To: Message-ID: <20050913001302.77DEF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15279 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Hub 3-0 |hub3-0:1.0:connect-debounce | |failed port1 disabled -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 00:19:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 01:19:20 +0100 (BST) Subject: [Bug 15234] Kernel bug while hibernating on Dell inspiron 600m In-Reply-To: Message-ID: <20050913001920.A6F8322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15234 Ubuntu (laptop) | linux ------- Additional Comments From me at westnet.com.au 2005-09-13 01:19 UTC ------- Created an attachment (id=3754) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3754&action=view) Picture of screen two -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 00:20:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 01:20:52 +0100 (BST) Subject: [Bug 15234] Kernel bug while hibernating on Dell inspiron 600m In-Reply-To: Message-ID: <20050913002052.F1BC622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15234 Ubuntu (laptop) | linux ------- Additional Comments From me at westnet.com.au 2005-09-13 01:20 UTC ------- Created an attachment (id=3755) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3755&action=view) Pciture of screen page three Last page. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 00:35:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 01:35:46 +0100 (BST) Subject: [Bug 15068] CardBus not functional, no IRQ, ENE CB1410 CardBus In-Reply-To: Message-ID: <20050913003546.2B8A922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15068 Ubuntu | linux ------- Additional Comments From carey at internode.on.net 2005-09-13 01:35 UTC ------- Rui, thanks for the reply. I've now learnt that the CardBus does indeed function on some laptops. So what make/model is your laptop? So far, I've found that this CardBus doesn't work in 2.6.12 with: * eMachine laptops (http://www.e4me.com/) * TPG laptops (http://www.tpg.com.au/online) * some Arima laptops (http://www.arima.com.tw/) The above laptops are all fairly similar AFAIK, and I think the TPG and eMachines are rebadged Arimas. This thread has some info: http://forums.whirlpool.net.au/forum-replies.cfm?t=386334. As I mentioned, the CardBus works in 2.6.13, so it should be just a matter of finding the patch that fixed it and testing the patch in Breezy's 2.6.12, right? I might try the "[PATCH] increase PCIBIOS_MIN_IO on x86" and "pci: make bus resource start address override minimum IO address" and "[PATCH] pci and yenta: pcibios_bus_to_resource" patches, to see if they fix it for me. I'm not 100% sure what I'm doing here. Could someone tell me if these patches are possible to happen for Breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 03:15:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 04:15:41 +0100 (BST) Subject: [Bug 15299] New: sk98lin is not in the kernel anymore Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux-restricted-modules Summary: sk98lin is not in the kernel anymore Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: adam.hill at gmail.com QAContact: kernel-bugs at lists.ubuntu.com The sk98lin module is not in Breezy, it was in Hoary (but non-working). Is this by design or omission? If it is readded, please use the latest driver from SysKonnect if possible. Tested using: "find /lib/modules/$(uname -r) | grep sk98" returns nothing and modprobe fails. The IPW2000 (wifi) driver is working fine, so the networking subsystem seems to be ok. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 03:18:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 04:18:53 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050913031853.88FB922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |ben.collins at ubuntu.com Component|linux-restricted-modules |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 03:19:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 04:19:37 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050913031937.1AC4722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu (laptop) | linux adam.hill at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 03:36:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 04:36:30 +0100 (BST) Subject: [Bug 15234] Kernel bug while hibernating on Dell inspiron 600m In-Reply-To: Message-ID: <20050913033630.86CB022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15234 Ubuntu (laptop) | linux me at westnet.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |me at westnet.com.au Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From me at westnet.com.au 2005-09-13 04:36 UTC ------- After today's updates, it doesn't seem to be bugging out. Still not hibernating but it seems to be something to do with the yenta cardbus driver. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 04:04:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 05:04:56 +0100 (BST) Subject: [Bug 15226] USB mass-storage install fails In-Reply-To: Message-ID: <20050913040456.8319C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15226 Ubuntu | initramfs-tools mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 04:08:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 05:08:08 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050913040808.D349722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|laptop | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 04:28:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 05:28:29 +0100 (BST) Subject: [Bug 15292] linux-restricted-modules-powerpc64-smp is not installable In-Reply-To: Message-ID: <20050913042829.391C722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15292 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From fabbione at ubuntu.com 2005-09-13 05:28 UTC ------- hmmm hell yeah.. fixed.. ppc64 has no lrm. all the linux-meta pkgs have been realligned. Fabio -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 08:36:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 09:36:21 +0100 (BST) Subject: [Bug 15228] Reiser crash In-Reply-To: Message-ID: <20050913083621.0388622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15228 Ubuntu | linux charles at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |charles at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 08:47:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 09:47:18 +0100 (BST) Subject: [Bug 13370] [Breezy|Hoary] Dell D610 (and other models) freezes at least once a day In-Reply-To: Message-ID: <20050913084718.5947622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13370 Ubuntu | linux ------- Additional Comments From mark at hbd.com 2005-09-13 09:47 UTC ------- Mark, Chuck & co I'm testing a pre-release of the next kernel package and it appears more stable thanks to this patch. Much obliged for the feedback. BenC, Fabbione, thanks too. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 10:38:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 11:38:37 +0100 (BST) Subject: [Bug 14741] Hibernate doesn't work on Dell Latitude D410 (Colony 4) In-Reply-To: Message-ID: <20050913103837.963A622F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14741 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|mjg59 at codon.org.uk |ben.collins at ubuntu.com Status|ASSIGNED |NEW Component|powermgmt-base |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mjg59 at codon.org.uk 2005-09-13 11:38 UTC ------- I'm surprised that this results in it failing to resume. There's no kernel code to switch off the screen - it should only turn off when the power is cut to the machine, which is the very last thing that happens. By then the image should already have hit disk. This sounds like a kernel bug of some description, but I've no idea what. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 10:47:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 11:47:30 +0100 (BST) Subject: [Bug 15234] Kernel bug while hibernating on Dell inspiron 600m In-Reply-To: Message-ID: <20050913104730.91C1522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15234 Ubuntu (laptop) | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |UNCONFIRMED Resolution|FIXED | ------- Additional Comments From mjg59 at codon.org.uk 2005-09-13 11:47 UTC ------- Nothing's changed that should fix this, so let's keep it open for now. The only BUG_ON code in that path is this: BUG_ON (nr_copy_pages_check != nr_copy_pages); which is part of the resume path. Ah, I think I see. The only way this should be possible is if swsusp_alloc failed and so nr_copy_pages_check isn't set. So the actual problem is that swsusp_alloc failing isn't notified usefully, and the BUG_ON check is inappropriate in the case of it having failed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 12:35:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 13:35:07 +0100 (BST) Subject: [Bug 15324] New: Random hard freezes with ATAPI drive on an SATA controller Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15324 Ubuntu | kernel-package Summary: Random hard freezes with ATAPI drive on an SATA controller Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: ben_ubuntu at benroe.com QAContact: kernel-bugs at lists.ubuntu.com About every couple of days, my laptop (Acer Travelmate 8104) locks up completely. There is no pattern to what I'm doing at the time: it has happened while I'm web browsing, using nautilus, reading email etc. The laptop itself is perfectly stable and passes memtest etc. and all the devices apart from the SD-card reader work fine. The last time I saw these exact symptoms on my laptop was when I built a custom kernel for Hoary with ATAPI enabled for libata, which enables DMA for my DVD drive. The Breezy kernel seems to have this enabled, as DMA is working on the drive AFAICS. SATA controller laptops with non-SATA DVD drives seem to be common at the moment. At least one other person has seen these symptoms on a Dell Inspiron 6000 as well, which I believe has a very similar chipset to my Acer: http://www.ubuntuforums.org/showthread.php?t=65126 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 14:26:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 15:26:29 +0100 (BST) Subject: [Bug 15118] Error updating Linux kernel image through "Software Updates" In-Reply-To: Message-ID: <20050913142629.9F02A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15118 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-13 15:26 UTC ------- Can you do "ls -la /lib/modules/2.6.10-5-386/kernel/drivers/char/drm/" Also, send me the output of the "cat /proc/mounts" and "dmesg" commands. I would also suggest, after doing the above, performing an fsck on your rootfs. You can force this on a reboot by typing "shutdown -r -F now" at the command line. This will reboot and (hopefully) force an fsck. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 14:34:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 15:34:59 +0100 (BST) Subject: [Bug 15184] Powerbook special keys not working on newer powerbooks In-Reply-To: Message-ID: <20050913143459.30D8122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15184 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-13 15:34 UTC ------- Pulling in the patches for the kernel FN quirk. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 14:40:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 15:40:19 +0100 (BST) Subject: [Bug 15199] Ports on localhost doesn't work In-Reply-To: Message-ID: <20050913144019.27B9E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | UNKNOWN ------- Additional Comments From ben.collins at ubuntu.com 2005-09-13 15:40 UTC ------- Can you do "ifconfig -a", and send that. Also, try doing "sudo ifdown lo; sudo ifup lo" and see if that fixes the problem (or atleast outputs some message that explains why it isn't working). Also could you send the file /etc/network/interfaces. Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 14:41:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 15:41:23 +0100 (BST) Subject: [Bug 15161] Bad and weak sound on G5 powermac In-Reply-To: Message-ID: <20050913144123.1F4AC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15161 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-13 15:41 UTC ------- Can you send output for lspci and dmesg please? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 14:49:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 15:49:34 +0100 (BST) Subject: [Bug 14964] Logitech QuickCam 4000 Pro is not supported In-Reply-To: Message-ID: <20050913144934.0346322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14964 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjpowersjr at gmail.com ------- Additional Comments From ben.collins at ubuntu.com 2005-09-13 15:49 UTC ------- *** Bug 15212 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 14:50:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 15:50:48 +0100 (BST) Subject: [Bug 14964] Logitech QuickCam 4000 Pro is not supported In-Reply-To: Message-ID: <20050913145048.69F7A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14964 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |isoster at hotmail.com ------- Additional Comments From ben.collins at ubuntu.com 2005-09-13 15:50 UTC ------- *** Bug 12340 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 14:52:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 15:52:28 +0100 (BST) Subject: [Bug 13425] [dapper] please add pwcx webcam decompressor In-Reply-To: Message-ID: <20050913145228.009DA22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13425 Ubuntu | linux-restricted-modules ------- Additional Comments From ben.collins at ubuntu.com 2005-09-13 15:52 UTC ------- Just a note on this bug, as per bug #14964, the pwc driver in the kernel is being updated to 10.0.8. I believe the binary only decompressor is supposed to work with this version of the pwc module. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 15:14:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 16:14:24 +0100 (BST) Subject: [Bug 15339] New: loop-device not always released after usage. Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15339 Ubuntu | kernel-package Summary: loop-device not always released after usage. Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: jesper at krogh.cc QAContact: kernel-bugs at lists.ubuntu.com When having used the loop-back filsystem mount several times (20+) it seem that the loopback device doesn't get released every time: root at hal:/tmp# mount | grep loop /tmp/initrd.img.new on /mnt type cramfs (rw,loop=/dev/loop7) root at hal:/tmp# mount /tmp/newsys.img /tmp/newsys -oloop mount: could not find any free loop device root at hal:/tmp# Usually there har 8 available: root at hal:~# ls -nc /dev/loop* brw-rw---- 1 0 6 7, 0 Sep 13 13:35 /dev/loop0 brw-rw---- 1 0 6 7, 1 Sep 13 13:35 /dev/loop1 brw-rw---- 1 0 6 7, 2 Sep 13 13:35 /dev/loop2 brw-rw---- 1 0 6 7, 3 Sep 13 13:35 /dev/loop3 brw-rw---- 1 0 6 7, 4 Sep 13 13:35 /dev/loop4 brw-rw---- 1 0 6 7, 5 Sep 13 13:35 /dev/loop5 brw-rw---- 1 0 6 7, 6 Sep 13 13:35 /dev/loop6 brw-rw---- 1 0 6 7, 7 Sep 13 13:35 /dev/loop7 root at hal:~# uname -a Linux hal.localdomain 2.6.12-3-amd64-k8-smp #1 SMP Mon Jul 4 16:07:37 BST 2005 x86_64 GNU/Linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 15:22:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 16:22:47 +0100 (BST) Subject: [Bug 15162] G5 freezes at shutdown or reboot In-Reply-To: Message-ID: <20050913152247.8E77E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15162 Ubuntu | linux jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 17:06:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 18:06:43 +0100 (BST) Subject: [Bug 12942] [KLIBC] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050913170643.3F55822F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P2 |P1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 18:07:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 19:07:00 +0100 (BST) Subject: [Bug 13952] /sbin/lrm-manager should not depend on /usr/bin/ld In-Reply-To: Message-ID: <20050913180700.097C022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13952 Ubuntu | linux-restricted-modules danholm at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |danholm at gmail.com ------- Additional Comments From danholm at gmail.com 2005-09-13 19:06 UTC ------- *** Bug 15267 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 19:04:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 20:04:01 +0100 (BST) Subject: [Bug 15199] Ports on localhost doesn't work In-Reply-To: Message-ID: <20050913190401.6C9D022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | UNKNOWN ------- Additional Comments From lean-please-dont-share-my-email-ubuntu at omnia.dk 2005-09-13 20:04 UTC ------- Created an attachment (id=3782) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3782&action=view) /sbin/ifconfig -a Output from ifconfig -a -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 19:07:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 20:07:24 +0100 (BST) Subject: [Bug 15199] Ports on localhost doesn't work In-Reply-To: Message-ID: <20050913190724.4590222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | UNKNOWN ------- Additional Comments From lean-please-dont-share-my-email-ubuntu at omnia.dk 2005-09-13 20:07 UTC ------- Created an attachment (id=3784) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3784&action=view) /etc/networking/interfaces /etc/networking/interfaces -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 19:09:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 20:09:02 +0100 (BST) Subject: [Bug 15199] Ports on localhost doesn't work In-Reply-To: Message-ID: <20050913190902.C646F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | UNKNOWN ------- Additional Comments From lean-please-dont-share-my-email-ubuntu at omnia.dk 2005-09-13 20:09 UTC ------- sudo ifdown lo; sudo ifup lo worked! I need to create an ssh authentication, to get the gateway to open. This means that automatic time adjustment doesn't work on boot, and I usually just ctr+c it. Don't think this is the problem, but never really looked closer. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 19:31:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 20:31:51 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050913193151.3F05C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-13 20:31 UTC ------- Can somebody give a statement about this bug, please? Will it be fixed in Breezy final? Is there a way to bypass the issue until it's fixed? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 19:34:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 20:34:16 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050913193416.5AD6022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-13 20:34 UTC ------- another user has this problem: http://ubuntuforums.org/showthread.php?p=348721#post348721 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:01:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:01:29 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050913200129.1F50322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux dan at theidiots.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From dan at theidiots.org 2005-09-13 21:01 UTC ------- Confirmed on Breezy AMD64 build from yesterday, 9/12/05; No sk98lin anywhere. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:02:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:02:13 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050913200213.9BE6922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux dan at theidiots.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dan at theidiots.org -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:11:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:11:13 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050913201113.C40ED22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-13 21:11 UTC ------- This issue has been resolved in alsa-driver 1.0.10rc1. Because the kernel is essentially frozen, we need to test the following ASAP. If alsa-driver 1.0.10rc1 works for you, then I'll generate a patch against our kernel. *** NOTE: You will end up clobbering the Ubuntu /lib/modules/$(uname -r) if you choose to test! Be sure you keep a copy of an older working kernel! *** Here's what you need to do: (1) Install build-essential, gcc-3.4-base, and linux-headers-$(uname -r) (2) Download ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.10rc1.tar.bz2 (3) Modify alsa-kernel/pci/ac97/ac97_bus.c according to https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1356 (4) Configure alsa-driver with: CPP=cpp-3.4 CC=gcc-3.4 ./configure --with-oss=yes --with-sequencer=yes --with-isapnp=no --with-pcmcia=kernel --with-kernel=/lib/modules/$(uname -r)/build --with-cards=hda-intel (5) Compile alsa-driver with: make && sudo make install You'll need to reboot, and after the system has come up, make sure the ALSA version is 1.0.10rc1: $ cat /proc/asound/version I'd like to avoid pulling in additional changes from cvs for alsa-kernel/pci/hda, but we may have no choice. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:13:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:13:53 +0100 (BST) Subject: [Bug 15324] Random hard freezes with ATAPI drive on an SATA controller In-Reply-To: Message-ID: <20050913201353.9847322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15324 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux ------- Additional Comments From mdz at ubuntu.com 2005-09-13 21:13 UTC ------- Are you able to reproduce the bug at the command line in recovery mode? If so, please send the messages you see on the console at the time of the crash (a digital photo is fine) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:15:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:15:42 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050913201542.5208322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |salvesen at gmail.com ------- Additional Comments From mdz at ubuntu.com 2005-09-13 21:15 UTC ------- *** Bug 13521 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:18:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:18:12 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050913201812.1256D22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |critical Priority|P2 |P1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:21:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:21:05 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050913202105.0131422F4029@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From mdz at ubuntu.com 2005-09-13 21:21 UTC ------- (In reply to comment #23) > I can't manage to reproduce any corruption-on-resize problems, but for the sake > of our sanity, perhaps we should consider updating our nfttools to a newer > upstream with the bugfixes mentioned in this bug log. Is there a changelog? What are the risk factors? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:23:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:23:36 +0100 (BST) Subject: [Bug 15324] Random hard freezes with ATAPI drive on an SATA controller In-Reply-To: Message-ID: <20050913202336.1368022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15324 Ubuntu | linux ------- Additional Comments From ben_ubuntu at benroe.com 2005-09-13 21:23 UTC ------- According to a poster on the linked forum thread, the problem is fixed in 2.6.13. It's to do with a problem in error handling of polling an empty CD drive. There is a workaround patch in the thread as well for 2.6.12. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:37:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:37:01 +0100 (BST) Subject: [Bug 12942] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050913203701.BD7CA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[KLIBC] Mysterious NFS mount|Mysterious NFS mount |timeouts |timeouts -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:52:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:52:44 +0100 (BST) Subject: [Bug 15366] New: 2.6 kernel no boot with single drive RAID Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15366 Ubuntu | kernel-package Summary: 2.6 kernel no boot with single drive RAID Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: juff at core.com QAContact: kernel-bugs at lists.ubuntu.com I suspect that the 2.6 kernel is incompatible with a single HD on a RAID controller card. I have a Pentium III 700 MHZ Intel BX chipset motherboard 385MB RAM with a PCI RAID controler card. The card is connected to a single IDE hard drive (thus not operating in RAID mode). I also have two other physical hard drives connected to the motherboard IDE contriller. It boots okay into MEPIS kernel 2.4 and other distros. It won't boot into Ubuntu live CD kernel 2.6 or MEPIS kernel 2.6 (live and full install) or SUSE kernel 2.6. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:56:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:56:46 +0100 (BST) Subject: [Bug 15366] 2.6 kernel no boot with single drive RAID In-Reply-To: Message-ID: <20050913205646.169E122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15366 Ubuntu | kernel-package ------- Additional Comments From juff at core.com 2005-09-13 21:56 UTC ------- Works fine on 2.4 kernel, but not 2.6. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 20:57:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 21:57:15 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050913205715.A534C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-13 21:57 UTC ------- Daniel, gcc-3.4 package is also needed - just in case somebody else also want's to try it :) I've done the steps you suggested, system is booting up but there are some errors while starting alsa: Loading alsa ... amixer: hw:0 Invalid argument (message repeats about * 20) and in /var/log/dmesg: [4294700.731000] hda_codec: Unknown model for ALC880, trying auto-probe from BIOS... If I try to run alsamixer or alsamixergui: alsamixer: function snd_mixer_load failed: Invalid argument Without alsamixer I don't know how to unmute the soundcard, because of that I had no way to test if sound is working ... fbn at paul:~$ cat /proc/asound/version Advanced Linux Sound Architecture Driver Version 1.0.10rc1. Compiled on Sep 13 2005 for kernel 2.6.12-8-686. The card worked fine with Hoary, what changed that it's having these issues with new alsa version? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 21:32:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 22:32:56 +0100 (BST) Subject: [Bug 10093] Bad USB storage device causes problems In-Reply-To: Message-ID: <20050913213256.0DA9322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10093 Ubuntu | linux ------- Additional Comments From albertomm at gmail.com 2005-09-13 22:32 UTC ------- It also happens to me. I copy something to a CF card (using an usb2 card reader). First it goes well, then it stops and the remaining time starts to grow until several minutes (the card is only 16 Mb). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 21:34:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 22:34:38 +0100 (BST) Subject: [Bug 15161] Bad and weak sound on G5 powermac In-Reply-To: Message-ID: <20050913213438.0D63922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15161 Ubuntu | linux ------- Additional Comments From bertranddekoninck at wanadoo.fr 2005-09-13 22:34 UTC ------- (In reply to comment #0) > The sound is very week on Ubuntu Breezy-preview. I've tried to set the levels with the gnome mixer, but, with an > upper PCM level, the sound is also weak and then distorted. > > Bertrand Dekoninck (In reply to comment #1) > Can you send output for lspci and dmesg please? Here they are : lspci : 0000:f0:0b.0 Host bridge: Apple Computer Inc.: Unknown device 0059 0000:f0:10.0 VGA compatible controller: ATI Technologies Inc RV350 AP [Radeon 9600] 0001:00:01.0 PCI bridge: Apple Computer Inc. K2 HT-PCI Bridge 0001:00:02.0 PCI bridge: Apple Computer Inc. K2 HT-PCI Bridge 0001:00:03.0 PCI bridge: Apple Computer Inc. K2 HT-PCI Bridge 0001:00:04.0 PCI bridge: Apple Computer Inc. K2 HT-PCI Bridge 0001:00:05.0 PCI bridge: Apple Computer Inc. K2 HT-PCI Bridge 0001:01:07.0 ff00: Apple Computer Inc. K2 KeyLargo Mac/IO (rev 60) 0001:01:08.0 USB Controller: Apple Computer Inc. K2 KeyLargo USB 0001:01:09.0 USB Controller: Apple Computer Inc. K2 KeyLargo USB 0001:02:0d.0 ff00: Apple Computer Inc. K2 ATA/100 0001:02:0e.0 FireWire (IEEE 1394): Apple Computer Inc. K2 FireWire 0001:03:0f.0 Ethernet controller: Apple Computer Inc. K2 GMAC (Sun GEM) 0001:04:0c.0 IDE interface: ServerWorks: Unknown device 0240 0001:05:0b.0 USB Controller: NEC Corporation USB (rev 43) 0001:05:0b.1 USB Controller: NEC Corporation USB (rev 43) 0001:05:0b.2 USB Controller: NEC Corporation USB 2.0 (rev 04) dmesg : [ 0.000000] Found initrd at 0xc000000001a00000:0xc000000001fea000 [ 0.000000] trying to initialize btext ... [ 0.000000] U3-DART: table not allocated, using direct DMA [ 0.000000] Starting Linux PPC64 2.6.12-8-powerpc64-smp [ 0.000000] ----------------------------------------------------- [ 0.000000] ppc64_pft_size = 0x18 [ 0.000000] ppc64_debug_switch = 0x0 [ 0.000000] ppc64_interrupt_controller = 0x1 [ 0.000000] systemcfg = 0xc000000000320000 [ 0.000000] systemcfg->platform = 0x400 [ 0.000000] systemcfg->processorCount = 0x2 [ 0.000000] systemcfg->physicalMemorySize = 0x40000000 [ 0.000000] ppc64_caches.dcache_line_size = 0x80 [ 0.000000] ppc64_caches.icache_line_size = 0x80 [ 0.000000] htab_address = 0xc00000003e000000 [ 0.000000] htab_hash_mask = 0x1ffff [ 0.000000] ----------------------------------------------------- [ 0.000000] [boot]0100 MM Init [ 0.000000] [boot]0100 MM Init Done [ 0.000000] Linux version 2.6.12-8-powerpc64-smp (buildd at adare) (gcc version 3.4.5 20050809 (prerelease) (Debian 3.4.4-6ubuntu6)) #1 SMP Tue Aug 30 23:43:33 BST 2005 [ 0.000000] [boot]0012 Setup Arch [ 0.000000] Top of RAM: 0x40000000, Total RAM: 0x40000000 [ 0.000000] Memory hole size: 0MB [ 0.000000] Syscall map setup, 244 32 bits and 220 64 bits syscalls [ 0.000000] Found U3 memory controller & host bridge, revision: 55 [ 0.000000] Mapped at 0xe000000080140000 [ 0.000000] Found a K2 mac-io controller, rev: 96, mapped at 0xe000000080181000 [ 0.000000] PowerMac motherboard: PowerMac G5 [ 0.000000] nvram: Checking bank 0... [ 0.000000] nvram: gen0=390, gen1=391 [ 0.000000] nvram: Active bank is: 1 [ 0.000000] Adding PCI host bridge /pci at 0,f0000000 [ 0.000000] Found U3-AGP PCI host bridge. Firmware bus number: 240->255 [ 0.000000] Adding PCI host bridge /ht at 0,f2000000 [ 0.000000] Can't get bus-range for /ht at 0,f2000000, assume bus 0 [ 0.000000] U3/HT: hole, 0 end at 8fffffff, 1 start at a0000000 [ 0.000000] Found U3-HT PCI host bridge. Firmware bus number: 0->239 [ 0.000000] Can't get bus-range for /ht at 0,f2000000 [ 0.000000] PCI Host 0, io start: fffffffffd800000; io end: fffffffffdffffff [ 0.000000] PCI Host 1, io start: 0; io end: 3fffff [ 0.000000] Using native/NAP idle loop [ 0.000000] On node 0 totalpages: 262144 [ 0.000000] DMA zone: 262144 pages, LIFO batch:31 [ 0.000000] Normal zone: 0 pages, LIFO batch:1 [ 0.000000] HighMem zone: 0 pages, LIFO batch:1 [ 0.000000] [boot]0015 Setup Done [ 0.000000] Built 1 zonelists [ 0.000000] Kernel command line: root=/dev/sda5 ro quiet splash [ 0.000000] PowerMac using OpenPIC irq controller at 0x80040000 [ 0.000000] mpic: Setting up MPIC " K2-MPIC " version 1.2 at 80040000, max 4 CPUs [ 0.000000] mpic: ISU size: 120, shift: 7, mask: 7f [ 0.000000] mpic: Initializing for 120 sources [ 0.000000] Slave OpenPIC at 0xf8040000 hooked on IRQ 56 [ 0.000000] mpic: Setting up MPIC " U3-MPIC " version 1.2 at f8040000, max 4 CPUs [ 0.000000] mpic: ISU size: 124, shift: 7, mask: 7f [ 0.000000] mpic: Initializing for 124 sources [ 0.000000] PID hash table entries: 4096 (order: 12, 131072 bytes) [ 0.000000] time_init: decrementer frequency = 33.333333 MHz [ 18.363399] Console: colour dummy device 80x25 [ 18.364938] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 18.367029] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 18.367904] freeing bootmem node 0 [ 18.383166] Memory: 1001596k/1048576k available (2632k kernel code, 46252k reserved, 1300k data, 275k bss, 220k init) [ 18.383312] Calibrating delay loop... 66.56 BogoMIPS (lpj=33280) [ 18.402407] Security Framework v1.0.0 initialized [ 18.402413] SELinux: Disabled at boot. [ 18.402440] Mount-cache hash table entries: 256 [ 18.404770] checking if image is initramfs... it is [ 18.995180] Freeing initrd memory: 6056k freed [ 18.995798] PowerMac SMP probe found 2 cpus [ 18.995811] Timebase clock is Pulsar chip [ 18.995814] requesting IPIs ... [ 18.995860] IPIs requested... [ 19.076196] Processor 1 found. [ 19.080223] Brought up 2 CPUs [ 19.080459] CPU0 attaching sched-domain: [ 19.080462] domain 0: span 00000001 [ 19.080466] groups: 00000001 [ 19.080472] domain 1: span 00000003 [ 19.080477] groups: 00000001 00000002 [ 19.080484] domain 2: span 00000003 [ 19.080490] groups: 00000003 [ 19.080497] CPU1 attaching sched-domain: [ 19.080499] domain 0: span 00000002 [ 19.080503] groups: 00000002 [ 19.080509] domain 1: span 00000003 [ 19.080513] groups: 00000002 00000001 [ 19.080521] domain 2: span 00000003 [ 19.080526] groups: 00000003 [ 19.081497] NET: Registered protocol family 16 [ 19.179728] PCI: Probing PCI hardware [ 19.182296] PCI: Probing PCI hardware done [ 19.183233] TC classifier action (bugs to netdev at vger.kernel.org cc hadi at cyberus.ca) [ 19.183848] i/pSeries Real Time Clock Driver v1.1 [ 19.184098] nvram_init: Could not find nvram partition for nvram buffered error logging. [ 19.185273] audit: initializing netlink socket (disabled) [ 19.185288] audit(16559223310752.188:0): initialized [ 19.185604] VFS: Disk quotas dquot_6.5.1 [ 19.185634] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 19.185679] devfs: 2004-01-31 Richard Gooch (rgooch at atnf.csiro.au) [ 19.185691] devfs: boot_options: 0x0 [ 19.185742] Initializing Cryptographic API [ 19.186135] PCI: Enabling device: (0000:f0:10.0), cmd 7 [ 19.384649] radeonfb: Found Open Firmware ROM Image [ 19.384655] radeonfb: Retreived PLL infos from Open Firmware [ 19.384660] radeonfb: Reference=27.00 MHz (RefDiv=12) Memory=200.00 Mhz, System=325.00 MHz [ 19.384664] radeonfb: PLL min 12000 max 35000 [ 19.955701] radeonfb: Monitor 1 type CRT found [ 19.955704] radeonfb: EDID probed [ 19.955707] radeonfb: Monitor 2 type CRT found [ 19.962227] Trying to im_free nonexistent area (e000000080000000) [ 20.014519] Console: switching to colour frame buffer device 160x64 [ 20.014714] radeonfb (0000:f0:10.0): ATI Radeon AP [ 20.058797] vio_register_driver: driver hvc_console registering [ 20.058859] HVSI: registered 0 devices [ 20.058867] io scheduler noop registered [ 20.058896] io scheduler anticipatory registered [ 20.058908] io scheduler deadline registered [ 20.058937] io scheduler cfq registered [ 20.059960] RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize [ 20.060132] MacIO PCI driver attached to K2 chipset [ 20.060877] PowerMac G5 Thermal control driver 1.2b2 [ 20.061040] Detected fan controls: [ 20.061043] 0: PWM fan, id 1, location: BACKSIDE,SYS CTRLR FAN [ 20.061046] 1: RPM fan, id 2, location: DRIVE BAY [ 20.061049] 2: PWM fan, id 2, location: SLOT,PCI FAN [ 20.061052] 3: RPM fan, id 3, location: CPU A INTAKE [ 20.061055] 4: RPM fan, id 4, location: CPU A EXHAUST [ 20.061058] 5: RPM fan, id 5, location: CPU B INTAKE [ 20.061061] 6: RPM fan, id 6, location: CPU B EXHAUST [ 20.061124] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 [ 20.061133] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx [ 20.061254] PCI: Enabling device: (0001:02:0d.0), cmd 16 [ 21.073205] ide0: Found Apple K2 ATA-6 controller, bus ID 3, irq 39 [ 21.073219] Probing IDE interface ide0... [ 21.439527] hda: SONY DVD RW DW-Q28A, ATAPI CD/DVD-ROM drive [ 22.051234] ide0 at 0xe000000083f7c000-0xe000000083f7c007,0xe000000083f7c160 on irq 39 [ 22.051524] mice: PS/2 mouse device common for all mice [ 22.051584] /u3 at 0,f8000000/i2c at f8001000: Missing interrupt or address ! [ 22.051952] Found KeyWest i2c on "mac-io", 1 channel, stepping: 4 bits [ 22.052033] NET: Registered protocol family 2 [ 22.063859] IP: routing cache hash table of 4096 buckets, 64Kbytes [ 22.064155] TCP established hash table entries: 262144 (order: 10, 4194304 bytes) [ 22.069504] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) [ 22.070852] TCP: Hash tables configured (established 262144 bind 65536) [ 22.071163] Freeing unused kernel memory: 220k freed [ 22.117773] Capability LSM initialized [ 22.126858] NET: Registered protocol family 1 [ 22.321326] usbcore: registered new driver usbfs [ 22.321415] usbcore: registered new driver hub [ 22.322536] ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI) [ 22.322630] PCI: Enabling device: (0001:01:08.0), cmd 2 [ 22.322654] ohci_hcd 0001:01:08.0: Apple Computer Inc. K2 KeyLargo USB [ 22.322782] ohci_hcd 0001:01:08.0: new USB bus registered, assigned bus number 1 [ 22.322794] ohci_hcd 0001:01:08.0: irq 27, io mem 0x80081000 [ 22.354241] hub 1-0:1.0: USB hub found [ 22.354257] hub 1-0:1.0: 2 ports detected [ 22.375241] PCI: Enabling device: (0001:01:09.0), cmd 2 [ 22.375258] ohci_hcd 0001:01:09.0: Apple Computer Inc. K2 KeyLargo USB (#2) [ 22.375349] ohci_hcd 0001:01:09.0: new USB bus registered, assigned bus number 2 [ 22.375361] ohci_hcd 0001:01:09.0: irq 28, io mem 0x80080000 [ 22.405693] hub 2-0:1.0: USB hub found [ 22.405712] hub 2-0:1.0: 2 ports detected [ 22.426730] PCI: Enabling device: (0001:05:0b.0), cmd 2 [ 22.426743] ohci_hcd 0001:05:0b.0: NEC Corporation USB [ 22.426824] ohci_hcd 0001:05:0b.0: new USB bus registered, assigned bus number 3 [ 22.426836] ohci_hcd 0001:05:0b.0: irq 63, io mem 0x80702000 [ 22.458179] hub 3-0:1.0: USB hub found [ 22.458193] hub 3-0:1.0: 3 ports detected [ 22.479231] PCI: Enabling device: (0001:05:0b.1), cmd 2 [ 22.479244] ohci_hcd 0001:05:0b.1: NEC Corporation USB (#2) [ 22.479328] ohci_hcd 0001:05:0b.1: new USB bus registered, assigned bus number 4 [ 22.479336] ohci_hcd 0001:05:0b.1: irq 63, io mem 0x80701000 [ 22.509680] hub 4-0:1.0: USB hub found [ 22.509695] hub 4-0:1.0: 2 ports detected [ 22.619608] sungem.c:v0.98 8/24/03 David S. Miller (davem at redhat.com) [ 22.663014] PHY ID: 2062e0, addr: 1 [ 22.664416] eth0: Sun GEM (PCI) 10/100/1000BaseT Ethernet 00:14:51:03:bd:56 [ 22.664427] eth0: Found BCM5421-K2 PHY [ 22.692132] SCSI subsystem initialized [ 22.694066] libata version 1.11 loaded. [ 22.695585] sata_svw version 1.05 [ 22.695711] ata1: SATA max UDMA/133 cmd 0xE000000084183000 ctl 0xE000000084183020 bmdma 0xE000000084183030 irq 0 [ 22.695777] ata2: SATA max UDMA/133 cmd 0xE000000084183100 ctl 0xE000000084183120 bmdma 0xE000000084183130 irq 0 [ 22.695821] ata3: SATA max UDMA/133 cmd 0xE000000084183200 ctl 0xE000000084183220 bmdma 0xE000000084183230 irq 0 [ 22.695873] ata4: SATA max UDMA/133 cmd 0xE000000084183300 ctl 0xE000000084183320 bmdma 0xE000000084183330 irq 0 [ 22.899975] ata1: dev 0 cfg 49:2f00 82:7c6b 83:7f09 84:4673 85:7c69 86:3e01 87:4663 88:007f [ 22.899980] ata1: dev 0 ATA, max UDMA/133, 320173056 sectors: lba48 [ 22.900943] ata1: dev 0 configured for UDMA/133 [ 22.900947] scsi0 : sata_svw [ 23.101706] ata2: no device found (phy stat 00000004) [ 23.101710] scsi1 : sata_svw [ 23.279707] usb 4-2: new full speed USB device using ohci_hcd and address 2 [ 23.303206] ata3: no device found (phy stat 00000004) [ 23.303210] scsi2 : sata_svw [ 23.387743] hub 4-2:1.0: USB hub found [ 23.390677] hub 4-2:1.0: 3 ports detected [ 23.503707] ata4: no device found (phy stat 00000004) [ 23.503710] scsi3 : sata_svw [ 23.503947] Vendor: ATA Model: Maxtor 6B160M0 Rev: BANC [ 23.503969] Type: Direct-Access ANSI SCSI revision: 05 [ 23.575943] PCI: Enabling device: (0001:05:0b.2), cmd 6 [ 23.575961] ehci_hcd 0001:05:0b.2: NEC Corporation USB 2.0 [ 23.592662] usb 4-2.1: new low speed USB device using ohci_hcd and address 3 [ 23.596819] ehci_hcd 0001:05:0b.2: new USB bus registered, assigned bus number 5 [ 23.596830] ehci_hcd 0001:05:0b.2: irq 63, io mem 0x80700000 [ 23.596875] ehci_hcd 0001:05:0b.2: park 0 [ 23.596884] ehci_hcd 0001:05:0b.2: USB 2.0 initialized, EHCI 1.00, driver 10 Dec 2004 [ 23.597076] hub 5-0:1.0: USB hub found [ 23.597090] hub 5-0:1.0: 5 ports detected [ 23.620672] hub 4-2:1.0: hub_port_status failed (err = -110) [ 23.623677] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.626662] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.629666] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.632664] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.632838] hub 4-2:1.0: Cannot enable port 1. Maybe the USB cable is bad? [ 23.635658] hub 4-2:1.0: cannot disable port 1 (err = -110) [ 23.638666] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.641665] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.644659] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.647658] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.650662] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.650838] hub 4-2:1.0: Cannot enable port 1. Maybe the USB cable is bad? [ 23.653660] hub 4-2:1.0: cannot disable port 1 (err = -110) [ 23.656660] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.659664] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.662662] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.665657] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.668656] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.668829] hub 4-2:1.0: Cannot enable port 1. Maybe the USB cable is bad? [ 23.671660] hub 4-2:1.0: cannot disable port 1 (err = -110) [ 23.674658] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.677657] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.680660] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.683658] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.686658] hub 4-2:1.0: cannot reset port 1 (err = -110) [ 23.686830] hub 4-2:1.0: Cannot enable port 1. Maybe the USB cable is bad? [ 23.689662] hub 4-2:1.0: cannot disable port 1 (err = -110) [ 23.692660] hub 4-2:1.0: cannot disable port 1 (err = -110) [ 23.707656] hub 4-2:1.0: hub_port_status failed (err = -110) [ 23.722659] hub 4-2:1.0: hub_port_status failed (err = -110) [ 23.878394] usb 4-2: USB disconnect, address 2 [ 24.055707] usb 4-2: new full speed USB device using ohci_hcd and address 7 [ 24.163716] hub 4-2:1.0: USB hub found [ 24.166626] hub 4-2:1.0: 3 ports detected [ 24.368612] usb 4-2.1: new low speed USB device using ohci_hcd and address 8 [ 24.571604] usb 4-2.2: new full speed USB device using ohci_hcd and address 9 [ 24.774593] usb 4-2.3: new full speed USB device using ohci_hcd and address 10 [ 25.063848] eth0: Link is up at 100 Mbps, full-duplex. [ 25.730606] usbcore: registered new driver hiddev [ 25.739674] input: USB HID v1.10 Mouse [Microsoft Microsoft USB Mouse] on usb-0001:05:0b.1-2.1 [ 25.749640] input: USB HID v1.10 Keyboard [Mitsumi Electric Apple Extended USB Keyboard] on usb-0001:05:0b.1-2.3 [ 25.760596] input: USB HID v1.10 Device [Mitsumi Electric Apple Extended USB Keyboard] on usb-0001:05:0b.1-2.3 [ 25.760608] usbcore: registered new driver usbhid [ 25.760613] drivers/usb/input/hid-core.c: v2.01:USB HID core driver [ 25.876559] ide_generic: doesn't contain .toc or .stubs. [ 25.888515] hda: ATAPI 32X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache [ 25.888526] Uniform CD-ROM driver Revision: 3.20 [ 25.898212] SCSI device sda: 320173056 512-byte hdwr sectors (163929 MB) [ 25.898254] SCSI device sda: drive cache: write back [ 25.898416] SCSI device sda: 320173056 512-byte hdwr sectors (163929 MB) [ 25.898454] SCSI device sda: drive cache: write back [ 25.898460] /dev/scsi/host0/bus0/target0/lun0: [mac] p1 p2 p3 p4 p5 p6 p7 p8 [ 25.918978] Attached scsi disk sda at scsi0, channel 0, id 0, lun 0 [ 27.167113] kjournald starting. Commit interval 5 seconds [ 27.167158] EXT3-fs: mounted filesystem with ordered data mode. [ 28.002430] md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27 [ 32.313509] Adding 2217976k swap on /dev/sda7. Priority:-1 extents:1 [ 32.456721] EXT3 FS on sda5, internal journal [ 34.343402] ieee1394: Initialized config rom entry `ip1394' [ 34.352125] sbp2: Unknown symbol bus_to_virt [ 38.143227] device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel at redhat.com [ 38.730867] cdrom: open failed. [ 38.732715] ioctl32(evms_activate:4729): Unknown cmd fd(7) cmd(00000330){00} arg(ff9025d8) on /dev/evms/.nodes/sda [ 39.235619] kjournald starting. Commit interval 5 seconds [ 39.235783] EXT3 FS on sda6, internal journal [ 39.235791] EXT3-fs: mounted filesystem with ordered data mode. [ 40.230633] Linux agpgart interface v0.101 (c) Dave Jones [ 40.232007] uninorth_agp: Unknown symbol flush_dcache_range [ 40.454996] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 40.461481] shpchp: shpc_init : shpc_cap_offset == 0 [ 40.461493] shpchp: shpc_init : shpc_cap_offset == 0 [ 40.461502] shpchp: shpc_init : shpc_cap_offset == 0 [ 40.461512] shpchp: shpc_init : shpc_cap_offset == 0 [ 40.461521] shpchp: shpc_init : shpc_cap_offset == 0 [ 40.461528] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 41.131154] ohci1394: $Rev: 1250 $ Ben Collins [ 41.131173] PCI: Enabling device: (0001:02:0e.0), cmd 2 [ 41.134140] ohci1394: fw-host0: Unexpected PCI resource length of 1000! [ 41.185829] ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[40] MMIO=[80100000-801007ff] Max Packet=[4096] [ 42.457168] ieee1394: Host added: ID:BUS[0-00:1023] GUID[001451fffe03bd56] [ 43.669754] ts: Compaq touchscreen protocol output [ 44.451665] eth0: Link is up at 100 Mbps, full-duplex. [ 44.451672] eth0: Pause is disabled [ 45.752381] NET: Registered protocol family 10 [ 45.752631] Disabled Privacy Extensions on device c0000000003f10d0(lo) [ 45.808483] IPv6 over IPv4 tunneling driver [ 51.023444] lp: driver loaded but no devices found [ 53.314397] ioctl32(pbbuttonsd:6627): Unknown cmd fd(3) cmd(401f4520){00} arg(ff939980) on /dev/input/event0 [ 53.314970] ioctl32(pbbuttonsd:6627): Unknown cmd fd(3) cmd(401f4520){00} arg(ff939980) on /dev/input/event1 [ 53.315227] ioctl32(pbbuttonsd:6627): Unknown cmd fd(3) cmd(401f4520){00} arg(ff939980) on /dev/input/event2 [ 53.315323] ioctl32(pbbuttonsd:6627): Unknown cmd fd(3) cmd(401f4520){00} arg(ff939980) on /dev/input/event3 [ 53.984757] Bluetooth: Core ver 2.7 [ 53.984772] NET: Registered protocol family 31 [ 53.984775] Bluetooth: HCI device and connection manager initialized [ 53.984800] Bluetooth: HCI socket layer initialized [ 54.001568] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/005/001 [ 54.002197] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/004/010 [ 54.002536] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/004/009 [ 54.002907] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/004/008 [ 54.003218] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/004/007 [ 54.003520] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/004/001 [ 54.003897] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/003/001 [ 54.004269] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/002/001 [ 54.004648] ioctl32(hid2hci:6704): Unknown cmd fd(3) cmd(c00c5512){00} arg(fff8b5d8) on /proc/bus/usb/001/001 [ 54.009617] Bluetooth: L2CAP ver 2.7 [ 54.009623] Bluetooth: L2CAP socket layer initialized [ 54.049776] Bluetooth: RFCOMM ver 1.5 [ 54.049791] Bluetooth: RFCOMM socket layer initialized [ 54.049811] Bluetooth: RFCOMM TTY layer initialized [ 56.617205] eth0: no IPv6 routers present -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 21:46:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 22:46:02 +0100 (BST) Subject: [Bug 15339] loop-device not always released after usage. In-Reply-To: Message-ID: <20050913214602.6099322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15339 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |UNKNOWN Summary|loop-device not always |loop-device not always |released after usage. |released after usage. ------- Additional Comments From mdz at ubuntu.com 2005-09-13 22:46 UTC ------- cat /proc/mounts Also, please provide a step-by-step process which we could follow to trigger the problem -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 21:52:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 22:52:29 +0100 (BST) Subject: [Bug 15341] Kernel Oops - snd_hda_intel / snd_hda_codec In-Reply-To: Message-ID: <20050913215229.C5D3C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15341 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|normal |major Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 21:53:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 22:53:26 +0100 (BST) Subject: [Bug 15370] New: No text in VGA console. Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15370 Ubuntu | linux Summary: No text in VGA console. Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: henrik at robackshus3.ac.se QAContact: kernel-bugs at lists.ubuntu.com Since linux-image-2.6.12-7-686 the VGA consoles have stopped working on my computer. No text shows during boot or later, but otherwise everything proceeds as it is supposed to and I end up in X. The keyboard input still works on the tty's, I just can't see what's going on. With 2.6.12-6 these problems do not happen. I am unsure of what hardware and system information I should provide, but I am happy to provide any that you ask for. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 22:08:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 23:08:30 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050913220830.0AFA222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-13 23:08 UTC ------- My understanding is that this driver has been superseded by skge -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 22:14:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 23:14:02 +0100 (BST) Subject: [Bug 15366] 2.6 kernel no boot with single drive RAID In-Reply-To: Message-ID: <20050913221402.0EFA322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15366 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-13 23:14 UTC ------- Please describe the problem as you observed it, rather than describing your idea about the cause. What happened? The document at http://www.chiark.greenend.org.uk/~sgtatham/bugs.html might help you in creating a more complete bug report. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 22:21:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 23:21:32 +0100 (BST) Subject: [Bug 15370] No text in VGA console. In-Reply-To: Message-ID: <20050913222132.9ADFE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15370 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-13 23:21 UTC ------- Please show us the contents of /proc/cmdline. What if you boot in recovery mode? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 22:30:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 23:30:08 +0100 (BST) Subject: [Bug 15305] ACPI non-functional on Asus V6800V In-Reply-To: Message-ID: <20050913223008.0231822F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15305 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 22:34:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 23:34:22 +0100 (BST) Subject: [Bug 15370] No text in VGA console. In-Reply-To: Message-ID: <20050913223422.2BCC722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15370 Ubuntu | linux ------- Additional Comments From henrik at robackshus3.ac.se 2005-09-13 23:34 UTC ------- When booting in recovery mode it works. The contents of /proc/cmdline is as follows when booting in normal mode: $ cat /proc/cmdline root=/dev/hda1 ro quiet splash Removing the "splash" boot option solves the problem for me. This is using 2.6.12-8-686. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 22:50:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 13 Sep 2005 23:50:28 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050913225028.557AC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux crimsun at fungus.sh.nu changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |monotek at freakmail.de ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-13 23:50 UTC ------- *** Bug 15341 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 23:08:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 00:08:25 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050913230825.DA3FE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux crimsun at fungus.sh.nu changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-14 00:08 UTC ------- (In reply to comment #6) > gcc-3.4 package is also needed - just in case somebody else also want's to try it :) Thanks, been a while since I brushed up on the deps. > I've done the steps you suggested, system is booting up but there are some > errors while starting alsa: > Loading alsa ... > amixer: hw:0 Invalid argument > (message repeats about * 20) > and in /var/log/dmesg: > [4294700.731000] hda_codec: Unknown model for ALC880, trying auto-probe from > BIOS... Please attach full output of dmesg. > If I try to run alsamixer or alsamixergui: > alsamixer: function snd_mixer_load failed: Invalid argument > > Without alsamixer I don't know how to unmute the soundcard, because of that I > had no way to test if sound is working ... amixer can be used, e.g., amixer sset Master on (which would unmute Master). > The card worked fine with Hoary, what changed that it's having these issues with > new alsa version? Short answer: "too many changes." Long answer: various initialization and codec changes. You may need a checkout of the alsa-driver and alsa-kernel cvs modules. Let's defer that until we rule out the BIOS issue... $ cvs -d:pserver:anonymous at cvs.sourceforge.net:/cvsroot/alsa login $ cvs -z3 -d:pserver:anonymous at cvs.sourceforge.net:/cvsroot/alsa co alsa-kernel alsa-driver -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 13 23:16:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 00:16:44 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050913231644.E0D2122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux ------- Additional Comments From adam.hill at gmail.com 2005-09-14 00:16 UTC ------- (In reply to comment #2) > My understanding is that this driver has been superseded by skge So does this need to be reentered as "skge does not support Yukon2 Marvell cards in Breezy"? with appropriate lspci and lsmod dumps? This seems to be the conclusion at the end of Bug #6142 - http://bugzilla.ubuntu.com/show_bug.cgi? id=6142#c35 skge fails to find the hardware as well -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 00:22:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 01:22:04 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050914002204.5DBD522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-14 01:22 UTC ------- (In reply to comment #3) > (In reply to comment #2) > > My understanding is that this driver has been superseded by skge > > So does this need to be reentered as "skge does not support Yukon2 Marvell cards in Breezy"? with appropriate lspci > and lsmod dumps? This seems to be the conclusion at the end of Bug #6142 - http://bugzilla.ubuntu.com/show_bug.cgi? > id=6142#c35 > > skge fails to find the hardware as well > Yes. skge doesn't work, even if you load it manually? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 00:33:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 01:33:04 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050914003304.2EF2822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 00:37:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 01:37:10 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050914003710.1B9AA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 01:37 UTC ------- Yukon2 will be supported in -8.14, so marking pending upload. The driver is called sky2 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 00:45:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 01:45:15 +0100 (BST) Subject: [Bug 2681] Dell Latitude hotplug fatal errors--installed OS won't boot In-Reply-To: Message-ID: <20050914004515.7AA6922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2681 Ubuntu (laptop) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 01:45 UTC ------- Anyone tried breezy with a machine showing this problem? I'd be interested if it still exists there (can't do much about warty). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 00:45:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 01:45:40 +0100 (BST) Subject: [Bug 3960] hangs after first reboot - serial 8250 too much work for irq11 In-Reply-To: Message-ID: <20050914004540.318A322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3960 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO Priority|P1 |P2 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 00:46:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 01:46:25 +0100 (BST) Subject: [Bug 3960] hangs after first reboot - serial 8250 too much work for irq11 In-Reply-To: Message-ID: <20050914004625.B44FD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3960 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P2 |P1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 00:47:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 01:47:52 +0100 (BST) Subject: [Bug 2681] Dell Latitude hotplug fatal errors--installed OS won't boot In-Reply-To: Message-ID: <20050914004752.099DF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2681 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO Priority|P1 |P2 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 00:51:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 01:51:37 +0100 (BST) Subject: [Bug 3960] hangs after first reboot - serial 8250 too much work for irq11 In-Reply-To: Message-ID: <20050914005137.9399622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3960 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 01:51 UTC ------- Old bug report, and no response in some time. Going to assume this is fixed with latest software. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:00:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:00:16 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050914010016.625FB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 02:00 UTC ------- (In reply to comment #13) > I have been using Hoary and Breezy with my IBM Thinkpad T41 that also has an > ipw2100 wireless NIC. However, I have not experienced the problem described in > this bug report. > > Just to let you know. Since the acpi scripts work around this, did you try the manual test case (ifdown lo...)? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:12:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:12:15 +0100 (BST) Subject: [Bug 7213] Live and Install hangs after SCSI initialization In-Reply-To: Message-ID: <20050914011215.29DCC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7213 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Array 6 Install CD AND Live |Live and Install hangs after |CD fails to boot |SCSI initialization ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 02:12 UTC ------- (In reply to comment #4) > Ctrl Alt F1 doesn't do anything. I noticed, however, that it's not a hard > freeze. Ctrl Alt Del still works and I see it come up saying kill processes, etc > and then it reboots. If this is true, then the system isn't frozen in the kernel startup. Init handles this event, and the "Killing processes", so that would mean that init has started at this point. Not sure what sort of twist that puts on the problem, but it certainly sounds like the installer is getting to some point in the userspace boot process. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:17:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:17:44 +0100 (BST) Subject: [Bug 10116] powernowd causes mouse to become erratic on high I/O load In-Reply-To: Message-ID: <20050914011744.9825622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10116 Ubuntu | powernowd ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |thom at ubuntu.com Component|linux |powernowd Summary|erratic mouse during heavy |powernowd causes mouse to |processor action |become erratic on high I/O | |load -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:18:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:18:50 +0100 (BST) Subject: [Bug 7287] Mouse stops working during/after heavy I/O In-Reply-To: Message-ID: <20050914011850.03A3B22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7287 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 02:18 UTC ------- Bug 10116 claims that powernowd is related to the problem. Can you see if disabling powernowd stops the problem you are having aswell? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:19:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:19:38 +0100 (BST) Subject: [Bug 7287] Mouse stops working during/after heavy I/O In-Reply-To: Message-ID: <20050914011938.543ED22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7287 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P1 |P2 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:22:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:22:33 +0100 (BST) Subject: [Bug 8427] k3b locked up my ubuntu hoary totally when UDF DVD+RW is in the drive In-Reply-To: Message-ID: <20050914012233.08C4F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8427 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P1 |P2 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 02:22 UTC ------- Can I get an update on this bug, atleast in regards to it affecting breezy? Maybe try to Live CD and see if that has a problem? Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:23:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:23:18 +0100 (BST) Subject: [Bug 8427] k3b locked up my ubuntu hoary totally when UDF DVD+RW is in the drive In-Reply-To: Message-ID: <20050914012318.1D55F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8427 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:25:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:25:36 +0100 (BST) Subject: [Bug 8843] System becomes unresponsive when CD-ROM is inserted In-Reply-To: Message-ID: <20050914012536.7916122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8843 Ubuntu (kubuntu) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 02:25 UTC ------- Not a kernel bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:27:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:27:42 +0100 (BST) Subject: [Bug 9064] System powers off unexpectedly In-Reply-To: Message-ID: <20050914012742.941BA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9064 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 02:27 UTC ------- Could you please try the latest Colony 4 Live CD to see if it fixes the problem? There have been considerable changes to the ACPI drivers since Hoary, and I suspect this has something to do with ACPI. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:28:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:28:57 +0100 (BST) Subject: [Bug 9815] Installation hangs at ide-cd on Asus P4R8T. In-Reply-To: Message-ID: <20050914012857.363C322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9815 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED Priority|P1 |P2 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 02:28 UTC ------- Can you try either the latest 2.6.12-8 kernel, or the Colony 4 Live CD? Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:30:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:30:13 +0100 (BST) Subject: [Bug 10172] pnp: PnPACPI:METHOD_NAME_ _CRS failure In-Reply-To: Message-ID: <20050914013013.CF93F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10172 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 02:30 UTC ------- No response, and no info about what the problem was (other than some messages). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 01:33:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 02:33:12 +0100 (BST) Subject: [Bug 12942] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050914013312.7DDAD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 05:18:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 06:18:40 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050914051840.0081722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-14 06:18 UTC ------- Created an attachment (id=3788) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3788&action=view) /var/log/dmesg with alsa 1.0.10rc1. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 05:19:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 06:19:43 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050914051943.D526322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux fbn at thelogic.org changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #3788|application/octet-stream |text/plain mime type| | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 05:25:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 06:25:30 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050914052530.81E5622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-14 06:25 UTC ------- amixer sset Master on amixer: Mixer default load error: Invalid argument I've some difficulties compiling alsa-driver from cvs: ./configure: line 9231: ALSA_TOPLEVEL_SELECT: command not found ./configure: line 9241: ALSA_TOPLEVEL_OUTPUT: command not found configure: creating ./config.status config.status: creating version config.status: creating Makefile.conf config.status: creating snddevices config.status: creating utils/alsa-driver.spec config.status: creating utils/buildrpm config.status: error: cannot find input file: toplevel.config.in root at paul:/root/alsa-driver# find . | grep -i toplevel root at paul:/root/alsa-driver# About the alsa patch (alsa bug 1356): > -#include > +#include This was not fixed as I did a cvs checkout, is it right to replace the first line with the second line? Could you send me a binary version of the module that you've compiled on your or another system? I'm running 2.6.12-8-686 dmesg attached -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 06:27:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 07:27:43 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050914062743.DB28422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-14 07:27 UTC ------- (In reply to comment #10) > I've some difficulties compiling alsa-driver from cvs: All right, I've done a cvs checkout of alsa-kernel and alsa-driver as of ~25 minutes ago and rolled it into a deb compiled on current Breezy against linux-headers-2.6.12-8-686 that can be found here: http://sh.nu/~crimsun/alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb (md5sum eab278b69d4038b6c2274e08140004c6) In order to cleanly install the above deb, you'll need to "unclobber" your /lib/modules/$(uname -r). To do that, you need to download linux-image-$(uname -r) and linux-restricted-modules-$(uname -r), then remove the entire /lib/modules/$(uname -r) subdirectory. Finally: $ sudo apt-get --reinstall install linux-image-$(uname -r) linux-restricted-modules-$(uname -r) $ sudo dpkg -i /path/to/alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb Please reboot afterward, and attach the output from dmesg. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 07:34:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 08:34:01 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050914073401.BFECC22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |doko at ubuntu.com Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From cjwatson at ubuntu.com 2005-09-14 08:34 UTC ------- Kamion: because if you see it in installed kernels also, then it is a gcc-4.0 issue, as a backported to sarge, compiled with gcc-3.3 2.6.12-6 kernel does not exhibit the problem in the installed system. Kamion: waldi did some gcc 4.0 vs 3.3 test yesterday, and noticed that the offset into the struct super-node or whatever used changed between them. CCing doko in case he has any insight here. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 08:25:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 09:25:34 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050914082534.F242E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux ------- Additional Comments From cjwatson at ubuntu.com 2005-09-14 09:25 UTC ------- waldi reckons that adding nls_utf8 to some udeb (fs-common-modules, perhaps) will help. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 08:30:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 09:30:18 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050914083018.EFA3122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC|doko at ubuntu.com | ------- Additional Comments From cjwatson at ubuntu.com 2005-09-14 09:30 UTC ------- This seems to be the problem, indeed. Please add nls_utf8 to fs-common-modules on powerpc. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 08:48:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 09:48:08 +0100 (BST) Subject: [Bug 15398] New: GTK 2.8 rendering glitches with nvidia and RenderAccel=true Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15398 Ubuntu | linux-restricted-modules Summary: GTK 2.8 rendering glitches with nvidia and RenderAccel=true Product: Ubuntu Version: unspecified Platform: i386 URL: http://www.ubuntuforums.org/printthread.php?t=65212 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: cthulhoo at gmail.com QAContact: kernel-bugs at lists.ubuntu.com When using nvidia proprietary driver with RenderAccel enabled GTK in breezy (2.8.3) text rendering is broken in Firefox and occasional glitches are displayed in other applications. Details here: http://www.ubuntuforums.org/showthread.php?t=65212 Rationale for using nvidia' driver: nv is unfunctional on my configuration (6800LE + 20" DFP) - no 3d, not even native resolution support. Rationale for using RenderAccel: at the moment GTK with Cairo support is unbearably SLOW without acceleration. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 13:55:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 14:55:13 +0100 (BST) Subject: [Bug 14827] Garbled sound In-Reply-To: Message-ID: <20050914135513.27C1222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux ------- Additional Comments From spd106 at lycos.co.uk 2005-09-14 14:55 UTC ------- (In reply to comment #5) > I presume you imply that the ALSA and OSS output plugins in XMMS both work fine > regardless whether the external USB CD-ROM is connected? I thought this at first but then when i retried it i found that with the usb cd-rom plugged in it sometimes works with ALSA and OSS, but not everytime. I have tried internet streams with realplayer 8 and it seems to act in a similar way. Just to clarify the situation i will recap. First of all the laptop sound works fine on it's own. CD's work as do media files. The problems start when i plug in the usb drive. At first it will sound garbled in the right speaker, then the right speaker goes out of sync and seems to play faster. After about a minute it's nearly a second ahead of the left speaker. This always happens when i try to play an audio cd from the USB drive. I've tried cd player and xmms with ALSA, esound and OSS drivers. I can only use digital input. If i switch to analog i get no sound at all. It will also garble in Rhythmbox and Totem when playing an ogg file from the hard drive. When i play a cd from my internal dvd-rom drive i get different results. Using xmms and the Alsa or OSS output drivers it can play fine sometimes but not always, i often get around 40 secs of fine then it starts to garble. Other times it starts immediately or doesn't occur at all. It seems quite hit and miss. With the esound driver though it always goes bad. I get similar results with internet streams and realplayer 8. Once again ALSA and OSS are intermittant and esound always goes bad. If i change the DVD drive input to analog in xmms it seems to work perfectly. Oh and the usb drive is a Freecom FX-1 CD-RW. I think that about covers it. Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 14:31:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 15:31:24 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050914143124.4660122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ploum at fritalk.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ploum at fritalk.com ------- Additional Comments From ploum at fritalk.com 2005-09-14 15:31 UTC ------- Today, I tried to upgrade my Compaq Presario 1245 with PCMCIA wireless card (see https://wiki.ubuntu.com/LaptopTestingTeam/CompaqPresario1245 ) During the upgrade, the card service would not stop, allowing upgrade, due to this bug. The worst thing is that there's no way to stop this without rebooting the computer. All the related processes are not responding, even to kill -9. If you try an "ifconfig", it will wait forever without any chance to kill the ifconfig process. I think this bug might be really bad for people upgrading their laptop... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 14:35:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 15:35:20 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050914143520.56AAD22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux seb128 at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |seb128 at ubuntu.com AssignedTo|seb128 at ubuntu.com |ben.collins at ubuntu.com Status|NEEDINFO |UNCONFIRMED Component|gnome-menus |linux QAContact|desktop- |kernel-bugs at lists.ubuntu.com |bugs at lists.ubuntu.com | ------- Additional Comments From seb128 at ubuntu.com 2005-09-14 15:35 UTC ------- Inotify bug, reassigning. - get http://www.kernel.org/pub/linux/kernel/people/rml/inotify/utils/inotify-utils-0.25.tar.gz - start"./inotify_test /usr/share/gnome/apps/Internet" by example - load the box by starting a pbuilder by example: "$ ./inotify_test /usr/share/gnome/apps/Internet inotify device fd = 3 /usr/share/gnome/apps/Internet WD=1 read = 32 sizeof inotify_event = 16 pevent->len = 0 pevent->len = 0 EVENT ON WD=1 DELETE_SELF (file) 0x00000400 EVENT ON WD=1 IGNORED (file) 0x00008000" You get these events, but the directory has not changed ... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 15:27:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 16:27:19 +0100 (BST) Subject: [Bug 15305] ACPI non-functional on Asus V6800V In-Reply-To: Message-ID: <20050914152719.1BBEC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15305 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-14 16:27 UTC ------- Could you please grab http://www.kernel.org/pub/linux/kernel/people/lenb/acpi/utils/pmtools-20050823.tar.gz and build it, then run acpidmp and attach the output? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 15:46:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 16:46:33 +0100 (BST) Subject: [Bug 14827] Garbled sound In-Reply-To: Message-ID: <20050914154633.9290122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-14 16:46 UTC ------- Please ensure with hdparm that DMA is enabled for your internal DVD-ROM. The analog input works fine because it does not use digital audio extraction, and because the sync issues only occur with DAE I'm inclined to look at hdparm settings first and then whether "plughw:0,0" works better than "default" for the ALSA virtual device. Presuming your internal DVD-ROM is /dev/hdc (you'll need to confirm with /var/log/dmesg output): $ sudo hdparm -d /dev/hdc If it's disabled, please enable it using -d1, and test CD Player's and XMMS's DAE again. If it's enabled, please change XMMS's ALSA plugin configuration in Preferences. In the device drop-down menu, please replace "default" by typing "plughw:0,0". This will temporarily disable dmixed sounds, so please ensure esd is not running by unchecking System> Preferences> Sound> Enable sound server startup. Then test XMMS's DAE again. In both cases, make sure you've checked the multithreaded mode checkbox in XMMS's ALSA plugin configuration (Advanced settings). For testing, please UNCHECK the mmap mode checkbox. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 15:53:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 16:53:34 +0100 (BST) Subject: [Bug 13155] on boot, Kernel panic - not syncing : VFS: Unable to mount root fs on unknown-block(0, 0) In-Reply-To: Message-ID: <20050914155334.09CB722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13155 Ubuntu | linux ------- Additional Comments From vhindriksen at yahoo.com 2005-09-14 16:53 UTC ------- I have the same. This is the second time I had this kind of buggy update. When I googled I read it might have something to do with the VIA-chipset. I've got VIA-chipset, IDE hdd (secondairy master), PIII, nothing special. I did a diff on the 2.6.10-config and the new one 2.6.12 and there is a lot of difference! A lot of settings which were 'not set' before are now set. I don't know if I like that. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 16:00:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 17:00:27 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050914160027.6EE2722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-14 17:00 UTC ------- (In reply to comment #11) > In order to cleanly install the above deb, you'll need to "unclobber" your > /lib/modules/$(uname -r). To do that, you need to download linux-image-$(uname > -r) and linux-restricted-modules-$(uname -r), What do you mean by downloading? > then remove the entire > /lib/modules/$(uname -r) subdirectory. Finally: Thats not possible: rm -rf /lib/modules/2.6.12-8-686 rm: cannot remove directory `/lib/modules/2.6.12-8-686/volatile': Device or resource busy I restored my backup of that directory (cp /lib/modules/2.6.12-8-686-ORIG /lib/modules/2.6.12-8-686), no error occured. > $ sudo apt-get --reinstall install linux-image-$(uname -r) > linux-restricted-modules-$(uname -r) > $ sudo dpkg -i /path/to/alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb dpkg -i alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb (Reading database ... 91650 files and directories currently installed.) Unpacking alsa-modules-2.6.12-8-686 (from alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb) ... dpkg: error processing alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb (--install): trying to overwrite `/lib/modules/2.6.12-8-686/modules.pcimap', which is also in package linux-image-2.6.12-8-686 Errors were encountered while processing: alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb ls -l /lib/modules/2.6.12-8-686/modules.pcimap ls: /lib/modules/2.6.12-8-686/modules.pcimap: No such file or directory -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 18:01:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 19:01:19 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050914180119.4B18A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 19:01 UTC ------- I tried reproducing this using the examples. I do not have a wireless card, so I was just trying to do it with eth0 (since the report claimed that it worked with that too). However, things unloaded for me fine. I did: ifdown lo ifdown eth0 rmmod ndiswrapper rmmod 8139too (my eth0 driver) So this has something to do with ndiswrapper. Since I have not done anything to get ndiswrapper working, it isn't initializing any devices. Probably why I can't reproduce it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 19:04:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 20:04:10 +0100 (BST) Subject: [Bug 7213] Live and Install hangs after SCSI initialization In-Reply-To: Message-ID: <20050914190410.C296E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7213 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-14 20:04 UTC ------- Please test with the Breezy preview: http://lists.ubuntu.com/archives/ubuntu-announce/2005-September/000031.html -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 19:10:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 20:10:40 +0100 (BST) Subject: [Bug 10116] powernowd causes mouse to become erratic on high I/O load In-Reply-To: Message-ID: <20050914191040.E11C722F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10116 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|thom at ubuntu.com |ben.collins at ubuntu.com Component|powernowd |linux ------- Additional Comments From mdz at ubuntu.com 2005-09-14 20:10 UTC ------- All powernowd does is to tell the kernel to scale the CPU frequency. If that causes problems, it could be a hardware issue or a kernel issue, but not powernowd. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 19:14:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 20:14:45 +0100 (BST) Subject: [Bug 15298] Extreme sluggishness on ECS A530 under breezy (hoary works) In-Reply-To: Message-ID: <20050914191445.2FCE222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15298 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Instalation problem with |Extreme sluggishness on ECS |5.10 preview in a ECS A530 |A530 under breezy (hoary | |works) ------- Additional Comments From mdz at ubuntu.com 2005-09-14 20:14 UTC ------- Try pressing alt+sysrq+t when it hangs to see what is happening. Try control+alt+f2 to get a command line, and use shell commands like ps to see what is running. Please try the aforementioned kernel parameters, even if they were not necessary under 5.04, in order to help trace the problem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 19:18:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 20:18:42 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050914191842.2522C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|alsa-base |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 19:19:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 20:19:27 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050914191927.02DBF22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |mjg59 at codon.org.uk Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|hibernation in Breezy |Resume failure on ThinkPad | |T41 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 19:22:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 20:22:47 +0100 (BST) Subject: [Bug 15362] Harddisk LED always on, harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050914192247.167A322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|normal |minor Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-14 20:22 UTC ------- Please attach lspci output as well. The disk is working fine otherwise, right? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 19:27:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 20:27:42 +0100 (BST) Subject: [Bug 15396] Adaptec 2930U2 not detected properly? In-Reply-To: Message-ID: <20050914192742.E796F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15396 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|normal |major Component|ubuntu-base |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|ubuntu/kubuntu 5.10 preview |Adaptec 2930U2 not detected |does not install |properly? ------- Additional Comments From mdz at ubuntu.com 2005-09-14 20:27 UTC ------- Since we don't have the same SCSI controller that you do, we need very specific information in order to address this problem. Please boot the live CD and supply the following information: lspci output lspci -n output dmesg output lsmod output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 19:37:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 20:37:05 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050914193705.445F022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-14 20:37 UTC ------- (In reply to comment #12) > What do you mean by downloading? Since you've already restored the original /lib/modules/2.6.12-8-686, this instruction is moot. > dpkg -i alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb > (Reading database ... 91650 files and directories currently installed.) > Unpacking alsa-modules-2.6.12-8-686 (from > alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb) ... > dpkg: error processing alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb > (--install): > trying to overwrite `/lib/modules/2.6.12-8-686/modules.pcimap', which is also > in package linux-image-2.6.12-8-686 > Errors were encountered while processing: > alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb $ dpkg -i --force-overwrite alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 20:22:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 21:22:02 +0100 (BST) Subject: [Bug 15413] drivers/usb/class/usblp.c: usblp0: failed reading printer status In-Reply-To: Message-ID: <20050914202202.A4AE122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15413 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Printererror: Cannot print a|drivers/usb/class/usblp.c: |second job without switching|usblp0: failed reading |the printer off and on |printer status ------- Additional Comments From mdz at ubuntu.com 2005-09-14 21:22 UTC ------- Does the printer work under Ubuntu 5.04, or any other operating system you have available? This would help to rule out a problem with the printer, cabling, etc. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 20:27:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 21:27:59 +0100 (BST) Subject: [Bug 14800] No audio in gnome / colony 4 In-Reply-To: Message-ID: <20050914202759.83F8322F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14800 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|martin.pitt at ubuntu.com |ben.collins at ubuntu.com Component|gnome-media |linux QAContact|desktop- |kernel-bugs at lists.ubuntu.com |bugs at lists.ubuntu.com | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 20:31:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 21:31:19 +0100 (BST) Subject: [Bug 13155] on boot, Kernel panic - not syncing : VFS: Unable to mount root fs on unknown-block(0, 0) In-Reply-To: Message-ID: <20050914203119.ECC9322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13155 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-14 21:31 UTC ------- (In reply to comment #8) > I have the same. This is the second time I had this kind of buggy update. > When I googled I read it might have something to do with the VIA-chipset. I've > got VIA-chipset, IDE hdd (secondairy master), PIII, nothing special. Yours is a different bug; please open a new report with complete information about what happened. The issues in this bug relate to 2.6.10. > I did a diff on the 2.6.10-config and the new one 2.6.12 and there is a lot of > difference! A lot of settings which were 'not set' before are now set. I don't > know if I like that. This is normal for new releases of the kernel. At any rate, your problem is most likely with initramfs-tools and not with the kernel at all. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 20:38:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 21:38:54 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050914203854.171EB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|cjwatson at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-14 21:38 UTC ------- Please send: lspci output lspci -n output dmesg output from 2.6.10-5 dmesg output from 2.6.12-8 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 20:44:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 21:44:44 +0100 (BST) Subject: [Bug 15435] Hang when loading some module In-Reply-To: Message-ID: <20050914204444.9901C22F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15435 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |scott-bugs at ubuntu.com AssignedTo|scott-bugs at ubuntu.com |ben.collins at ubuntu.com Severity|normal |major Component|hotplug |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Breezy Preview Live CD fails|Hang when loading some |on Asus W3V |module ------- Additional Comments From mdz at ubuntu.com 2005-09-14 21:44 UTC ------- At the point where it is blocked, press alt+sysrq+t and see if there are any clues in the trace. On an installed system, you can also boot in recovery mode to see the kernel messages. There is no proper analogue for the live CD, I don't think...Scott? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 21:12:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 22:12:27 +0100 (BST) Subject: [Bug 15412] Dell PowerEdge Expandable RAID controller 4 (rev 06) not recognized In-Reply-To: Message-ID: <20050914211227.4D49122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15412 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Install problems |Dell PowerEdge Expandable | |RAID controller 4 (rev 06) | |not recognized ------- Additional Comments From mdz at ubuntu.com 2005-09-14 22:12 UTC ------- The devices advertised by the megaraid driver: alias: pci:v0000101Ed00009010sv*sd*bc*sc*i* alias: pci:v0000101Ed00009060sv*sd*bc*sc*i* alias: pci:v0000101Ed00001960sv0000103Csd000060E7bc*sc*i* alias: pci:v0000101Ed00001960sv0000103Csd000060E8bc*sc*i* don't seem to match your device: 0000:02:0e.0 0104: 1028:0013 (rev 06) Are you sure this is the right driver? Can you proceed with the installation if you load the driver manually? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 21:14:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 22:14:09 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050914211409.D251622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|linux-wlan-ng |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-14 22:14 UTC ------- (In reply to comment #4) > "You need to run exactly the same command twice, or it doesn't work?" > > Yes. I would say that nine times out of ten I get an implementation failure the first time > the command is run. I seem to remember this being pointed out on the linux-wlan mailing list > (or other documentation - Sorry, I do not remember). It is harmless to run it a second time > if it first succeeds. Sounds fishy. Please send the exact error message. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 21:14:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 22:14:48 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050914211448.8DC9C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 21:35:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 22:35:03 +0100 (BST) Subject: [Bug 15412] Dell PowerEdge Expandable RAID controller 4 (rev 06) not recognized In-Reply-To: Message-ID: <20050914213503.DF4A922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15412 Ubuntu | linux ------- Additional Comments From menahem.greenberg at insightix.com 2005-09-14 22:35 UTC ------- you load the driver manually? 1. I am sure this is the right driver I use it in another Linux Installation 2. I tried to proceed manually and couldnt. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 21:40:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 22:40:22 +0100 (BST) Subject: [Bug 15412] Dell PowerEdge Expandable RAID controller 4 (rev 06) not recognized In-Reply-To: Message-ID: <20050914214022.1670822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15412 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 22:40 UTC ------- It's supported by the megaraid_mbox driver. Can you see if this driver is loaded? Also, what version of Ubuntu are you trying to install? Please send the dmesg output aswell (or atleast do "dmesg | grep megaraid" and see if it shows any information from the driver). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 21:46:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 22:46:49 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050914214649.BDCA022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 22:46 UTC ------- Can you send the dmesg output from before and after you get this device working? (dmesg before plugin, then dmesg after you get the interface up and working using your minimal commands). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 21:51:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 22:51:05 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050914215105.C302B22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 22:51 UTC ------- Is it possible to reproduce this from the console, to see if there are any errors printed by the kernel prior to the freeze? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 21:59:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 22:59:36 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050914215936.828A122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 22:59 UTC ------- Created an attachment (id=3800) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3800&action=view) NDISWrapper v1.1 kernel module Compiled against kernel 2.6.12-8 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 22:01:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 23:01:12 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050914220112.13AE522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-14 23:01 UTC ------- Please try the attached kernel module. Our current ndiswrapper is v1.1, and this is v1.2. To do this, remove the old module just as you did in your example, and then do "insmod ndiswrapper.ko". Make sure to gunzip the downloaded attachment first. Try to reproduce using this module. Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 22:01:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 23:01:29 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050914220129.3E12422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #3800|NDISWrapper v1.1 kernel |NDISWrapper v1.2 kernel description|module |module -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 22:10:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 23:10:22 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050914221022.01CCD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux olfactor at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |olfactor at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 22:32:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 14 Sep 2005 23:32:13 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050914223213.D742522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|critical |normal ------- Additional Comments From mdz at ubuntu.com 2005-09-14 23:32 UTC ------- Workaround uploaded, reducing severity to normal: acpi-support (0.31) breezy; urgency=low * Don't mess with hdparm -B; it triggers a bug elsewhere which causes the system to hang on some laptops -- Matt Zimmerman Wed, 14 Sep 2005 15:28:21 -0700 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 23:02:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 00:02:24 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050914230224.09E3D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux ------- Additional Comments From olfactor at gmail.com 2005-09-15 00:02 UTC ------- Getting this on a compaq evo n600c too; using either 3.4.8-k2-NAPI and intel's 3.4.14 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 23:06:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 00:06:47 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050914230647.33B2A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From nathan at atdot.ca 2005-09-15 00:06 UTC ------- This bug is not restricted to menu items. I have a few folders that disappear from nautilus regularly (I've been trying to track it down for about a week, until I found this bug). I downloaded the inotify test tool and I'm getting the same event posted above. I haven't noticed any particular pattern to which folders disappear, but I have a few that do it reliably if left open in a nautilus window for a few hours, and others that never do. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 23:09:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 00:09:29 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050914230929.A261A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-15 00:09 UTC ------- ''lspci'' is irrelevant for an ISA sound chipset. Please add isapnp=0 to your modprobe parameter list. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 23:43:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 00:43:45 +0100 (BST) Subject: [Bug 14800] No audio in gnome / colony 4 In-Reply-To: Message-ID: <20050914234345.E0AE622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14800 Ubuntu | linux ------- Additional Comments From john.godzero at gmail.com 2005-09-15 00:43 UTC ------- Yep, was 100% repeatable under kubuntu 14sept05 build and ubuntu 14sept05 build. summery: irqpoll fixes audio -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 14 23:46:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 00:46:51 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050914234651.F349222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From sb73542 at safe-mail.net 2005-09-15 00:46 UTC ------- Thanks for the help! OK, I tried: "sudo modprobe snd-cmi8330 sbport=0x220 sbirq=5 sbdma8=1 sbdma16=5 wssport=0x530 wssirq=11 wssdma=0 isapnp=0" The isapnp=0 option makes no difference, dmesg spits out the same messages. Actually the lspci is relevant because it shows what resources are used by the PCI devices. One of my params must be wrong, and there must be a conflicting resource. How can I decide what other values to try in place of these default recommended ones? Thanks again. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 00:43:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 01:43:34 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050915004334.DE12A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From brandon at smarterits.com 2005-09-15 01:43 UTC ------- I still managed to hang my system hard (dell 600m) after about 2 minutes on battery. Disabling laptop-mode via /etc/default/laptop-mode avoids such hangs. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 01:05:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 02:05:47 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050915010547.EE31622F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-15 02:05 UTC ------- Created an attachment (id=3804) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3804&action=view) dmesg before plug in -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 01:05:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 02:05:48 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050915010548.06E6D22F4028@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-15 02:05 UTC ------- (In reply to comment #61) > I still managed to hang my system hard (dell 600m) after about 2 minutes on battery. > Disabling laptop-mode via /etc/default/laptop-mode avoids such hangs. There must be more than one bug here, then. See comment #55 where I reproduced my own hang without laptop-mode being enabled. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 01:06:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 02:06:33 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050915010633.D385422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-15 02:06 UTC ------- Created an attachment (id=3805) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3805&action=view) Dmesg after plug in and dhcp connect with minimal script -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 01:07:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 02:07:40 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050915010740.8E2D522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-15 02:07 UTC ------- emma at ubuntu:~$ sudo wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable message=lnxreq_ifstate ifstate=enable resultcode=implementation_failure emma at ubuntu:~$ sudo wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable message=lnxreq_ifstate ifstate=enable resultcode=success -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 01:32:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 02:32:07 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050915013207.E200C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From bmaurer at novell.com 2005-09-15 02:32 UTC ------- I have the same model as tseng. Disabling the laptop-mode never fixed the bug for me. I haven't tried the update yet. I wonder why it is acting so differently on two models. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 01:40:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 02:40:23 +0100 (BST) Subject: [Bug 15458] Hibernate failure on nondescript desktop system In-Reply-To: Message-ID: <20050915014023.82AF122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15458 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|initscripts |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|5.10 Preview 1: Logout-- |Hibernate failure on |>Hibernate option broken |nondescript desktop system ------- Additional Comments From mdz at ubuntu.com 2005-09-15 02:40 UTC ------- (In reply to comment #2) > Oooops, sorry- not resolved yet. I can't figure this thing out, it is no longer > suspending to disk. It worked three or four times, but now is giving me the > same errors. It appears to be a process trace. We need to see an identical representation of the trace. You can try copying it down, but a digital photo is usually the easiest way. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 01:55:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 02:55:02 +0100 (BST) Subject: [Bug 15458] 5.10 Preview 1: Logout-->Hibernate option broken In-Reply-To: Message-ID: <20050915015502.C39BE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15458 Ubuntu | initscripts sb73542 at safe-mail.net changed: What |Removed |Added ---------------------------------------------------------------------------- Component|linux |initscripts Summary|Hibernate failure on |5.10 Preview 1: Logout-- |nondescript desktop system |>Hibernate option broken ------- Additional Comments From sb73542 at safe-mail.net 2005-09-15 02:55 UTC ------- OK, Got it! I don't know if this is a bug or not, but it appears that suspend-to-disk doesn't work out-of-box if you have two active swap partitions, as I do. I had disabled one of them before for a test (and forgot about it), and that is when hibernation started working for as long as I did hibernation/resumed-reboots. Then I did a hard shut down, and when I rebooted, both my swap partitions came back, and hibernate broke again. So I disabled one of them in fstab. Feature or bug? One weird bit of behavior with hibernation. It starts to suspend, almost immediately spins down the disk, then spins it back up to write the resume data, then finally spins down again. Upon resume (from grub) it turns on USB as soon as the kernel inits, then turns USB off as soon as it starts resuming (why?), then spins down the hard drive (why?), re-activates USB, and then spins up the drive and my system restores. Seems like quite a few extra steps. And while I have an expert here, how do you start a suspend to disk from the command line, instead of the gnome menu? Thanks very much. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 02:01:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 03:01:26 +0100 (BST) Subject: [Bug 15458] 5.10 Preview 1: Logout-->Hibernate option broken In-Reply-To: Message-ID: <20050915020126.584BD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15458 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com, | |mjg59 at codon.org.uk AssignedTo|ben.collins at ubuntu.com |debzilla at ubuntu.com Component|initscripts |UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-15 03:01 UTC ------- What do we do about RESUME if there is more than one swap partition? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 02:17:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 03:17:21 +0100 (BST) Subject: [Bug 15305] ACPI non-functional on Asus V6800V In-Reply-To: Message-ID: <20050915021721.334C822F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15305 Ubuntu | linux ------- Additional Comments From stewart at flamingspork.com 2005-09-15 03:17 UTC ------- Created an attachment (id=3806) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3806&action=view) acpidump output (from hoary kernel) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 02:56:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 03:56:35 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050915025635.AAB0E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-15 03:56 UTC ------- Ok, I suspect this is a prism2 bug (hopefully). The next kernel upload, 2.6.12-8.13, will have an updated prism2-wlan-ng driver. This is the first update of this driver since May, so hopefully it will fix this issue. Keep an eye out for the 2.6.12-8.13 upgrade. I'll let you know when it is available so you can test. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 03:35:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 04:35:43 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050915033543.4343922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-15 04:35 UTC ------- (In reply to comment #2) > The isapnp=0 option makes no difference, dmesg spits out the same messages. Do you have PnP OS enabled in BIOS? Is ACPI enabled? What happens when you boot with noapic? > Actually the lspci is relevant because it shows what resources are used by the > PCI devices. One of my params must be wrong, and there must be a conflicting > resource. How can I decide what other values to try in place of these default > recommended ones? ''cat /proc/interrupts'' would be more direct. Notice that your 56k modem has grabbed IRQ 11, so immediately your wssirq parameter is invalid. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:08:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:08:58 +0100 (BST) Subject: [Bug 15362] Harddisk LED always on, harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050915040858.D787522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-15 05:08 UTC ------- (In reply to comment #3) > Please attach lspci output as well. > The disk is working fine otherwise, right? I think the disk is working fine as I can use it like I did with Hoary or WinXP but I don't know if the settings for the disk are okay (DMA for example) because hdparm doesn't work. I'm a bit concerned about the situation, don't want to damage hardware ... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:09:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:09:34 +0100 (BST) Subject: [Bug 15362] Harddisk LED always on, harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050915040934.1FF1B22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-15 05:09 UTC ------- Created an attachment (id=3807) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3807&action=view) lspci -v -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:19:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:19:15 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050915041915.8528F22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux dan at theidiots.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dan at theidiots.org ------- Additional Comments From dan at theidiots.org 2005-09-15 05:19 UTC ------- I have an Asus A8VE-Deluxe board with an onboard Marvell 88E8053. In hoary, all I did was get SysKonnect's sk98lin drivers, compiled them as a module, and it worked. In breezy, this does not work and neither does loading the module 'skge' or 'sky2' -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:24 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050915044124.4968822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com Status|NEEDINFO |UNCONFIRMED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:24 +0100 (BST) Subject: [Bug 14255] linux-restricted-modules must depend on libstdc++5 In-Reply-To: Message-ID: <20050915044124.DC77F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14255 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com Status|PENDINGUPLOAD |UNCONFIRMED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:24 +0100 (BST) Subject: [Bug 13830] license is missing for lt-modem In-Reply-To: Message-ID: <20050915044124.3124F22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13830 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com Status|PENDINGUPLOAD |UNCONFIRMED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:23 +0100 (BST) Subject: [Bug 13490] Can't seem to insert ath_pci In-Reply-To: Message-ID: <20050915044123.D81BE22F4029@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13490 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com Status|NEEDINFO |UNCONFIRMED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:25 +0100 (BST) Subject: [Bug 13952] /sbin/lrm-manager should not depend on /usr/bin/ld In-Reply-To: Message-ID: <20050915044125.05D9022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13952 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com Status|PENDINGUPLOAD |NEW -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:23 +0100 (BST) Subject: [Bug 13831] ltmodem doesn't build against .12 In-Reply-To: Message-ID: <20050915044123.BDC4622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13831 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:24 +0100 (BST) Subject: [Bug 14115] Doesn't create modules until next reboot In-Reply-To: Message-ID: <20050915044124.66D0C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14115 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com Status|PENDINGUPLOAD |UNCONFIRMED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:24 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050915044124.9EE6522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com Status|NEEDINFO |UNCONFIRMED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:24 +0100 (BST) Subject: [Bug 13425] [dapper] please add pwcx webcam decompressor In-Reply-To: Message-ID: <20050915044124.C349722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13425 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com Status|ASSIGNED |NEW -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:41:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:41:24 +0100 (BST) Subject: [Bug 15398] GTK 2.8 rendering glitches with nvidia and RenderAccel=true In-Reply-To: Message-ID: <20050915044124.017E722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15398 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:43:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:43:49 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050915044349.0B820303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-15 05:43 UTC ------- Created an attachment (id=3808) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3808&action=view) dmesg with alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb This one was a bit tricky as the system fist did not get up anymore, I hope I have the right version of the modules now :) dpkg -i --force-overwrite alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1 ~2_i386.deb (Lese Datenbank ... 91650 Dateien und Verzeichnisse sind derzeit installiert.) Entpacke alsa-modules-2.6.12-8-686 (aus alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu 1~2_i386.deb) ... dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.pcimap« zu überschreiben, welches a uch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.dep« zu überschreiben, welches auch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.ieee1394map« zu überschreiben, welc hes auch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.usbmap« zu überschreiben, welches a uch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.ccwmap« zu überschreiben, welches a uch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.isapnpmap« zu überschreiben, welche s auch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.inputmap« zu überschreiben, welches auch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.seriomap« zu überschreiben, welches auch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.alias« zu überschreiben, welches au ch in Paket linux-image-2.6.12-8-686 ist dpkg - Warnung: Problem wird übergangen, weil --force angegeben ist: versuche »/lib/modules/2.6.12-8-686/modules.symbols« zu überschreiben, welches auch in Paket linux-image-2.6.12-8-686 ist Richte alsa-modules-2.6.12-8-686 ein (1.0.9b-3ubuntu1~2) ... Terminating processes: 7229 7320 4607 7209 (failed: processes still using sound devices: 4625(gnome-settings-) 4652(esd)). /etc/init.d/alsa: Warning: Processes using sound devices: 4625(gnome-settings-) 4652(esd) 4665(esd). Unloading ALSA sound driver modules: snd-hda-intel snd-hda-codec snd-pcm-oss snd -mixer-oss snd-pcm snd-timer snd-page-alloc (failed: modules still loaded: snd-h da-intel snd-hda-codec snd-mixer-oss snd-pcm snd-timer snd-page-alloc). Loading ALSA sound driver modules: snd-hda-intel snd-hda-codec snd-pcm-oss snd-m ixer-oss snd-pcm snd-timer snd-page-allocFATAL: Error inserting snd_pcm_oss (/li b/modules/2.6.12-8-686/updates/alsa/acore/oss/snd-pcm-oss.ko): Unknown symbol in module, or unknown parameter (see dmesg) (failed). You should now stop all applications using sound devices and run "/etc/init.d/alsa force-reload" to load the new modules. Reboot Some warnings/error while booting: Insmod can't read ... no such file or directory (... are some different modules) Trying to unmute soundcard still has the same issue: amixer sset Master on amixer: Mixer default load error: Invalid argument -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:58:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:58:41 +0100 (BST) Subject: [Bug 13490] Can't seem to insert ath_pci In-Reply-To: Message-ID: <20050915045841.0D23722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13490 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 05:58 UTC ------- Scoot i am closing this bug (i can't reproduce it either). If you ewperience it again, please reopen and also add what version of lrm you are using. Fabio -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 04:59:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 05:59:25 +0100 (BST) Subject: [Bug 13830] license is missing for lt-modem In-Reply-To: Message-ID: <20050915045925.74FA022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13830 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 07:13:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 08:13:46 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050915071346.9C73922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ------- Additional Comments From ploum at fritalk.com 2005-09-15 08:13 UTC ------- In my case, I have the problem without ndiswrapper. I don't use it and I don't even have it on my computer. It's a Prism54h PCMCIA card. I've seen that, when those messages occured, the process pccardctl was taking 100% of the CPU. So I believe it's related to PCMCIA. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 07:48:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 08:48:16 +0100 (BST) Subject: [Bug 13831] [dapper] ltmodem doesn't build against .12 In-Reply-To: Message-ID: <20050915074816.8A53522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13831 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal Summary|ltmodem doesn't build |[dapper] ltmodem doesn't |against .12 |build against .12 ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 08:48 UTC ------- It still doesn't build on .12. Deferred for dapper if they will ressurect upstream or we will drop it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 07:51:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 08:51:17 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050915075117.C6DAB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-15 08:51 UTC ------- (In reply to comment #14) > amixer sset Master on > amixer: Mixer default load error: Invalid argument Ok, then you will need to manually try every model parameter until you find one that works. Please unload snd-hda-intel after boot and try each of the following models (see alsa-kernel/pci/hda/patch_realtek.c#alc880_cfg_tbl[] for a full listing). Please try the ones that most closely match your hardware configuration first. $ sudo modprobe snd-hda-intel model=foo where foo is one of: 3stack (/* Back 3 jack, front 2 jack */) 3stack-digout (/* Back 3 jack plus 1 SPDIF out jack, front 2 jack */) 5stack (/* Back 5 jack, front 2 jack */) 5stack-digout (/* Back 5 jack plus 1 SPDIF out jack, front 2 jack */) w810 z71v 6stack 6stack-digout asus uniwill F1734 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 07:51:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 08:51:26 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050915075126.55A1522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 08:51 UTC ------- Is this problem still reproducible in breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 07:54:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 08:54:44 +0100 (BST) Subject: [Bug 15398] GTK 2.8 rendering glitches with nvidia and RenderAccel=true In-Reply-To: Message-ID: <20050915075444.242B322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15398 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |WONTFIX ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 08:54 UTC ------- There is no way we can fix this problem because we don't have the sources for the nvidia driver. You need to report this kind of problem directly to nvidia support forums. Fabio -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:00:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:00:35 +0100 (BST) Subject: [Bug 14255] linux-restricted-modules must depend on libstdc++5 In-Reply-To: Message-ID: <20050915080035.58A3C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14255 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 09:00 UTC ------- Fixed in linux-restricted-modules-2.6.12 (2.6.12.3-1) upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:02:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:02:39 +0100 (BST) Subject: [Bug 14115] Doesn't create modules until next reboot In-Reply-To: Message-ID: <20050915080239.16D5122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14115 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 09:02 UTC ------- Fixed in linux-restricted-modules-2.6.12 (2.6.12.3-1) upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:03:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:03:10 +0100 (BST) Subject: [Bug 13952] /sbin/lrm-manager should not depend on /usr/bin/ld In-Reply-To: Message-ID: <20050915080310.3949122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13952 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 09:03 UTC ------- Fixed in linux-restricted-modules-2.6.12 (2.6.12.3-1) upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:03:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:03:47 +0100 (BST) Subject: [Bug 13830] license is missing for lt-modem In-Reply-To: Message-ID: <20050915080347.F286A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13830 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 09:03 UTC ------- Done -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:15:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:15:38 +0100 (BST) Subject: [Bug 15398] GTK 2.8 rendering glitches with nvidia and RenderAccel=true In-Reply-To: Message-ID: <20050915081538.178F422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15398 Ubuntu | linux-restricted-modules ------- Additional Comments From cthulhoo at gmail.com 2005-09-15 09:15 UTC ------- Let me say that I expected this kind of reaction. Of course you don't have sources to nvidia driver. That doesn't change the fact that decision of using first release of GTK on Cairo makes Breezy mostly unusable on nvidia cards. The logical choice would be not rushing to use GTK 2.8 because of possible unexpected issues like this (what, it was released when - few weeks ago? How about testing it for two-three months before?) and all this with no actual improvements to end users at the time being. GTK on Cairo currently brings slowdowns for users, nothing beyond that. Well, you prefer to rush radically new version of major platform toolkit in the stable distribution the consequences be damned. It is your decision as the maintainers, my decision will be to skip Ubuntu from now on. This is the kind of regression I would expect from Debian/Sid, but never from stable release. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:17:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:17:05 +0100 (BST) Subject: [Bug 15476] New: laptop won't bot without acpi=off Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15476 Ubuntu | kernel-package Summary: laptop won't bot without acpi=off Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: comeon2424 at mytrashmail.com QAContact: kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:20:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:20:12 +0100 (BST) Subject: [Bug 15476] laptop won't bot without acpi=off In-Reply-To: Message-ID: <20050915082012.523A322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15476 Ubuntu | kernel-package comeon2424 at mytrashmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From comeon2424 at mytrashmail.com 2005-09-15 09:20 UTC ------- Hi I have an acer aspire 1691WMli (DDR). This laptop has a buggy DSDT. The breezy colony & preview live & install cd's won't boot without the kernel parameter acpi=off. After patching the DSDT with the custom version in acpi.sourceforge.net I can boot with some acpi support, but I have to include the kernel parameter noapic. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:20:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:20:30 +0100 (BST) Subject: [Bug 15476] laptop won't boot without acpi=off In-Reply-To: Message-ID: <20050915082030.4220B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15476 Ubuntu | kernel-package comeon2424 at mytrashmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|laptop won't bot without |laptop won't boot without |acpi=off |acpi=off -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:27:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:27:21 +0100 (BST) Subject: [Bug 15398] GTK 2.8 rendering glitches with nvidia and RenderAccel=true In-Reply-To: Message-ID: <20050915082721.5B24822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15398 Ubuntu | linux-restricted-modules ------- Additional Comments From fabbione at ubuntu.com 2005-09-15 09:27 UTC ------- (In reply to comment #2) > Let me say that I expected this kind of reaction. > > Of course you don't have sources to nvidia driver. That doesn't change the fact > that decision of using first release of GTK on Cairo makes Breezy mostly > unusable on nvidia cards. The logical > choice would be not rushing to use GTK 2.8 because of possible unexpected issues > like this (what, it was released when - few weeks ago? How about testing it for > two-three months before?) and all this with no > actual improvements to end users at the time being. GTK on Cairo currently > brings slowdowns for users, nothing beyond that. > > Well, you prefer to rush radically new version of major platform toolkit in the > stable distribution the consequences be damned. It is your decision as the > maintainers, > my decision will be to skip Ubuntu from now on. This is the kind of regression I > would expect from Debian/Sid, but never from stable release. Breezy is not stable and i am not sure how could you get this impression. Also I can't reproduce the problem here using nvidia drivers, so it must be a combinantion of your hw with the nvidia driver itself. Again i have no way to fix it. Fabio -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:27:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:27:56 +0100 (BST) Subject: [Bug 15413] drivers/usb/class/usblp.c: usblp0: failed reading printer status In-Reply-To: Message-ID: <20050915082756.A366522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15413 Ubuntu | linux ------- Additional Comments From cniehaus at gmx.de 2005-09-15 09:27 UTC ------- I cannot confirm now because brezzy is the only OS I have. But I was using the very same setup (cable, notebook, printer, usb-hub) on hoary since hoary was release and before that with gentoo for at least one year. Before that I didn't have the usb-hub. Before the hub I used the printer+notebook+cable for at least another year (I think since early 2003). I never had any problems. On the other hand, it never worked on breezy, so I am pretty sure that there is a bug somewhere in breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 08:48:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 09:48:40 +0100 (BST) Subject: [Bug 15398] GTK 2.8 rendering glitches with nvidia and RenderAccel=true In-Reply-To: Message-ID: <20050915084840.2F99522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15398 Ubuntu | linux-restricted-modules ------- Additional Comments From cthulhoo at gmail.com 2005-09-15 09:48 UTC ------- >Breezy is not stable and i am not sure how could you get this impression. Also Will the release feature other version of GTK? Great. And I read recently something about forking Sid once in six months and testing it then. Now I start to see the real development model - let the chips fall as they may... >I can't reproduce the problem here using nvidia drivers, so it must be a combinantion Maybe so. Which makes it unworkable not for all users, but (maybe) for users of 6800-based cards. That doesn't make it any better in terms of QA. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 09:00:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 10:00:21 +0100 (BST) Subject: [Bug 8140] Ubuntu's kernels wont boot without acpi=off In-Reply-To: Message-ID: <20050915090021.4D5D222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8140 Ubuntu | linux typo at netcabo.pt changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From typo at netcabo.pt 2005-09-15 10:00 UTC ------- I've just tried the brezzy preview CD and the bug is exactly the same. The kernel hangs right after saying the ACPI subsystem version. Booting with "acpi=off" works. This has never happened with any kernel.org kernels. Right now I'm using 2.6.13 and it works fine. This must be some patch Ubuntu adds to the kernel. Having to compile my own kernels is annoying, could you please give me instructions on what to do to try to debug this? I've never used an Ubuntu kernel because of it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 10:38:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 11:38:57 +0100 (BST) Subject: [Bug 15481] New: Kernel panic with SBLIve on AMD64 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15481 Ubuntu | linux Summary: Kernel panic with SBLIve on AMD64 Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: tom at badrunner.net QAContact: kernel-bugs at lists.ubuntu.com I just put a known working creative labs sblive pci card (around 6 years old or so) into my machine (asus a8n motherboard with nforce4 chipset, athlon 64). I deactivated the onboard sound in the bios and fired up ubuntu. Everything looks fine and the emu101k module (cant remember exact name sorry, reporting from a machine at the office) gets loaded correctly by hotplug. However as soon as I start esd i get a kernel panic about something to do with sync, ill try to get the exact error message tonight. If you need any more info let me know and ill get back to you as soon as i can. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 10:39:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 11:39:57 +0100 (BST) Subject: [Bug 15481] Kernel panic with SBLIve on AMD64 In-Reply-To: Message-ID: <20050915103957.6D07822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15481 Ubuntu | linux ------- Additional Comments From tom at badrunner.net 2005-09-15 11:39 UTC ------- sorry just want to add that im using the -k8 kernel rather than the -generic one. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 10:56:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 11:56:51 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050915105651.5A02A22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux ------- Additional Comments From malmjako at student.chalmers.se 2005-09-15 11:56 UTC ------- The same problem with acpi not beeing able to load the System Description Tables occurs on my HP Omnibook 6000. dmesg output is identical (regarding acpi anyway). /Jakob Malm -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 11:10:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 12:10:51 +0100 (BST) Subject: [Bug 14827] Garbled sound In-Reply-To: Message-ID: <20050915111051.F2F0722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux ------- Additional Comments From spd106 at lycos.co.uk 2005-09-15 12:10 UTC ------- (In reply to comment #7) > Please ensure with hdparm that DMA is enabled for your internal DVD-ROM. ... > UNCHECK the mmap mode checkbox. Ok, i tried these things and nothing changed. I also managed to try the usb drive on another pc with ubuntu hoary. The pc has an nforce2 motherboard and i used the onboard AC97 sound. It worked fine, i couldn't detect any problems. So i suppose the problem is related to the laptop. I'll try to be more restrained when looking for bugs in future. Thanks for your help. Steve -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 12:08:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 13:08:20 +0100 (BST) Subject: [Bug 15435] Hang when loading some module In-Reply-To: Message-ID: <20050915120820.F030E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15435 Ubuntu | linux ------- Additional Comments From neurosion at yahoo.com 2005-09-15 13:08 UTC ------- I get nothing interesting from alt-sysrq-t. I get "[XXXXXXX.YYYYYY] SysRq : Show State" and nothing else. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 12:35:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 13:35:34 +0100 (BST) Subject: [Bug 15488] New: linux-source needs gcc-3.4 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15488 Ubuntu | linux-meta Summary: linux-source needs gcc-3.4 Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: minor Priority: P2 Component: linux-meta AssignedTo: debzilla at ubuntu.com ReportedBy: ivoks at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com Shouldn't linux-source depend on gcc-3.4? Not build-depend, but Depend. Since it needs gcc-3.4 to compile kernel source. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 13:27:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 14:27:13 +0100 (BST) Subject: [Bug 15458] 5.10 Preview 1: Logout-->Hibernate option broken In-Reply-To: Message-ID: <20050915132713.C0B7522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15458 Ubuntu | UNKNOWN ------- Additional Comments From ben.collins at ubuntu.com 2005-09-15 14:27 UTC ------- Could the priority of the swap partitions have something to do with it? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 13:34:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 14:34:39 +0100 (BST) Subject: [Bug 15188] Default update-grub behaviour is not intuitive In-Reply-To: Message-ID: <20050915133439.5761422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15188 Ubuntu | grub ------- Additional Comments From sebastian_latz at yahoo.de 2005-09-15 14:34 UTC ------- Created an attachment (id=3813) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3813&action=view) menu.lst My menu.lst *after* I have modified it to match all my installed OSes again. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 13:37:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 14:37:00 +0100 (BST) Subject: [Bug 15188] Default update-grub behaviour is not intuitive In-Reply-To: Message-ID: <20050915133700.D702E22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15188 Ubuntu | grub ------- Additional Comments From sebastian_latz at yahoo.de 2005-09-15 14:37 UTC ------- (In reply to comment #4) > It sounds like you may be experiencing bug #14947 I'm not shure. I can boot windows, when I edit my menu.lst from hand (or at grub prompt) very well. I also can mannualy mount my windows ntfs partition. I don't think that this is a duplicate of #14947 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 14:09:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 15:09:43 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050915140943.74EFE22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-15 15:09 UTC ------- Perhaps there are hardware revisions of this device that work better than others? This problem has existed since 2002 and there seem to be a number of variations on a theme to work around it. There is a recent thread on the linux-wlan-ng list about this too (see below, c) a) http://www.berndporr.me.uk/wireless/ "The original script has to be called two times. The first time the driver gives an error message. The second time it succeeds" b) http://lists.linux-wlan.com/pipermail/linux-wlan-user/2002-May/005834.html "Solution: --------- Disable the wlan0 interface first. This command sequence worked: wlanctl-ng wlan0 lnxreq_ifstate ifstate=disable wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable" And more recently: c) http://lists.linux-wlan.com/pipermail/linux-wlan-user/2005-August/013407.html " # ADD THE FOLLOWING LINE $WLANCTL $1 lnxreq_ifstate ifstate=disable result=`$WLANCTL $1 lnxreq_ifstate ifstate=enable`" This is equivalent to modifying the linux-wlan-ng script in /etc/networking/if-pre-up.d to do the ifstate=enable command twice, or at least try again in the even of an implementation failure. I tried this morning to add the "wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable" command in that script just before it does the actual evalutation. It did not work, but I really suck at bash scripting so I may have done it wrong. I can compile the most recent linux-wlan-ng from source. Would that save some time? Or have Debian/Ubuntu-specific changes been made to the linux-wlan-ng package that I would not get from the linux-wlan-ng source? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 14:40:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 15:40:01 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050915144001.5F1E422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-15 15:40 UTC ------- I've re-installed Breezy Preview. I've acquired all updates and installed nothing new. I've editted /boot/grub/menu.lst and added resume=/dev/hda2 to the kopt line and run update-grub. Same behavior. Upon resume from hibernation, I get the error that my resume option is not set even though it appears at boot time in the kernel statement. Upon copying the image, it actually now reboots itself. Hibernation is initiated by pressing Fn+F12 on this Thinkpad. I will continue testing with other options. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 14:56:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 15:56:59 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050915145659.CCB2F303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-15 15:56 UTC ------- I had to add snd_hda_intel to /etc/hotplug/blacklist because I was unable to rmmod it. After rebooting the system no snd* module was loaded. I tried every model on your list and "full" and "test". Every time I hear a "bump" on my speakers, this is what gets logged into /var/log/syslog and dmesg: Sep 15 16:33:50 paul kernel: [4295095.493000] ACPI: PCI Interrupt 0000:00:1b.0[A] -> GSI 16 (level, low) -> IRQ 16 Sep 15 16:33:50 paul kernel: [4295095.493000] PCI: Setting latency timer of device 0000:00:1b.0 to 64 Sep 15 16:33:50 paul kernel: [4295095.511000] hda_codec: Unknown model for ALC880, trying auto-probe from BIOS... Sep 15 16:33:50 paul kernel: [4295095.826000] hda_codec: num_steps = 0 for NID=0x8 Sep 15 16:33:50 paul kernel: [4295095.854000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.857000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.862000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.866000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.871000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.875000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.879000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.884000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.888000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.893000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.898000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.903000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.906000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.911000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.915000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.919000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.924000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.928000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.933000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:33:50 paul kernel: [4295095.937000] hda_codec: num_steps = 0 for NID=0xb Sep 15 16:34:03 paul kernel: [4295108.362000] hda_codec: num_steps = 0 for NID=0xb alsamixer still has the error message alsamixer: function snd_mixer_load failed: Invalid argument If I check the alsa version (/proc/asound/version) I see this: Advanced Linux Sound Architecture Driver Version 1.0.10rc1. Compiled on Sep 14 2005 for kernel 2.6.12-8-686. Is version 1.0.10rc1 the right one because you're package is named alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb and this is what I've done: dpkg -i alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb (Lese Datenbank ... 91864 Dateien und Verzeichnisse sind derzeit installiert.) Vorbereiten zum Ersetzen von alsa-modules-2.6.12-8-686 1.0.9b-3ubuntu1~2 (durch alsa-modules-2.6.12-8-686_1.0.9b-3ubuntu1~2_i386.deb) ... Entpacke Ersatz für alsa-modules-2.6.12-8-686 ... Richte alsa-modules-2.6.12-8-686 ein (1.0.9b-3ubuntu1~2) ... Unloading ALSA sound driver modules: snd-hda-intel snd-hda-codec snd-pcm-oss snd-mixer-oss snd-pcm snd-timer snd-page-alloc. Loading ALSA sound driver modules: snd-hda-intel snd-hda-codec snd-pcm-oss snd-mixer-oss snd-pcm snd-timer snd-page-alloc. While re-loading the modules I hear the *bump* out of my speakers again but no way to get amixer or sound running :( -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 14:57:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 15:57:44 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050915145744.5534422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-15 15:57 UTC ------- Here is the screen output during resume: [4295383.837000] Freeing memory...... Done (60942 pages freed) [4295388.420000] GTM info 78,3c,0,0,13 [4295390.137000] GTM info 78,14,0,0,13 [4295390.593000] ACPI:PCI interrupt for device 0000:02:00.1 disabled [4295390.593000] ACPI:PCI interrupt for device 0000:02:00.0 disabled [4295390.594000] ACPI:PCI interrupt for device 0000:00:1F.5 disabled [4295390.601000] .....................................swsusp: need to copy 15350 pages I have 1GB RAM with a 2.1GB swap file on /dev/hda2. This time, the machine did not reboot, it hung. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 15:01:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 16:01:00 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050915150100.66B1222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-15 16:01 UTC ------- That indicates that the resume was successful, but something is going wrong while hardware is being reenabled. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 15:09:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 16:09:04 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050915150904.0F88522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 15:24:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 16:24:14 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050915152414.1450E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-15 16:24 UTC ------- I'm used to configuring swsusp2, but I've never done much with swsusp. Can you direct me on where I can make subtle changes to how the resume executes under breezy? I'd like to assume it's the same as any other distro, but one never knows. Will any changes to /etc/default/acpi-support affect hibernate/resume? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 15:40:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 16:40:25 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050915154025.9E81622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From kleeman at cims.nyu.edu 2005-09-15 16:40 UTC ------- This bug seems to be affecting quite a few users judging from Ubuntu fora postings. The new skge driver which is in Breezy while open source seems limited in its functionality. The vendor driver sk98lin while bloated works for every card tried. Suggestion to developers: Include sk98lin in the restricted-modules package until skge improves it's functionality. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 15:42:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 16:42:17 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050915154217.C045422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-15 16:42 UTC ------- I modified /etc/default/acpi-support as follows: # Uncomment the next line to switch away from X and back again after resume. # This is needed for some hardware, but should be unnecessary on most. DOUBLE_CONSOLE_SWITCH=true This seemed to allow the copying of memory to go, but when it switched back, the video was garbled and the machine still hung. Here is my video chipset: 0000:01:00.0 VGA compatible controller: ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500] (prog-if 00 [VGA]) Subsystem: IBM: Unknown device 0530 Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping+ SERR+ FastB2B+ Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- This is what seems to be the most pertinent section of xorg.conf: Section "Device" Identifier "ATI Technologies, Inc. Radeon Mobility 9000 (M7 LW)" Driver "ati" BusID "PCI:1:0:0" EndSection Section "Monitor" Identifier "Generic Monitor" Option "DPMS" EndSection Section "Screen" Identifier "Default Screen" Device "ATI Technologies, Inc. Radeon Mobility 9000 (M7 LW)" Monitor "Generic Monitor" DefaultDepth 24 SubSection "Display" Depth 1 Modes "1024x768" EndSubSection SubSection "Display" Depth 4 Modes "1024x768" EndSubSection SubSection "Display" Depth 8 Modes "1024x768" EndSubSection SubSection "Display" Depth 15 Modes "1024x768" EndSubSection SubSection "Display" Depth 16 Modes "1024x768" EndSubSection SubSection "Display" Depth 24 Modes "1024x768" EndSubSection EndSection Section "ServerLayout" Identifier "Default Layout" Screen "Default Screen" InputDevice "Generic Keyboard" InputDevice "Configured Mouse" InputDevice "Synaptics Touchpad" EndSection Section "DRI" Mode 0666 EndSection -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 15:51:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 16:51:57 +0100 (BST) Subject: [Bug 15118] Error updating Linux kernel image through "Software Updates" In-Reply-To: Message-ID: <20050915155157.5650C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15118 Ubuntu | linux ------- Additional Comments From sgronblo at abo.fi 2005-09-15 16:51 UTC ------- (In reply to comment #3) > Can you do "ls -la /lib/modules/2.6.10-5-386/kernel/drivers/char/drm/" > > Also, send me the output of the "cat /proc/mounts" and "dmesg" commands. > > I would also suggest, after doing the above, performing an fsck on your rootfs. You can force this on a reboot > by typing "shutdown -r -F now" at the command line. This will reboot and (hopefully) force an fsck. ls -la /lib/modules/2.6.10-5-386/kernel/drivers/char/drm/ drwxr-xr-x 2 root root 4096 2005-09-13 14:18 . drwxr-xr-x 10 root root 4096 2005-09-13 14:18 .. ?rwsrwsrwt 65535 4294967295 4294967295 4294967295 1970-01-01 01:59 drm.ko ?rwsrwsrwt 65535 4294967295 4294967295 4294967295 1970-01-01 01:59 i810.ko ?rwsrwsrwt 65535 4294967295 4294967295 4294967295 1970-01-01 01:59 i830.ko ?rwsrwsrwt 65535 4294967295 4294967295 4294967295 1970-01-01 01:59 i915.ko -rw-r--r-- 1 root root 64289 2005-08-19 03:04 mga.ko -rw-r--r-- 1 root root 51354 2005-08-19 03:04 r128.ko -rw-r--r-- 1 root root 84111 2005-08-19 03:04 radeon.ko -rw-r--r-- 1 root root 12144 2005-08-19 03:04 sis.ko -rw-r--r-- 1 root root 5430 2005-08-19 03:04 tdfx.ko cat /proc/mounts rootfs / rootfs rw 0 0 /dev2/root2 / ext3 rw 0 0 proc /proc proc rw,nodiratime 0 0 sysfs /sys sysfs rw 0 0 /dev2/root2 /.dev ext3 rw 0 0 none /dev tmpfs rw 0 0 devpts /dev/pts devpts rw 0 0 tmpfs /dev/shm tmpfs rw 0 0 /dev/hda1 /mnt/winxp ntfs ro,noatime,nodiratime,uid=1000,gid=1000,fmask=0177,dmask=077,nls=cp437,errors=continue,mft_zone_multiplier=1 0 0 usbfs /proc/bus/usb usbfs rw 0 0 dmesg ailed to call pci_enable_device(). As a temporary ** workaround, the "pci=routeirq" argument restores the old ** behavior. If this argument makes the device work again, ** please email the output of "lspci" to bjorn.helgaas at hp.com ** so I can fix the driver. pnp: 00:00: ioport range 0xfe00-0xfe01 has been reserved pnp: 00:00: ioport range 0x1000-0x107f could not be reserved pnp: 00:00: ioport range 0x1180-0x11bf has been reserved audit: initializing netlink socket (disabled) audit(1126384316.993:0): initialized VFS: Disk quotas dquot_6.5.1 Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) devfs: 2004-01-31 Richard Gooch (rgooch at atnf.csiro.au) devfs: boot_options: 0x0 Initializing Cryptographic API isapnp: Scanning for PnP cards... isapnp: No Plug & Play device found i8042.c: Detected active multiplexing controller, rev 1.1. serio: i8042 AUX0 port at 0x60,0x64 irq 12 serio: i8042 AUX1 port at 0x60,0x64 irq 12 serio: i8042 AUX2 port at 0x60,0x64 irq 12 serio: i8042 AUX3 port at 0x60,0x64 irq 12 serio: i8042 KBD port at 0x60,0x64 irq 1 Serial: 8250/16550 driver $Revision: 1.90 $ 54 ports, IRQ sharing enabled ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A ACPI: PCI interrupt 0000:00:1f.6[B] -> GSI 17 (level, low) -> IRQ 17 io scheduler noop registered io scheduler anticipatory registered io scheduler deadline registered io scheduler cfq registered RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize input: AT Translated Set 2 keyboard on isa0060/serio0 EISA: Probing bus 0 at eisa0 Cannot allocate resource for EISA slot 1 Cannot allocate resource for EISA slot 2 Cannot allocate resource for EISA slot 3 Cannot allocate resource for EISA slot 4 EISA: Detected 0 cards. NET: Registered protocol family 2 IP: routing cache hash table of 4096 buckets, 32Kbytes TCP: Hash tables configured (established 32768 bind 65536) NET: Registered protocol family 8 NET: Registered protocol family 20 Restarting tasks...<6> Strange, kswapd0 not stopped Strange, kseriod not stopped done ACPI wakeup devices: ELAN USB0 USB1 USB2 MODM ACPI: (supports S0 S3 S4 S5) RAMDISK: cramfs filesystem found at block 0 RAMDISK: Loading 4296KiB [1 disk] into ram disk... done. VFS: Mounted root (cramfs filesystem) readonly. Freeing unused kernel memory: 224k freed ACPI: CPU0 (power states: C1[C1] C2[C2]) ACPI: Processor [CPU0] (supports 8 throttling states) NET: Registered protocol family 1 Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx ICH4: IDE controller at PCI slot 0000:00:1f.1 PCI: Enabling device 0000:00:1f.1 (0005 -> 0007) ACPI: PCI interrupt 0000:00:1f.1[A] -> GSI 18 (level, low) -> IRQ 18 ICH4: chipset revision 2 ICH4: not 100% native mode: will probe irqs later ide0: BM-DMA at 0x1860-0x1867, BIOS settings: hda:DMA, hdb:pio ide1: BM-DMA at 0x1868-0x186f, BIOS settings: hdc:DMA, hdd:pio Probing IDE interface ide0... hda: IC25N060ATMR04-0, ATA DISK drive elevator: using anticipatory as default io scheduler ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 hda: max request size: 1024KiB hda: 117210240 sectors (60011 MB) w/7884KiB Cache, CHS=16383/255/63, UDMA(100) hda: cache flushes supported /dev/ide/host0/bus0/target0/lun0: p1 p2 p3 < p5 > Probing IDE interface ide1... hdc: QSI CD-RW/DVD-ROM SBW-242, ATAPI CD/DVD-ROM drive ide1 at 0x170-0x177,0x376 on irq 15 Probing IDE interface ide2... Probing IDE interface ide3... Probing IDE interface ide4... Probing IDE interface ide5... Stopping tasks: ==| Freeing memory... done (456 pages freed) Restarting tasks... done EXT3-fs: mounted filesystem with ordered data mode. kjournald starting. Commit interval 5 seconds Adding 1510068k swap on /dev/hda5. Priority:-1 extents:1 EXT3 FS on hda2, internal journal init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) hdc: ATAPI 24X DVD-ROM CD-R/RW drive, 2048kB Cache Uniform CD-ROM driver Revision: 3.20 parport: PnPBIOS parport detected. parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,ECP,DMA] lp0: using parport0 (interrupt-driven). mice: PS/2 mouse device common for all mice Synaptics Touchpad, model: 1 Firmware: 5.8 180 degree mounted touchpad Sensor: 18 new absolute packet format Touchpad has extended capability bits -> 4 multi-buttons, i.e. besides standard buttons -> multifinger detection -> palm detection input: SynPS/2 Synaptics TouchPad on isa0060/serio4 ts: Compaq touchscreen protocol output ieee1394: Initialized config rom entry `ip1394' SCSI subsystem initialized sbp2: $Rev: 1219 $ Ben Collins Capability LSM initialized device-mapper: 4.3.0-ioctl (2004-09-30) initialised: dm-devel at redhat.com md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27 cdrom: open failed. NTFS driver 2.1.22 [Flags: R/O MODULE]. NTFS volume version 3.1. Real Time Clock Driver v1.12 input: PC Speaker inserting floppy driver for 2.6.10-5-386 Floppy drive(s): fd0 is 1.44M FDC 0 is a post-1991 82077 Linux agpgart interface v0.100 (c) Dave Jones agpgart: Detected an Intel 845G Chipset. agpgart: Maximum main memory to use for agp memory: 439M agpgart: AGP aperture is 256M @ 0xe0000000 cpci_hotplug: CompactPCI Hot Plug Core version: 0.2 pci_hotplug: PCI Hot Plug PCI Core version: 0.5 shpchp: shpc_init : shpc_cap_offset == 0 shpchp: shpc_init : shpc_cap_offset == 0 shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 Evaluate _OSC Set fails. Status = 0x0005 pciehp: add_host_bridge: status 5 pciehp: Fails to gain control of native hot-plug usbcore: registered new driver usbfs usbcore: registered new driver hub USB Universal Host Controller Interface driver v2.2 ACPI: PCI interrupt 0000:00:1d.0[A] -> GSI 16 (level, low) -> IRQ 16 uhci_hcd 0000:00:1d.0: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 PCI: Setting latency timer of device 0000:00:1d.0 to 64 uhci_hcd 0000:00:1d.0: irq 16, io base 0x1800 uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 1 hub 1-0:1.0: USB hub found hub 1-0:1.0: 2 ports detected ACPI: PCI interrupt 0000:00:1d.1[B] -> GSI 19 (level, low) -> IRQ 19 uhci_hcd 0000:00:1d.1: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 PCI: Setting latency timer of device 0000:00:1d.1 to 64 uhci_hcd 0000:00:1d.1: irq 19, io base 0x1820 uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 2 hub 2-0:1.0: USB hub found hub 2-0:1.0: 2 ports detected ACPI: PCI interrupt 0000:00:1d.2[C] -> GSI 18 (level, low) -> IRQ 18 uhci_hcd 0000:00:1d.2: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 PCI: Setting latency timer of device 0000:00:1d.2 to 64 uhci_hcd 0000:00:1d.2: irq 18, io base 0x1840 uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 3 hub 3-0:1.0: USB hub found hub 3-0:1.0: 2 ports detected usb 1-1: new low speed USB device using uhci_hcd and address 2 ACPI: PCI interrupt 0000:00:1d.7[D] -> GSI 23 (level, low) -> IRQ 23 ehci_hcd 0000:00:1d.7: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB 2.0 EHCI ControllerPCI: Setting latency timer of device 0000:00:1d.7 to 64 ehci_hcd 0000:00:1d.7: irq 23, pci mem 0xd0000000 ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 4 PCI: cache line size of 128 is not supported by device 0000:00:1d.7 ehci_hcd 0000:00:1d.7: USB 2.0 initialized, EHCI 1.00, driver 26 Oct 2004 hub 4-0:1.0: USB hub found hub 4-0:1.0: 6 ports detected Evaluate _OSC Set fails. Status = 0x0005 pciehp: add_host_bridge: status 5 usbcore: registered new driver hiddev usbhid: probe of 1-1:1.0 failed with error -5 usbcore: registered new driver usbhid drivers/usb/input/hid-core.c: v2.0:USB HID core driver usb 1-1: USB disconnect, address 2 pciehp: Fails to gain control of native hot-plug hw_random: cannot enable RNG, aborting usb 4-3: new high speed USB device using ehci_hcd and address 4 ACPI: PCI interrupt 0000:00:1f.5[B] -> GSI 17 (level, low) -> IRQ 17 PCI: Setting latency timer of device 0000:00:1f.5 to 64 Initializing USB Mass Storage driver... usb 1-1: new low speed USB device using uhci_hcd and address 4 intel8x0_measure_ac97_clock: measured 49288 usecs intel8x0: clocking to 48000 input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.0-1 usb 1-2: new full speed USB device using uhci_hcd and address 5 ohci1394: $Rev: 1223 $ Ben Collins ACPI: PCI interrupt 0000:02:00.0[A] -> GSI 16 (level, low) -> IRQ 16 scsi0 : SCSI emulation for USB Mass Storage devices usbcore: registered new driver usb-storage USB Mass Storage support registered. usb-storage: device found at 4 usb-storage: waiting for device to settle before scanning drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 5 if 0 alt 0 proto 2 vid 0x03F0 pid 0x1504 usbcore: registered new driver usblp drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver ohci1394: fw-host0: OHCI-1394 1.0 (PCI): IRQ=[16] MMIO=[d0200000-d02007ff] Max Packet=[2048] 8139too Fast Ethernet driver 0.9.27 ACPI: PCI interrupt 0000:02:01.0[A] -> GSI 17 (level, low) -> IRQ 17 eth0: RealTek RTL8139 at 0x4000, 00:02:3f:b6:9e:37, IRQ 17 eth0: Identified 8139 chip type 'RTL-8100B/8139D' 8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004) orinoco 0.13e (David Gibson , Pavel Roskin , et al) orinoco_pci 0.13e (Pavel Roskin , David Gibson & Jean Tourrilhes ) ACPI: PCI interrupt 0000:02:02.0[A] -> GSI 18 (level, low) -> IRQ 18 orinoco_pci: Detected Orinoco/Prism2 PCI device at 0000:02:02.0, mem:0xF0000000 to 0xF0000FFF -> 0xe0bec000, irq:18 Reset done..........................................................................................................................................................................................................; Clear Reset................................<6>eth0: link up, 10Mbps, half-duplex, lpa 0x0000 ..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................; pci_cor : reg = 0x0 - FFFBFB4D - FFFBF959 ieee1394: Host added: ID:BUS[0-00:1023] GUID[00023f33340046cd] eth1: Station identity 001f:0009:0001:0004 eth1: Looks like an Intersil firmware version 1.4.9 eth1: Ad-hoc demo mode supported eth1: IEEE standard IBSS ad-hoc mode supported eth1: WEP supported, 104-bit key eth1: MAC address 00:01:24:D0:52:84 eth1: Station name "Prism I" eth1: ready Linux Kernel Card Services options: [pci] [cardbus] [pm] ACPI: PCI interrupt 0000:02:04.0[A] -> GSI 16 (level, low) -> IRQ 16 Yenta: CardBus bridge found at 0000:02:04.0 [1025:002b] Yenta O2: res at 0x94/0xD4: 00/ea Yenta O2: enabling read prefetch/write burst Yenta: ISA IRQ mask 0x0438, PCI irq 16 Socket status: 30000007 NET: Registered protocol family 17 NET: Registered protocol family 10 Disabled Privacy Extensions on device c02f0500(lo) IPv6 over IPv4 tunneling driver Vendor: LITE-ON Model: DVDRW SOHW-1633S Rev: BS0H Type: CD-ROM ANSI SCSI revision: 00 usb-storage: device scan complete sr0: scsi3-mmc drive: 48x/48x writer cd/rw xa/form2 cdda tray Attached scsi CD-ROM sr0 at scsi0, channel 0, id 0, lun 0 Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0, type 5 ACPI: AC Adapter [ACAD] (on-line) ACPI: Battery Slot [BAT1] (battery present) ACPI: Power Button (FF) [PWRF] ACPI: Lid Switch [LID] ibm_acpi: ec object not found apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac) apm: overridden by ACPI. radeon: Unknown symbol drm_open radeon: Unknown symbol drm_fasync radeon: Unknown symbol drm_poll radeon: Unknown symbol drm_core_get_reg_ofs radeon: Unknown symbol drm_irq_uninstall radeon: Unknown symbol drm_ioctl radeon: Unknown symbol drm_exit radeon: Unknown symbol drm_debug radeon: Unknown symbol drm_core_get_map_ofs radeon: Unknown symbol drm_init radeon: Unknown symbol drm_vbl_send_signals radeon: Unknown symbol drm_ati_pcigart_init radeon: Unknown symbol drm_mmap radeon: Unknown symbol drm_order radeon: Unknown symbol drm_ati_pcigart_cleanup radeon: Unknown symbol drm_core_reclaim_buffers radeon: Unknown symbol drm_release cs: IO port probe 0x0100-0x04ff: excluding 0x200-0x20f 0x4d0-0x4d7 cs: IO port probe 0x0800-0x08ff: clean. cs: IO port probe 0x0c00-0x0cff: clean. cs: IO port probe 0x0a00-0x0aff: clean. eth0: no IPv6 routers present init_special_inode: bogus i_mode (177777) ibm_acpi: ec object not found init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) eth0: link down eth0: link up, 10Mbps, half-duplex, lpa 0x0000 init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) usb 1-2: USB disconnect, address 5 drivers/usb/class/usblp.c: usblp0: removed usb 1-2: new full speed USB device using uhci_hcd and address 6 drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 6 if 0 alt 0 proto 2 vid 0x03F0 pid 0x1504 usb 1-2: USB disconnect, address 6 drivers/usb/class/usblp.c: usblp0: removed usb 1-2: new full speed USB device using uhci_hcd and address 7 drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 7 if 0 alt 0 proto 2 vid 0x03F0 pid 0x1504 usb 1-2: USB disconnect, address 7 drivers/usb/class/usblp.c: usblp0: removed usb 1-2: new full speed USB device using uhci_hcd and address 8 drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 8 if 0 alt 0 proto 2 vid 0x03F0 pid 0x1504 usb 1-2: USB disconnect, address 8 drivers/usb/class/usblp.c: usblp0: removed usb 1-2: new full speed USB device using uhci_hcd and address 9 drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 9 if 0 alt 0 proto 2 vid 0x03F0 pid 0x1504 init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) init_special_inode: bogus i_mode (177777) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 16:53:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 17:53:49 +0100 (BST) Subject: [Bug 15510] New: sk98lin module not being built anymore Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15510 Ubuntu | linux Summary: sk98lin module not being built anymore Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: herzi at gnome-de.org QAContact: kernel-bugs at lists.ubuntu.com # diff -u /boot/config-2.6.10-4-k7 /boot/config-2.6.12-8-k7 | /bin/grep -i sk98lin -CONFIG_SK98LIN=m +# CONFIG_SK98LIN is not set # Does this have a reason? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 18:15:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 19:15:16 +0100 (BST) Subject: [Bug 15481] Kernel panic with SBLIve on AMD64 In-Reply-To: Message-ID: <20050915181516.03FB622F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15481 Ubuntu | linux tom at badrunner.net changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |INVALID ------- Additional Comments From tom at badrunner.net 2005-09-15 19:15 UTC ------- Just realised i had set P&p os in my bios to 'Y' at the same time as installing the card. Unsetting it fixes the problem. This is what happens when you install new hardware at 2 in the morning. Sorry chaps. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 18:24:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 19:24:36 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050915182436.2A27722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From bmaurer at novell.com 2005-09-15 19:24 UTC ------- Tried the update, still getting hangs without laptop mode. Can somebody put the priority back up, as this seems to be a huge issue. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 18:29:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 19:29:15 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050915182915.BC12C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-15 19:29 UTC ------- (In reply to comment #64) > Tried the update, still getting hangs without laptop mode. Can somebody put the > priority back up, as this seems to be a huge issue. If you're getting a hang without laptop mode and without hdparm -B, then you have a different problem -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 20:11:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 21:11:36 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050915201136.8E4D322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-15 21:11 UTC ------- Can we verify that -B is actually disabled with an hdparm output on a freshboot for those testing this new package? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 19:15:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 20:15:59 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050915191559.1BE9A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From callipeo at libero.it 2005-09-15 20:15 UTC ------- I've tried to sleep/resume several times from the console, and the computer had never gone frozen. However I should add that while yesterday the problem appeared systematically (one resume->one freeze), today I tried to sleep/resume inside gnome and the computer did not freeze. I tried only once, but it is significant compared to the situation of the last days IMHO. Could it be a local problem? I have a spare partition available: could a further check on another fresh installation (a pure 5.10-preview system, without updates or changes to the default configuration) be helpful? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 20:31:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 21:31:22 +0100 (BST) Subject: [Bug 15118] Error updating Linux kernel image through "Software Updates" In-Reply-To: Message-ID: <20050915203122.0F4B522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15118 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |INVALID ------- Additional Comments From ben.collins at ubuntu.com 2005-09-15 21:31 UTC ------- ?rwsrwsrwt 65535 4294967295 4294967295 4294967295 1970-01-01 01:59 drm.ko ?rwsrwsrwt 65535 4294967295 4294967295 4294967295 1970-01-01 01:59 i810.ko ?rwsrwsrwt 65535 4294967295 4294967295 4294967295 1970-01-01 01:59 i830.ko ?rwsrwsrwt 65535 4294967295 4294967295 4294967295 1970-01-01 01:59 i915.ko Yeah, you definitely have a filesystem error. Run fsck ASAP. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 20:35:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 21:35:34 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050915203534.ACA5922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-15 21:35 UTC ------- kernel 2.6.12-8.13 just got uploaded, so expect to see it in a day or so. Please give it a try when you do get it. From what it sounds like, I don't expect it to fix the problem, but who knows. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 20:37:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 21:37:15 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050915203715.64DDE22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO Priority|P2 |P1 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-15 21:37 UTC ------- The 2.6.12-8.13 kernel that was just uploaded contains the sky2 driver, which supports Yukon2 cards. Please test it when it becomes available (within the next day or so). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 20:38:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 21:38:51 +0100 (BST) Subject: [Bug 15510] sk98lin module not being built anymore In-Reply-To: Message-ID: <20050915203851.2862022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15510 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-15 21:38 UTC ------- 2.6.12-8.13 (just uploaded) contains the sky2 driver, which supports the Yukon2 cards that skge doesn't support. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 21:05:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 22:05:14 +0100 (BST) Subject: [Bug 15537] New: Does not boot if chain-loaded Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15537 Ubuntu | kernel-package Summary: Does not boot if chain-loaded Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: serrador at tecknolabs.com QAContact: kernel-bugs at lists.ubuntu.com This bug has been discovered chainloading from grub to ubuntu main partition, which has lilo installed. The result is that init sequence is aborted and you are droped to initrd busybox. The sequence that appears on the screen is the following: FATAL: Module unknown not found mount: Mounting /dev/root on /root failed: No such device begin: Runing /scripts/log-bottom Done Done Begin: Running scripts/init-bottom Done mount: Mounting /root/dev on /dev/.static/dev failed: no such file or directory mount: Mounting /dev on /root/dev Target filesystem doesnt have /sbin/init Busybox /bin/sh: cant access tty # -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 21:07:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 22:07:22 +0100 (BST) Subject: [Bug 15537] Does not boot if chain-loaded In-Reply-To: Message-ID: <20050915210722.5970922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15537 Ubuntu | kernel-package ------- Additional Comments From serrador at tecknolabs.com 2005-09-15 22:07 UTC ------- Created an attachment (id=3825) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3825&action=view) Lilo configuration This is our current lilo config. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 21:15:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 22:15:59 +0100 (BST) Subject: [Bug 15537] Does not boot if chain-loaded In-Reply-To: Message-ID: <20050915211559.D086C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15537 Ubuntu | kernel-package ------- Additional Comments From serrador at tecknolabs.com 2005-09-15 22:15 UTC ------- Created an attachment (id=3826) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3826&action=view) lspci -v information -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 21:21:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 22:21:22 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050915212122.C7E4122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-15 22:21 UTC ------- Created an attachment (id=3827) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3827&action=view) kde inotify test Ok, I just ran the same test as yesterday. This time running KDE desktop, and as you can see from the logfile...nothing. I have a load of more then 3 and more applications running as on the gnome stuff. After all, yesterday I reproduced the gnome inotify behaviour on the plain console as well, but today I just switched off X and all the stuff, and I couldn't reproduce it :( This bug drives me crazy ;) \sh -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 21:30:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 22:30:05 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050915213005.20A2A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-15 22:30 UTC ------- Please attach the output of ''lspci -vv''. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 21:34:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 22:34:06 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050915213406.10C4122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-15 22:34 UTC ------- Created an attachment (id=3829) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3829&action=view) gamin debug on kde Guys, and to go more nuts I created a gamin debug session on kde... and as you can see...no DELETE event or "Move away" stuff... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 22:06:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 23:06:10 +0100 (BST) Subject: [Bug 14445] suspend-to-ram no longer works on powerbooks (breezy 20050831.1) In-Reply-To: Message-ID: <20050915220610.2079722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14445 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-15 23:06 UTC ------- James - did you have a chance to retest this? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 22:50:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 23:50:02 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to intel sound card In-Reply-To: Message-ID: <20050915225002.14B4122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|scott-bugs at ubuntu.com |ben.collins at ubuntu.com Component|hotplug |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-15 23:49 UTC ------- Please attach complete dmesg output, including the error you refer to in your report -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 22:58:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 15 Sep 2005 23:58:09 +0100 (BST) Subject: [Bug 15476] laptop won't boot without acpi=off In-Reply-To: Message-ID: <20050915225809.42DFF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15476 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 23:04:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 00:04:10 +0100 (BST) Subject: [Bug 8140] Ubuntu's kernels wont boot without acpi=off In-Reply-To: Message-ID: <20050915230410.9359D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8140 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|fabbione at ubuntu.com |ben.collins at ubuntu.com Status|REOPENED |NEW ------- Additional Comments From mdz at ubuntu.com 2005-09-16 00:04 UTC ------- I believe what we need from you is the output from "sudo dmidecode" -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 23:27:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 00:27:20 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050915232720.CD4F022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux desrt at desrt.ca changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |desrt at desrt.ca -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 15 23:55:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 00:55:26 +0100 (BST) Subject: [Bug 8140] Ubuntu's kernels wont boot without acpi=off In-Reply-To: Message-ID: <20050915235526.C1DD622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8140 Ubuntu | linux ------- Additional Comments From typo at netcabo.pt 2005-09-16 00:55 UTC ------- Created an attachment (id=3831) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3831&action=view) output of the "dmidecode" program Here's the output of dmidecode when running kernel.org's 2.6.13. If you want one with the latest hoary kernel I can produce it by booting with "acpi=off". -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 00:27:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 01:27:41 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to intel sound card In-Reply-To: Message-ID: <20050916002741.1480D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux ------- Additional Comments From myles at myles.id.au 2005-09-16 01:27 UTC ------- Created an attachment (id=3832) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3832&action=view) dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 00:28:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 01:28:12 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to intel sound card In-Reply-To: Message-ID: <20050916002812.63B1822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux ------- Additional Comments From myles at myles.id.au 2005-09-16 01:28 UTC ------- Created an attachment (id=3833) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3833&action=view) lsmod output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 00:28:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 01:28:42 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to intel sound card In-Reply-To: Message-ID: <20050916002842.922B022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux ------- Additional Comments From myles at myles.id.au 2005-09-16 01:28 UTC ------- Created an attachment (id=3834) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3834&action=view) lspci output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 00:29:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 01:29:31 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to intel sound card In-Reply-To: Message-ID: <20050916002931.5C9A322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux ------- Additional Comments From myles at myles.id.au 2005-09-16 01:29 UTC ------- Created an attachment (id=3835) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3835&action=view) output of `cat /var/log/messages > file.txt` -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 00:34:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 01:34:00 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to intel sound card In-Reply-To: Message-ID: <20050916003400.49F6722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux ------- Additional Comments From myles at myles.id.au 2005-09-16 01:34 UTC ------- Sorry for not attaching these earlier. There's no network, wired or wireless, available on the livecd once it boots. This is probably (hopefully) due to me force killing hotplug though. I used a usb key which was auto-mounted correctly (do usb keys not use hotplug?) to get these files. Hope they help. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:00:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:00:21 +0100 (BST) Subject: [Bug 1835] No highmem support by default In-Reply-To: Message-ID: <20050916010021.4832E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1835 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mail at carthik.net ------- Additional Comments From mdz at ubuntu.com 2005-09-16 02:00 UTC ------- *** Bug 15511 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:09:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:09:36 +0100 (BST) Subject: [Bug 15488] -source should recommend gcc-3.4 rather than gcc In-Reply-To: Message-ID: <20050916010936.864D822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15488 Ubuntu | kernel-package mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |iwj at ubuntu.com Component|linux-meta |kernel-package Summary|linux-source needs gcc-3.4 |-source should recommend | |gcc-3.4 rather than gcc ------- Additional Comments From mdz at ubuntu.com 2005-09-16 02:09 UTC ------- This will hopefully not be necessary in the next release (Linux should eventually build correctly with the default gcc), but if it can be fixed in a low-risk way for Breezy, that would be good...changing the hardcoded dependency in kernel-package should suffice -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:11:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:11:53 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050916011153.23CAA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-16 02:11 UTC ------- Please re-test with acpi-support 0.32 and a full reboot of the system -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:12:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:12:17 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050916011217.37BA422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-16 02:12 UTC ------- (In reply to comment #67) > Please re-test with acpi-support 0.32 and a full reboot of the system I meant 0.33, of course -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:17:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:17:26 +0100 (BST) Subject: [Bug 15530] usplash flickery/distorted on Dell Inspiron 2600 (Intel 830M chipset) In-Reply-To: Message-ID: <20050916011726.90AC522F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15530 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mjg59 at codon.org.uk |ben.collins at ubuntu.com Component|usplash |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-16 02:17 UTC ------- (In reply to comment #0) > I should note that this is definitely a framebuffer issue, since the ubuntu > installer (also using vga16fb) appears with the same artifacts if I don't pass > debian-installer/framebuffer=false to the kernel. ...in which case, it's a Linux bug, and not a usplash bug. Reassigning. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:18:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:18:01 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050916011801.2E67A22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From kleeman at cims.nyu.edu 2005-09-16 02:18 UTC ------- OK I have tested the sky2 driver in Breezy and have a mixed report. Initially the network came up fine and dmesg showed: [4294747.265000] sky2 eth0: enabling interface [4294747.281000] NET: Registered protocol family 17 [4294749.226000] sky2 eth0: Link is up at 100 Mbps, full duplex, flowcontrol none [4294752.177000] NET: Registered protocol family 10 [4294752.178000] Disabled Privacy Extensions on device c0337fa0(lo) [4294752.178000] IPv6 over IPv4 tunneling driver and ifconfig showed that dhcp had handed out a good address: eth0 Link encap:Ethernet HWaddr 00:11:11:40:FA:7D inet addr:192.168.0.100 Bcast:192.168.0.255 Mask:255.255.255.0 inet6 addr: fe80::211:11ff:fe40:fa7d/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:105 errors:0 dropped:0 overruns:0 frame:0 TX packets:72 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:34261 (33.4 KiB) TX bytes:7582 (7.4 KiB) Interrupt:17 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:10443 errors:0 dropped:0 overruns:0 frame:0 TX packets:10443 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:968128 (945.4 KiB) TX bytes:968128 (945.4 KiB) I was able to ssh to remote sites and dns seemed to be working. In fact this bug report is being done using the driver. However I then launched firefox and when certain sites loaded (eg nytimes) no pictures came up and the network froze. At that point the router (192.168.0.1) was not pingable. I have seen a similar problem a long time ago and it was then connected with ipv6 problems. In dmesg the last line is [4295331.141000] eth0: no IPv6 routers present The above suggests that the driver works but still has bugs. If you want me to run further tests let me know. My networking skills are ok but definitely not advanced.... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:21:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:21:35 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050916012135.7BD2222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From kleeman at cims.nyu.edu 2005-09-16 02:21 UTC ------- One further report. When the network freezes I am able to recover it again as follows: sudo ifdown eth0 sudo rmmod sky2 sudo modprobe sky2 sudo ifup eth0 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:44:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:44:36 +0100 (BST) Subject: [Bug 15556] Hibernate causes a kernel oops on a hyperthreaded P4 laptop using SMP kernel In-Reply-To: Message-ID: <20050916014436.04A1D22F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15556 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mjg59 at codon.org.uk |ben.collins at ubuntu.com Component|acpi-support |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-16 02:44 UTC ------- Please test with 2.6.12-8.13 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 01:51:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 02:51:00 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050916015100.A662422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-16 02:51 UTC ------- I will upgrade my kernel as soon as it is available. Meanwhile, I have tried to debug the linux-wlan-ng-pre-up script. Have any of you gotten this to work with WEP? I ask because anything inside the conditional on line 121 is not working: I need to change if [ "$IF_WIRELESS_ENC" = "on" ]; then to if [ !"$IF_WIRELESS_ENC" = "on" ]; then for it to even consider using a wep. IF_WLAN_NG_HOSTWEP is also improperly set, as it should be "true" but is false when I debug it. I though it would be useful to ask if WEP works for you before continuing on. It would seem that ifup is not passing on the proper arguments to this script. If WEP is not implementd correctly, the interface cannot be established (here in my house) and therefore the device would be ignored. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 02:43:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 03:43:11 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050916024311.38E2722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From sb73542 at safe-mail.net 2005-09-16 03:43 UTC ------- cat /proc/interrupts actually doesn't list irq 11 as being used. But obviously it is. I also tried every other irq I could think of, but I only succeeded in freezing my computer with irq 10. >>Do you have PnP OS enabled in BIOS? Yes >>Is ACPI enabled? No, booting with apm=on acpi=off >>What happens when you boot with noapic? Same thing. Should I install isapnptools and give you guys more details? Thanks a lot. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 02:49:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 03:49:10 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050916024910.3722F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-16 03:49 UTC ------- (In reply to comment #13) > I will upgrade my kernel as soon as it is available. Meanwhile, I have tried to > debug the linux-wlan-ng-pre-up script. > > Have any of you gotten this to work with WEP? Yes, it works fine when the proper parameters are set in /etc/network/interfaces (manually or via the desktop tools). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 02:51:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 03:51:47 +0100 (BST) Subject: [Bug 14996] Live CD HP dx5150 MT (Athlon64) cannot mount installation CD during boot In-Reply-To: Message-ID: <20050916025147.A977322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14996 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |carl_saltsman at ohnb.uscourts. | |gov ------- Additional Comments From mdz at ubuntu.com 2005-09-16 03:51 UTC ------- *** Bug 15515 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 03:31:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 04:31:24 +0100 (BST) Subject: [Bug 15561] New: unmet dependencies in new fglrx packages Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15561 Ubuntu | linux-restricted-modules Summary: unmet dependencies in new fglrx packages Product: Ubuntu Version: unspecified Platform: All OS/Version: All Status: UNCONFIRMED Severity: major Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: james.troup at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com * Binaries from linux-restricted-modules-2.6.12 2.6.12.3-4 cannot be installed: + fglrx-control(amd64) + xorg-driver-fglrx(amd64) + xorg-driver-fglrx-dev(amd64) + xorg-driver-fglrx-dev(i386) I only checked the last one, but it seems like a genuine versioning problem and not just britney going krazy. The following packages have unmet dependencies: xorg-driver-fglrx-dev: Depends: xorg-driver-fglrx (= 6.8.0-8.16.20) but it is not going to be installed E: Broken packages -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 04:37:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 05:37:54 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050916043754.1F43422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-16 05:37 UTC ------- (In reply to comment #4) >>Do you have PnP OS enabled in BIOS? > Yes Please disable PnP OS in BIOS and pass isapnp=0 to modprobe again. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 05:25:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 06:25:29 +0100 (BST) Subject: [Bug 15305] ACPI non-functional on Asus V6800V In-Reply-To: Message-ID: <20050916052529.E658D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15305 Ubuntu | linux stewart at flamingspork.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From stewart at flamingspork.com 2005-09-16 06:25 UTC ------- Has been resolved in latest kernel - Linux version 2.6.12-8-686 I now have CPU frequency scaling and other nice things back. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 06:14:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 07:14:47 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050916061447.947A722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-16 07:14 UTC ------- Created an attachment (id=3838) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3838&action=view) lspci -vv -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 06:20:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 07:20:11 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050916062011.9E39022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-16 07:20 UTC ------- And now, please ''lspci -nvv''. Thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 06:28:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 07:28:07 +0100 (BST) Subject: [Bug 4334] Problem switching from built-in trackpoint to external PS/2 mouse In-Reply-To: Message-ID: <20050916062807.9C83D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4334 Ubuntu (laptop) | linux corey.burger at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 06:33:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 07:33:47 +0100 (BST) Subject: [Bug 13438] No irda on laptop (VIA chipset) In-Reply-To: Message-ID: <20050916063347.B483E22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13438 Ubuntu (laptop) | linux corey.burger at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 06:35:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 07:35:36 +0100 (BST) Subject: [Bug 14081] SD card in laptop reader does not work In-Reply-To: Message-ID: <20050916063536.724E322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14081 Ubuntu (laptop) | linux corey.burger at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |corey.burger at gmail.com Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 06:36:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 07:36:21 +0100 (BST) Subject: [Bug 14548] pcmcia detection locks up my laptop In-Reply-To: Message-ID: <20050916063621.C185B22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14548 Ubuntu (laptop) | linux corey.burger at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO Keywords| |laptop ------- Additional Comments From corey.burger at gmail.com 2005-09-16 07:36 UTC ------- Have you tried the Breezy preview release and does this still happen to you? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 06:38:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 07:38:05 +0100 (BST) Subject: [Bug 15476] laptop won't boot without acpi=off In-Reply-To: Message-ID: <20050916063805.A242E22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15476 Ubuntu (laptop) | linux corey.burger at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 06:38:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 07:38:13 +0100 (BST) Subject: [Bug 15556] Hibernate causes a kernel oops on a hyperthreaded P4 laptop using SMP kernel In-Reply-To: Message-ID: <20050916063813.820EA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15556 Ubuntu (laptop) | linux corey.burger at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 07:05:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 08:05:04 +0100 (BST) Subject: [Bug 15561] unmet dependencies in new fglrx packages In-Reply-To: Message-ID: <20050916070504.3670622F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15561 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com ------- Additional Comments From fabbione at ubuntu.com 2005-09-16 08:05 UTC ------- the amd64 is mostlikely related to lib32gcc1 being screwed and fixed in gcc-4.0 with the last upload. I am looking into the other ones. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 07:16:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 08:16:04 +0100 (BST) Subject: [Bug 13885] USB mouse freezing under Xorg with linux-image-2.6.12 In-Reply-To: Message-ID: <20050916071604.72A5222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13885 Ubuntu | linux daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ubuntubug at curo.dk ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-16 08:16 UTC ------- *** Bug 12637 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 07:17:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 08:17:43 +0100 (BST) Subject: [Bug 15396] Adaptec 2930U2 not detected properly? In-Reply-To: Message-ID: <20050916071743.08F7022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15396 Ubuntu | linux ------- Additional Comments From peter.grunwald at googlemail.com 2005-09-16 08:17 UTC ------- I have tried the commands and have them in stored in different comments. lsmod, lspci, dmesg commands have been excuted on a running Kanotix system that uses kernel 2.6.11. The PC hardware is the same like the one used for 5.10 preview install/Live CD. I have interrupted the LIVE CD because after running through the SCSI detection problem, again a great delay happened with "Loadmodule ide-disk for Linux ATA DISK" it stopped at 83% and was stayinf at that point for approx. 10 min. The next stopp was with "LVM Volume Groups" after additional 10 min. at this stopp I interrupted the setup. I am not sure how to attach the text files therefore I will send an email to the above mentioned email address of Ben. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 07:36:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 08:36:11 +0100 (BST) Subject: [Bug 15561] unmet dependencies in new fglrx packages In-Reply-To: Message-ID: <20050916073611.43B3E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15561 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From fabbione at ubuntu.com 2005-09-16 08:36 UTC ------- (In reply to comment #0) > * Binaries from linux-restricted-modules-2.6.12 2.6.12.3-4 cannot be installed: > + fglrx-control(amd64) Depends: xorg-driver-fglrx > + xorg-driver-fglrx(amd64) is not installable until gcc-4.0 ubuntu8 will hit the archive. > + xorg-driver-fglrx-dev(amd64) > + xorg-driver-fglrx-dev(i386) > > I only checked the last one, but it seems like a genuine versioning problem and > not just britney going krazy. > > The following packages have unmet dependencies: > xorg-driver-fglrx-dev: Depends: xorg-driver-fglrx (= 6.8.0-8.16.20) but it is > not going to be installed > E: Broken packages Confirmed that it was a mere version problem. Fixed in -6 upload. Thanks Fabio -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 07:50:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 08:50:43 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050916075043.8C52B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux ------- Additional Comments From malmjako at student.chalmers.se 2005-09-16 08:50 UTC ------- The problem existed and has possibly been resolved for Fedora users: https://bugzilla.redhat.com/bugzilla/long_list.cgi?buglist=167093 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 08:37:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 09:37:21 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050916083721.A586022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From seb128 at ubuntu.com 2005-09-16 09:37 UTC ------- this happens on a stock command line boot with no gdm, no xorg used. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 09:28:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 10:28:07 +0100 (BST) Subject: [Bug 15573] New: add hotplug support for marvell discovery gigabit ethernet driver. Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15573 Ubuntu | linux Summary: add hotplug support for marvell discovery gigabit ethernet driver. Product: Ubuntu Version: unspecified Platform: powerpc OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: luther at debian.org QAContact: kernel-bugs at lists.ubuntu.com CC: cjwatson at ubuntu.com As ubuntu moved away from using discover in favour of pure hotplug (or derivative), the pegasos gigabit ethernet driver, mv643xx_eth, was no more loaded automatically, which was problematic with u-i, and broke some other stuff, like trying to use nfsroot over the gigabit ethernet port and other such application that need the network interface. This patch : http://svn.debian.org/wsvn/kernel/dists/sid/linux-2.6/debian/patches-debian/powerpc-mv643xx-hotplug-support.patch?op=file&rev=0&sc=0 Scheduled for addition in the next round of debian kernels, adds the mv643xx_eth module to the pci subsystem, in the same way that we used to map the discovery II northbridge pci id in the discover method, and thus adds an hotplug event for this device. This is not an ideal solution, since we should instead create a builtin or plateform kind of bus, where those devices reside, and add propper hotplug events to all such devices, mostly used in the embedded world, but this is probably something for after the ppc64/ppc reorganisation. In any case, this code only affects hardware possessing a marvell discovery II northbridge, and there is only the pegasos in the kind of market ubuntu supports that uses it (others are probably routers and other such appliances). Friendly, Sven Luther -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 10:29:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 11:29:31 +0100 (BST) Subject: [Bug 15488] -source should recommend gcc-3.4 rather than gcc In-Reply-To: Message-ID: <20050916102931.BBED522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15488 Ubuntu | kernel-package iwj at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P2 |P1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 10:31:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 11:31:21 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050916103121.EEF0022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-16 11:31 UTC ------- This should be fixed in the latest kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 10:36:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 11:36:40 +0100 (BST) Subject: [Bug 15578] New: upgrading to linux-image-2.6.10-34.5 break suspend-to-ram Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15578 Ubuntu | linux Summary: upgrading to linux-image-2.6.10-34.5 break suspend-to- ram Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: qrto at poczta.onet.pl QAContact: kernel-bugs at lists.ubuntu.com After an upgrade to linux-image-2.6.10-34.5 suspend-to-ram, done with 'hibernate' scritp stops working properly, that is, i can suspend the laptop, though unsuspend does not work properly with X, video is not turned on, all i get is black screen. The system is unsuspended cause i'm able to 'type' commands blindly. Downgrading to 2.6.10-34.4 fixed everything. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 10:46:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 11:46:59 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050916104659.DCAE222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ogra at ubuntu.com 2005-09-16 11:46 UTC ------- it should also be noted that it seems that this bug can be influenced by either high load or high disk IO traffic. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 10:47:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 11:47:42 +0100 (BST) Subject: [Bug 15579] No DRI since upgrading to Breezy In-Reply-To: Message-ID: <20050916104742.DFD8022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15579 Ubuntu | linux daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |ben.collins at ubuntu.com Component|xserver-xorg-driver-i810 |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 10:53:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 11:53:15 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050916105315.809AD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-16 11:53 UTC ------- emma at ubuntu:~$ cat /etc/network/interfaces # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback # This is a list of hotpluggable network interfaces. # They will be activated automatically by the hotplug subsystem. mapping hotplug script grep map eth0 iface wlan0 inet dhcp wireless-mode managed wireless-essid 37633301234 wireless-key 4a2b1a6a10 emma at ubuntu:~$ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 10:54:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 11:54:42 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050916105442.4306122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ross at burtonini.com 2005-09-16 11:54 UTC ------- I can correlate it to high disk IO directly. A large find or pbuilder (large tar extract) causes it on demand for me. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 11:28:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 12:28:30 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050916112830.1D38F22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From dan at theidiots.org 2005-09-16 12:28 UTC ------- (In reply to comment #40) > One further report. When the network freezes... Confirmed. I tested it with sky2 as well and the network works for like 1 minute, but as soon as you try to access a site or anything, the network goes down and becomes inactive. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 12:28:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 13:28:16 +0100 (BST) Subject: [Bug 15033] 3c59x fails on linux-image-2.6.12-8-386 In-Reply-To: Message-ID: <20050916122816.7B4A122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15033 Ubuntu | linux yann.aubert at free.fr changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From yann.aubert at free.fr 2005-09-16 13:28 UTC ------- fixed with 2.6.12-8.13 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 12:35:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 13:35:39 +0100 (BST) Subject: [Bug 15033] 3c59x fails on linux-image-2.6.12-8-386 In-Reply-To: Message-ID: <20050916123539.DA3C622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15033 Ubuntu | linux yann.aubert at free.fr changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From yann.aubert at free.fr 2005-09-16 13:35 UTC ------- fixed with 2.6.12-8.13 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 13:45:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 14:45:05 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050916134505.8F6E722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From em36 at columbia.edu 2005-09-16 14:45 UTC ------- Same problem on a ThinkPad T42 with Breezy preview, fully updated. Problem occurs whether or not I add pci=noacpi and acpi_sleep=s3_bios to the boot line. The crash seems to occur at different times, sometimes after a line about swsusp, sometimes with garbled video, - and sometimes (as reported elsewhere in this bug) the machine tries to recover, but then spontaneously reboots. Shouldn't this be upgraded to a severe bug? Hibernation worked perfectly on this machine with Hoary. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 13:49:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 14:49:38 +0100 (BST) Subject: [Bug 15585] New: No sound in 2.6.12-8 (breezy) Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | linux Summary: No sound in 2.6.12-8 (breezy) Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: ubuntu at juerd.nl QAContact: kernel-bugs at lists.ubuntu.com Sound's gone. No error messages, I just hear nothing. Volume's at max, not muted, works in perfectly whatever hoary shipped. juerd at nano:~$ lspci | grep audio 0000:00:1e.2 Multimedia audio controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03) juerd at nano:~$ lsmod | grep snd snd_intel8x0 33152 5 snd_ac97_codec 83452 1 snd_intel8x0 snd_pcm_oss 52704 0 snd_mixer_oss 19296 1 snd_pcm_oss snd_pcm 88840 5 snd_intel8x0,snd_ac97_codec,snd_pcm_oss snd_timer 24164 3 snd_pcm snd 54884 12 snd_intel8x0,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer soundcore 9600 1 snd snd_page_alloc 10600 2 snd_intel8x0,snd_pcm Not even catting a kernel image to the sound device produces anything audible. The computer is a IBM ThinkPad X41. If any more information is needed, let me know please. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 13:51:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 14:51:46 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050916135146.D464E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-16 14:51 UTC ------- Ok. With luck, this will be fixed in the next initramfs-tools upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 14:00:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 15:00:50 +0100 (BST) Subject: [Bug 14284] sk98lin driver needs updating In-Reply-To: Message-ID: <20050916140050.F404622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14284 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|zulcss at gmail.com |ben.collins at ubuntu.com Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-16 15:00 UTC ------- sky2 driver is in 2.6.12-8.13, so should handle Yukon2 now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 14:04:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 15:04:33 +0100 (BST) Subject: [Bug 15589] New: Badness in ioctl() and/or networking in kernel Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15589 Ubuntu | kernel-package Summary: Badness in ioctl() and/or networking in kernel Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: forgue at oakland.edu QAContact: kernel-bugs at lists.ubuntu.com I'm guessing this is a kernel problem.... I'm using brezzy (as of this morning, 9/16) and I'm having wierd network issues. My hardware is an IBM x41 and I'm using the wired network connection (although this happens with both wired/wireless). I can't sudo (same problem, i'd imagine). Here's a list of my hardware: forgue at spica:~$ lspci -v 0000:00:00.0 Host bridge: Intel Corp. Mobile Memory Controller Hub (rev 03) Subsystem: IBM: Unknown device 0575 Flags: bus master, fast devsel, latency 0 Capabilities: 0000:00:02.0 VGA compatible controller: Intel Corp. Mobile Graphics Controller (rev 03) (prog-if 00 [VGA]) Subsystem: IBM: Unknown device 0582 Flags: bus master, fast devsel, latency 0, IRQ 16 Memory at a0080000 (32-bit, non-prefetchable) [size=512K] I/O ports at 1800 [size=8] Memory at c0000000 (32-bit, prefetchable) [size=256M] Memory at a0000000 (32-bit, non-prefetchable) [size=256K] Capabilities: 0000:00:02.1 Display controller: Intel Corp. Mobile Graphics Controller (rev 03) Subsystem: IBM: Unknown device 0582 Flags: fast devsel Memory at 20000000 (32-bit, non-prefetchable) [disabled] [size=512K] Capabilities: 0000:00:1c.0 PCI bridge: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 03) (prog-if 00 [Normal decode]) Flags: bus master, fast devsel, latency 0 Bus: primary=00, secondary=02, subordinate=02, sec-latency=0 Memory behind bridge: a0100000-a01fffff Capabilities: 0000:00:1d.0 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03) (prog-if 00 [UHCI]) Subsystem: IBM: Unknown device 0565 Flags: bus master, medium devsel, latency 0, IRQ 16 I/O ports at 1820 [size=32] 0000:00:1d.1 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 03) (prog-if 00 [UHCI]) Subsystem: IBM: Unknown device 0565 Flags: bus master, medium devsel, latency 0, IRQ 17 I/O ports at 1840 [size=32] 0000:00:1d.2 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 03) (prog-if 00 [UHCI]) Subsystem: IBM: Unknown device 0565 Flags: bus master, medium devsel, latency 0, IRQ 18 I/O ports at 1860 [size=32] 0000:00:1d.3 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 03) (prog-if 00 [UHCI]) Subsystem: IBM: Unknown device 0565 Flags: bus master, medium devsel, latency 0, IRQ 19 I/O ports at 1880 [size=32] 0000:00:1d.7 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03) (prog-if 20 [EHCI]) Subsystem: IBM: Unknown device 0566 Flags: bus master, medium devsel, latency 0, IRQ 19 Memory at a0040000 (32-bit, non-prefetchable) [size=1K] Capabilities: 0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev d3) (prog-if 01 [Subtractive decode]) Flags: bus master, fast devsel, latency 0 Bus: primary=00, secondary=04, subordinate=07, sec-latency=64 I/O behind bridge: 00003000-00006fff Memory behind bridge: a0200000-afffffff Prefetchable memory behind bridge: 00000000d0000000-00000000d7f00000 Capabilities: 0000:00:1e.2 Multimedia audio controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 03) Subsystem: IBM: Unknown device 0581 Flags: bus master, medium devsel, latency 0, IRQ 22 I/O ports at 1c00 [size=256] I/O ports at 18c0 [size=64] Memory at a0040800 (32-bit, non-prefetchable) [size=512] Memory at a0040400 (32-bit, non-prefetchable) [size=256] Capabilities: 0000:00:1e.3 Modem: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Modem Controller (rev 03) (prog-if 00 [Generic]) Subsystem: IBM: Unknown device 0576 Flags: medium devsel, IRQ 23 I/O ports at 2400 [size=256] I/O ports at 2000 [size=128] Capabilities: 0000:00:1f.0 ISA bridge: Intel Corp. 82801FBM (ICH6M) LPC Interface Bridge (rev 03) Subsystem: IBM: Unknown device 0568 Flags: bus master, medium devsel, latency 0 0000:00:1f.2 IDE interface: Intel Corp. 82801FBM (ICH6M) SATA Controller (rev 03) (prog-if 80 [Master]) Subsystem: IBM: Unknown device 056a Flags: bus master, 66MHz, medium devsel, latency 0 I/O ports at I/O ports at I/O ports at I/O ports at I/O ports at 1810 [size=16] Capabilities: 0000:00:1f.3 SMBus: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 03) Subsystem: IBM: Unknown device 056b Flags: medium devsel, IRQ 11 I/O ports at 18a0 [size=32] 0000:02:00.0 Ethernet controller: Broadcom Corporation: Unknown device 167d (rev 11) Subsystem: IBM: Unknown device 0577 Flags: bus master, fast devsel, latency 0, IRQ 16 Memory at a0100000 (64-bit, non-prefetchable) [size=64K] Capabilities: 0000:04:00.0 CardBus bridge: Ricoh Co Ltd RL5c476 II (rev 8d) Subsystem: IBM: Unknown device 0555 Flags: bus master, medium devsel, latency 168, IRQ 16 Memory at a0200000 (32-bit, non-prefetchable) [size=4K] Bus: primary=04, secondary=05, subordinate=08, sec-latency=176 Memory window 0: 20400000-207ff000 (prefetchable) Memory window 1: 20800000-20bff000 I/O window 0: 00004000-000040ff I/O window 1: 00004400-000044ff 16-bit legacy interface ports at 0001 0000:04:00.1 0805: Ricoh Co Ltd: Unknown device 0822 (rev 13) Subsystem: IBM: Unknown device 0556 Flags: bus master, medium devsel, latency 64, IRQ 11 Memory at a0201000 (32-bit, non-prefetchable) [size=256] Capabilities: 0000:04:02.0 Network controller: Intel Corp.: Unknown device 4224 (rev 05) Subsystem: Intel Corp.: Unknown device 1010 Flags: bus master, medium devsel, latency 64, IRQ 21 Memory at a0202000 (32-bit, non-prefetchable) [size=4K] Capabilities: And here's an strace of the ifconfig program: forgue at spica:~$ strace ifconfig execve("/sbin/ifconfig", ["ifconfig"], [/* 30 vars */]) = 0 uname({sys="Linux", node="spica", ...}) = 0 brk(0) = 0x8057000 old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f3c000 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) old_mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f3a000 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory) open("/etc/ld.so.cache", O_RDONLY) = 3 fstat64(3, {st_mode=S_IFREG|0644, st_size=51700, ...}) = 0 old_mmap(NULL, 51700, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7f2d000 close(3) = 0 access("/etc/ld.so.nohwcap", F_OK) = -1 ENOENT (No such file or directory) open("/lib/tls/i686/cmov/libc.so.6", O_RDONLY) = 3 read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220O\1"..., 512) = 512 fstat64(3, {st_mode=S_IFREG|0644, st_size=1226096, ...}) = 0 old_mmap(NULL, 1236380, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0xb7dff000 old_mmap(0xb7f27000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x127000) = 0xb7f27000 old_mmap(0xb7f2b000, 7580, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0xb7f2b000 close(3) = 0 old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7dfe000 set_thread_area({entry_number:-1 -> 6, base_addr:0xb7dfe8e0, limit:1048575, seg_32bit:1, contents:0, read_exec_only:0, limit_in_pages:1, seg_not_present:0, useable:1}) = 0 munmap(0xb7f2d000, 51700) = 0 brk(0) = 0x8057000 brk(0x8078000) = 0x8078000 open("/usr/lib/locale/locale-archive", O_RDONLY|O_LARGEFILE) = 3 fstat64(3, {st_mode=S_IFREG|0644, st_size=1181168, ...}) = 0 mmap2(NULL, 1181168, PROT_READ, MAP_PRIVATE, 3, 0) = 0xb7cdd000 close(3) = 0 uname({sys="Linux", node="spica", ...}) = 0 access("/proc/net", R_OK) = 0 access("/proc/net/unix", R_OK) = 0 socket(PF_FILE, SOCK_DGRAM, 0) = 3 socket(PF_INET, SOCK_DGRAM, IPPROTO_IP) = 4 access("/proc/net/if_inet6", R_OK) = 0 socket(PF_INET6, SOCK_DGRAM, IPPROTO_IP) = 5 access("/proc/net/ax25", R_OK) = -1 ENOENT (No such file or directory) access("/proc/net/nr", R_OK) = -1 ENOENT (No such file or directory) access("/proc/net/rose", R_OK) = -1 ENOENT (No such file or directory) access("/proc/net/ipx", R_OK) = -1 ENOENT (No such file or directory) access("/proc/net/appletalk", R_OK) = -1 ENOENT (No such file or directory) access("/proc/sys/net/econet", R_OK) = -1 ENOENT (No such file or directory) access("/proc/sys/net/ash", R_OK) = -1 ENOENT (No such file or directory) access("/proc/net/x25", R_OK) = -1 ENOENT (No such file or directory) open("/proc/net/dev", O_RDONLY) = 6 fstat64(6, {st_mode=S_IFREG|0444, st_size=0, ...}) = 0 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7cdc000 read(6, "Inter-| Receive "..., 1024) = 692 read(6, "", 1024) = 0 close(6) = 0 munmap(0xb7cdc000, 4096) = 0 open("/usr/share/locale/locale.alias", O_RDONLY) = 6 fstat64(6, {st_mode=S_IFREG|0644, st_size=2582, ...}) = 0 mmap2(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7cdc000 read(6, "# Locale name alias data base.\n#"..., 4096) = 2582 read(6, "", 4096) = 0 close(6) = 0 munmap(0xb7cdc000, 4096) = 0 open("/usr/share/locale/en/LC_MESSAGES/net-tools.mo", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/share/locale-langpack/en/LC_MESSAGES/net-tools.mo", O_RDONLY) = -1 ENOENT (No such file or directory) ioctl(4, SIOCGIFCONF, { Where it hangs forever. I first saw this problem yesterday, but thought it was something else. When it kept happening this morning, I knew it was something on my end. I was able to reboot into single user/recovery mode and do apt-get update/dist-upgrade and upgrade to the latest breezy, but it still happens. Here's a list of programs that I believe are also affected by this bug (so far): sudo (can't strace it, needs to run setuid) evolution (hangs on poll() connecting to a UNIX socket) The network tools (ifconfig, netstat) I filed this as kernel-package because I don't know where else it would go. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 15:13:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 16:13:52 +0100 (BST) Subject: [Bug 15592] New: ath_rate_onoe kernel version mismatch. Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15592 Ubuntu | linux-restricted-modules Summary: ath_rate_onoe kernel version mismatch. Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: stratus at acm.org QAContact: kernel-bugs at lists.ubuntu.com Hi, When i try 'modprobe ath_pci' it can't load ath_rate_onoe.ko, showing the following error message: ath_rate_onoe: version magic '2.6.12-3-686 preempt 686 gcc-3.4' should be '2.6.12-8-686 preempt 686 gcc-3.4' It should be because the latest linux-restricted-modules-686 depends on a package that is version 2.6.12-3-686 but the latest linux-image depends on a package that is version 2.6.12-8-686 and unfortunately i'm running both. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 15:16:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 16:16:46 +0100 (BST) Subject: [Bug 14652] ACPI worked in hoary, no longer in breezy In-Reply-To: Message-ID: <20050916151646.F294D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14652 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-16 16:16 UTC ------- A patch that should address this issue is in 2.6.12-8.13. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 15:23:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 16:23:27 +0100 (BST) Subject: [Bug 15589] Badness in ioctl() and/or networking in kernel In-Reply-To: Message-ID: <20050916152327.8001C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15589 Ubuntu | kernel-package forgue at oakland.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTABUG ------- Additional Comments From forgue at oakland.edu 2005-09-16 16:23 UTC ------- This problem is with VMWare5's 'vmnet' kernel module. I prevented that module from loading and everything works as it's supposed to. Probably a compatibility issue with the newer kernels, Wait to go VMWare. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 16:32:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 17:32:50 +0100 (BST) Subject: [Bug 11737] KWifiManager causes hard-lock? In-Reply-To: Message-ID: <20050916163250.E532F22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11737 Ubuntu (kubuntu) | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From zulcss at gmail.com 2005-09-16 17:32 UTC ------- I havent been able to reproduce this with more recent kernels. Closing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 17:01:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 18:01:14 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050916170114.DCC7D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-16 18:01 UTC ------- Created an attachment (id=3848) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3848&action=view) lspci-nvv -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 17:02:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 18:02:34 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050916170234.5438B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-16 18:02 UTC ------- Daniel, what do you want to figure out about the lspci output? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 17:51:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 18:51:22 +0100 (BST) Subject: [Bug 15566] oops when USB2 hd plugged in In-Reply-To: Message-ID: <20050916175122.8996B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15566 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 18:34:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 19:34:35 +0100 (BST) Subject: [Bug 15488] -source should recommend gcc-3.4 rather than gcc In-Reply-To: Message-ID: <20050916183435.4976122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15488 Ubuntu | kernel-package iwj at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From iwj at ubuntu.com 2005-09-16 19:34 UTC ------- This is fixed in kernel-package 9.001ubuntu3. `make-kpkg kernel-image' will also arrange to use gcc-3.4. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 18:57:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 19:57:40 +0100 (BST) Subject: [Bug 15488] -source should recommend gcc-3.4 rather than gcc In-Reply-To: Message-ID: <20050916185740.BF57822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15488 Ubuntu | kernel-package iwj at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |UNCONFIRMED Resolution|FIXED | ------- Additional Comments From iwj at ubuntu.com 2005-09-16 19:57 UTC ------- Following comments from the kernel team about some of my changes I've reverted ubuntu3 in ubuntu4. This will be dealt with further on Monday. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 19:12:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 20:12:38 +0100 (BST) Subject: [Bug 11555] powernowd loads wrong module, Acer Aspire 1683 In-Reply-To: Message-ID: <20050916191238.2688022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11555 Ubuntu (laptop) | powernowd mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|thom at ubuntu.com |tfheen at ubuntu.com Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 19:23:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 20:23:43 +0100 (BST) Subject: [Bug 8739] spurious keyboard messages in syslog with multimedia keyboard In-Reply-To: Message-ID: <20050916192343.A137A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8739 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|thom at ubuntu.com |ben.collins at ubuntu.com Component|console-data |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 19:30:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 20:30:47 +0100 (BST) Subject: [Bug 15585] No sound in 2.6.12-8 (breezy) In-Reply-To: Message-ID: <20050916193047.5B58522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 19:34:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 20:34:42 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050916193442.AD17C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|No ethernet colony 4 (8139cp|No ethernet colony 4 (8139cp |vs. 8319too) |vs. 8139too) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 19:40:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 20:40:56 +0100 (BST) Subject: [Bug 15592] ath_rate_onoe kernel version mismatch. In-Reply-To: Message-ID: <20050916194056.5398C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15592 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |ben.collins at ubuntu.com Component|linux-restricted-modules |linux ------- Additional Comments From mdz at ubuntu.com 2005-09-16 20:40 UTC ------- Very strange, but I can confirm this: mizar:[/tmp/ubuntu-meta-0.72] modinfo ath_rate_onoe filename: /lib/modules/2.6.12-8-k7/madwifi/ath_rate_onoe.ko author: Errno Consulting, Sam Leffler description: Atsushi Onoe's rate control algorithm for Atheros devices license: Dual BSD/GPL vermagic: 2.6.12-3-686 preempt 686 gcc-3.4 This only affects this one module: mizar:[/lib/modules/2.6.12-8-k7] find . -name '*.ko' | xargs modinfo | grep vermagic G 2.6.12-3-686 vermagic: 2.6.12-3-686 preempt 686 gcc-3.4 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 19:41:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 20:41:42 +0100 (BST) Subject: [Bug 15592] ath_rate_onoe kernel version mismatch. In-Reply-To: Message-ID: <20050916194142.9F7C022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15592 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |fabbione at ubuntu.com Component|linux |linux-restricted-modules -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 19:48:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 20:48:52 +0100 (BST) Subject: [Bug 15592] ath_rate_onoe kernel version mismatch. In-Reply-To: Message-ID: <20050916194852.D38F522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15592 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From mdz at ubuntu.com 2005-09-16 20:48 UTC ------- This seems to be caused by an unclean build tree; the .orig.tar.gz contains generated files: ./madwifi/ath_rate/onoe/ath_rate_onoe.mod.c ./madwifi/ath_rate/onoe/ath_rate_onoe.mod.o ./madwifi/ath_rate/onoe/onoe.o ./madwifi/ath_rate/onoe/ath_rate_onoe.o -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 19:50:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 20:50:59 +0100 (BST) Subject: [Bug 15596] Dell Inspiron 8200 freezing every few seconds In-Reply-To: Message-ID: <20050916195059.4EFCE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15596 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-16 20:50 UTC ------- Please try the other suggestions on https://wiki.ubuntu.com/DebuggingIRQProblems Does it help if you boot the old kernel? It should still be present and available from the GRUB menu. Please attach dmesg output from both kernels -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 20:50:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 21:50:32 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050916205032.B7DEF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From callipeo at libero.it 2005-09-16 21:50 UTC ------- Today the problem appeared two times, after ~30 minutes from the resuming. I will try to not put the laptop to sleep for a couple of days, to check if the problem is actually sleep-related. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 22:25:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 23:25:03 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050916222503.1341722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From c.elkjaer at gmail.com 2005-09-16 23:25 UTC ------- New acpi-support 0.33 and 1 x reboot hdparm tells me: Advanced power management level: 128 (0x80) If you want to disable it you will need to explicitly give it a value of 255. Otherwise it seems that 128 is the default value. By the way, I checked the /etc/default/hdparm script and it had no setup. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 22:33:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 23:33:47 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050916223347.1A67922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-16 23:33 UTC ------- I'm used to being a guinea pig, so if there's anything I can look at before you load upstream, feel free to send it my way or tell me where I can get it. Thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 22:39:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 16 Sep 2005 23:39:17 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050916223917.8232D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-16 23:39 UTC ------- (In reply to comment #21) > Daniel, > > what do you want to figure out about the lspci output? I needed the subvendor:subdevice identifiers and have confirmed that your specific combination is not supported currently in ALSA. I'll push the report upstream. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 23:05:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 00:05:21 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050916230521.E9C3922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From c.elkjaer at gmail.com 2005-09-17 00:05 UTC ------- ... and half an hour later when the laptop had been idle for some time it froze (HDD LED lit) :-( -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 16 23:34:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 00:34:45 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050916233445.1635522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From sb73542 at safe-mail.net 2005-09-17 00:34 UTC ------- This does not seem like a viable solution. On this computer I use Windows and several other Linux distros that work well with my current BIOS settings, including sound support. It seems like a deeper issue with Ubuntu's kernel and alsa-base scripts configuration. I know a very little bit about the internals of ALSA and Debian, so I don't mind sifting through available system resources and manually modprobing things. But the average user should not be asked to adjust his BIOS when not necessary, and ideally his hardware should be detected and configured. MEPIS somehow does this with most ISAPnP cards. If autodetection scripts don't work, alsaconf should be available as a second chance. In past versions of Ubuntu, I have found that the "alsa-base" files (of which there are 3 or 4) need to be heavily edited in order for the modprobe to work. In addition, it is necessary to figure out the correct values for the modprobe parameters. In these areas I am totally lost. Could we please try to approach this bug from that angle? Thanks very much. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 00:15:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 01:15:21 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050917001521.06C8B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-17 01:15 UTC ------- (In reply to comment #6) > This does not seem like a viable solution. On this computer I use Windows and > several other Linux distros that work well with my current BIOS settings, > including sound support. It seems like a deeper issue with Ubuntu's kernel and > alsa-base scripts configuration. It is not possible to account for every combination of hardware. We're certainly open to ideas for tackling problematic hardware, however. First, however, we need to know whether disabling PnP OS in BIOS _and_ passing isapnp=0 to modprobe resolves your issue. > I know a very little bit about the internals > of ALSA and Debian, so I don't mind sifting through available system resources > and manually modprobing things. But the average user should not be asked to > adjust his BIOS when not necessary, and ideally his hardware should be detected > and configured. MEPIS somehow does this with most ISAPnP cards. If > autodetection scripts don't work, alsaconf should be available as a second chance. The changelog for alsa-utils lists the rationale for alsaconf's removal. > In past versions of Ubuntu, I have found that the "alsa-base" files (of which > there are 3 or 4) need to be heavily edited in order for the modprobe to work. You should modify only one file, /etc/modprobe.d/alsa-base. > In addition, it is necessary to figure out the correct values for the modprobe > parameters. In these areas I am totally lost. Could we please try to approach > this bug from that angle? Thanks very much. Certainly this is an issue (a metaissue, if you will) that reaches beyond just Ubuntu to the kernel and userspace utilities. The most straight-forward solution may be to fix the bugs in alsaconf that caused its removal from the alsa-utils package. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 00:18:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 01:18:47 +0100 (BST) Subject: [Bug 15556] Hibernate causes a kernel oops on a hyperthreaded P4 laptop using SMP kernel In-Reply-To: Message-ID: <20050917001847.A28AA303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15556 Ubuntu (laptop) | linux ------- Additional Comments From ankur.kotwal at gmail.com 2005-09-17 01:18 UTC ------- I tested it on the latest kernel (linux-image-2.6.12-8-686-smp 2.6.12-8.13). Before I was getting two oopses - one after the "Freezing CPUs" statement and one after the ACPI statements. With this new kernel, I'm only getting one oops but the hibernate is still failing. I've typed out and attached the oops output below. Freezing memory... done(50925 pages freed) Freezing CPUs (at 0)...Sleeping in: [] smp_pause+0x21/0x49 [] wait_task_zombie+0x121/0x441 [] smp_call_function_interrupt+0x01c/0x24 [] call_function_interrupt+0x01c/0x24 [] acpi_processor_idle+0x103/0x29a [processor] [] cpu_idle+0x5d/0x6b ok IDE device ACPI handler is NULL IDE device ACPI handler is NULL ACPI: PCI interrupt for device 0000:02:04.0 disabled ACPI: PCI interrupt for device 0000:00:1f.5 disabled The laptop has a Broadcom wireless card and hence requires ndiswrapper. I thought that it might be ndiswrapper causing the hang so I did a "modprobe -r ndiswrapper" and double checked that the module was no longer loaded. The laptop still hung on hibernate however. I am using the "nv" driver for xorg. Listed below is my lspci output: ankur@/home/ankur) lspci 0000:00:00.0 Host bridge: Intel Corp. 82852/855GM Host Bridge (rev 02) 0000:00:00.1 System peripheral: Intel Corp. 855GM/GME GMCH Memory I/O Control Registers (rev 02) 0000:00:00.3 System peripheral: Intel Corp. 855GM/GME GMCH Configuration Process Registers (rev 02) 0000:00:01.0 PCI bridge: Intel Corp. 855GME GMCH Host-to-AGP Bridge (Virtual PCI-to-PCI) (rev 02) 0000:00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 01) 0000:00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 01) 0000:00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 01) 0000:00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB 2.0 EHCI Controller (rev 01) 0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev 81) 0000:00:1f.0 ISA bridge: Intel Corp. 82801DBM LPC Interface Controller (rev 01) 0000:00:1f.1 IDE interface: Intel Corp. 82801DBM (ICH4) Ultra ATA Storage Controller (rev 01) 0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 01) 0000:00:1f.6 Modem: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Modem Controller (rev 01) 0000:01:00.0 VGA compatible controller: nVidia Corporation NV34M [GeForce FX Go 5200] (rev a1) 0000:02:01.0 Ethernet controller: Broadcom Corporation BCM4401 100Base-T (rev 01) 0000:02:02.0 Network controller: Broadcom Corporation BCM4306 802.11b/g Wireless LAN Controller (rev 02) 0000:02:04.0 CardBus bridge: Texas Instruments PCI4510 PC card Cardbus Controller (rev 02) 0000:02:04.1 FireWire (IEEE 1394): Texas Instruments PCI4510 IEEE-1394 Controller ankur@/home/ankur) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 00:25:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 01:25:33 +0100 (BST) Subject: [Bug 15556] Hibernate causes a kernel oops on a hyperthreaded P4 laptop using SMP kernel In-Reply-To: Message-ID: <20050917002533.22D9422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15556 Ubuntu (laptop) | linux ------- Additional Comments From ankur.kotwal at gmail.com 2005-09-17 01:25 UTC ------- I should also add that Suspend does not work with the smp kernel either. When I hit suspend, I get a blank screen momentarily and then I'm back at my desktop. Should I log this as a separate bug? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 00:26:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 01:26:48 +0100 (BST) Subject: [Bug 15556] Hibernate causes a kernel oops on a hyperthreaded P4 laptop using SMP kernel In-Reply-To: Message-ID: <20050917002648.B089822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15556 Ubuntu (laptop) | linux ------- Additional Comments From ankur.kotwal at gmail.com 2005-09-17 01:26 UTC ------- One more thing, suspend works fine on a non-smp kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 00:35:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 01:35:38 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050917003538.A359422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-17 01:35 UTC ------- Christian, What hardware are you using? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 01:51:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 02:51:38 +0100 (BST) Subject: [Bug 15626] New: GDM Unable to Start due to nVidia-glx problem Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15626 Ubuntu | linux-restricted-modules Summary: GDM Unable to Start due to nVidia-glx problem Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: gtaylor at clemson.edu QAContact: kernel-bugs at lists.ubuntu.com This keeps going in and out of working shape but I'm running the latest linux-686 kernel with nvidia-glx and the restricted modules. The boot splash works for a while then it drops back into the prompt, eventually switching to one of those blue screens saying that GDM was unable to start. I can't navigate the dialog and there are a bunch of funky characters randomly spread around the menu. If I bang on the keyboard for a while, it hits ok and I'm dropped back to a prompt. Switching to another terminal, I checked dmesg (had nothing I could find out of place) and copied my Xorg.0.log (see attached). Restarting with the linux-386 kernel, I was able to boot into gdm just fine. Sometimes the 686 kernel works when there are updates to it, and it appears they go and break it periodically too. Is there something going on here? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 01:52:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 02:52:01 +0100 (BST) Subject: [Bug 15626] GDM Unable to Start due to nVidia-glx problem In-Reply-To: Message-ID: <20050917015201.B608722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15626 Ubuntu | linux-restricted-modules ------- Additional Comments From gtaylor at clemson.edu 2005-09-17 02:52 UTC ------- Created an attachment (id=3853) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3853&action=view) Xorg Log -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 02:42:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 03:42:51 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050917024251.C53FC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From sb73542 at safe-mail.net 2005-09-17 03:42 UTC ------- Sure enough, disabling PnP OS in the BIOS works. Now my modem won't work because it wants irq 11.... How can we apply this now to making sound work with PnP enabled? Thanks for your continued help. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 02:45:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 03:45:35 +0100 (BST) Subject: [Bug 15592] ath_rate_onoe kernel version mismatch. In-Reply-To: Message-ID: <20050917024535.487E222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15592 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|fabbione at ubuntu.com |mdz at ubuntu.com Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From mdz at ubuntu.com 2005-09-17 03:45 UTC ------- linux-restricted-modules-2.6.12 (2.6.12.4-1) breezy; urgency=low * New tarball to remove madwifi cruft (Ubuntu Bugzilla #15592) * Do the *_minor dance -- Matt Zimmerman Fri, 16 Sep 2005 15:46:03 -0700 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 07:32:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 08:32:54 +0100 (BST) Subject: [Bug 14548] pcmcia detection locks up my laptop In-Reply-To: Message-ID: <20050917073254.EDD0B22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14548 Ubuntu (laptop) | linux ------- Additional Comments From bitrain at gmail.com 2005-09-17 08:32 UTC ------- (In reply to comment #1) > Have you tried the Breezy preview release and does this still happen to you? No, not yet. I will download it when I'm at school again on monday. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 07:57:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 08:57:14 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050917075714.B96BF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux nathan at atdot.ca changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nathan at atdot.ca ------- Additional Comments From nathan at atdot.ca 2005-09-17 08:57 UTC ------- Disk I/O will reliably make menu entries disappear for me, but not folders in nautilus (that only seems to happen after having the window open for at least an hour). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 08:24:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 09:24:28 +0100 (BST) Subject: [Bug 15156] Skystar2 not working on breezy/2.6.12-* In-Reply-To: Message-ID: <20050917082428.CB32C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15156 Ubuntu | linux sepreh at gmx.de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTABUG ------- Additional Comments From sepreh at gmx.de 2005-09-17 09:24 UTC ------- You can close this bug. Seems like it has been a hardware problem. Another card plugged into the machine didn't show the behaviour. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 09:25:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 10:25:56 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050917092556.9C95522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From c.elkjaer at gmail.com 2005-09-17 10:25 UTC ------- (In reply to comment #71) > What hardware are you using? IBM Thinkpad T41 w/ ipw2100, radeon 7500 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 10:22:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 11:22:38 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050917102238.5B59B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From cyrille.lebeaupin at gmail.com 2005-09-17 11:22 UTC ------- Created an attachment (id=3858) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3858&action=view) This file contains lspci and dmesg output on 2.6.12-8 and 2.6.10-5 kernel -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 11:26:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 12:26:57 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050917112657.0A47622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From brandon at smarterits.com 2005-09-17 12:26 UTC ------- I havent managed to hit a hang yet with 0.33, fwiw. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 11:50:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 12:50:49 +0100 (BST) Subject: [Bug 15362] Harddisk LED always on, harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050917115049.211CC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-17 12:50 UTC ------- (In reply to comment #3) > Please attach lspci output as well. > The disk is working fine otherwise, right? Matt, although the harddisk is working fine I'm not sure if the behavior could be damaging the hardware. As I know the harddisk LED is hardware controlled, the harddisk may be in writing state all the time Hoary is running ... Is there a way to identify the issue? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 12:04:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 13:04:37 +0100 (BST) Subject: [Bug 7121] cpu frequency falling to its lower value causes system to pause In-Reply-To: Message-ID: <20050917120437.9C9E022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7121 Ubuntu (laptop) | linux ubuntu at paul.sladen.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ubuntu at paul.sladen.org -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 12:09:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 13:09:40 +0100 (BST) Subject: [Bug 10116] powernowd causes mouse to become erratic on high I/O load In-Reply-To: Message-ID: <20050917120940.1A69C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10116 Ubuntu | linux ubuntu at paul.sladen.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ubuntu at paul.sladen.org ------- Additional Comments From ubuntu at paul.sladen.org 2005-09-17 13:09 UTC ------- Hello all, If this is related to weird mouse movement, could each of you try temporarily booting with: i8042.nomux=1 on the kernel command line. Not sure whether this will help, but it is the solution on a machine with vaguely similar problems. Thanks, Paul -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 13:42:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 14:42:06 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050917134206.7F59122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-17 14:42 UTC ------- Today I've installed Realtek's ALC880 driver [1], it's named realtek-linux-audiopack-3.4-0.tar.bz2 and it's based on alsa-driver-1.0.9b_10.tar.bz2 - this is what I've done: cd alsa-driver-1.0.9b_10 ./configure make make install ./snddevices modprobe snd_hda_intel cat /proc/asound/version Advanced Linux Sound Architecture Driver Version 1.0.9b. Compiled on Sep 17 2005 for kernel 2.6.12-8-686. amixer sset Master on amixer: Unable to find simple control 'Master',0 amixer Simple mixer control 'Headphone',0 Capabilities: pswitch Playback channels: Front Left - Front Right Front Left: Playback [on] Front Right: Playback [on] Simple mixer control 'Front',0 Capabilities: pvolume pswitch Playback channels: Front Left - Front Right Limits: Playback 0 - 64 Front Left: Playback 37 [58%] [on] Front Right: Playback 37 [58%] [on] ... more lines ... Now I can start playing audio files, but the quality is very bad (much crackle). [1] http://www.realtek.com.tw/downloads/dlhd-2.aspx?lineid=2004052&famid=2004052&series=2004061&Software=True -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 13:45:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 14:45:56 +0100 (BST) Subject: [Bug 11631] sporadic PS2 mouse jumps In-Reply-To: Message-ID: <20050917134556.926AE22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11631 Ubuntu | linux seb128 at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|seb128 at ubuntu.com |ben.collins at ubuntu.com QAContact|desktop- |kernel-bugs at lists.ubuntu.com |bugs at lists.ubuntu.com | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 14:00:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 15:00:01 +0100 (BST) Subject: [Bug 15661] New: Breezy linux-image does not support cryptoroot Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15661 Ubuntu | linux Summary: Breezy linux-image does not support cryptoroot Product: Ubuntu Version: unspecified Platform: All OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: hile at nixu.com QAContact: kernel-bugs at lists.ubuntu.com Because breezy kernels use by default mkinitramfs, there is no support for encrypted root filesystems. As interim solution, until such support exists, kernel package postinst should check if /etc/crypttab and /etc/fstab contain encrypted root: # grep root /etc/crypttab rootfs /dev/hda5 # grep rootfs /etc/fstab /dev/mapper/rootfs / xfs defaults 0 1 ... and if encrypted root filesystem is detected, the kernel package postinst should use mkinitrd instead of mkinitramfs, something like $ramdisk = mkinitrd if detect_cryptoroot; -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 14:11:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 15:11:45 +0100 (BST) Subject: [Bug 12191] initrd breaks kernel packages with LVM error In-Reply-To: Message-ID: <20050917141145.58E7122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12191 Ubuntu | initrd-tools andrelmoraes at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |andrelmoraes at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 15:04:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 16:04:20 +0100 (BST) Subject: [Bug 15068] CardBus not functional, no IRQ, ENE CB1410 CardBus In-Reply-To: Message-ID: <20050917150420.D848322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15068 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk ------- Additional Comments From mjg59 at codon.org.uk 2005-09-17 16:04 UTC ------- If you can find the patch that fixes this, then we may be able to include it. I don't have any of this hardware to test myself, so I'm afraid I can't sort this. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 16:55:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 17:55:44 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050917165544.3A43E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux ------- Additional Comments From kleeman at cims.nyu.edu 2005-09-17 17:55 UTC ------- sky2 support for Yukon 2 in Breezy appears buggy see bug # 6142 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 17:26:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 18:26:39 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050917172639.2655722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules ------- Additional Comments From alexanderjurjens at lycos.nl 2005-09-17 18:26 UTC ------- (In reply to comment #7) > Is this problem still reproducible in breezy? Yes, this bug is still reproducible in Breezy Preview, even if I add 'nvidia' to /etc/hotplug/blacklist. I have a question: Is there a way to install nVIDIA drivers via a LiveCD? I've a Morphix LiveCD and it came with nVIDIA drivers. By the way, the Morphix LiveCD is (!) 2 years old and it boots perfectly. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 17:54:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 18:54:32 +0100 (BST) Subject: [Bug 15678] New: DriveReady SeekComplete Error after recent upgrade Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux Summary: DriveReady SeekComplete Error after recent upgrade Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: hez at truegeek.net QAContact: kernel-bugs at lists.ubuntu.com Sometime in the last week or so I have started getting DriveReady SeekComplete Error messages in dmesg output on Breezy. This started after a recent upgrade. The errors don't seem to be present in a Hoary install on the same machine, and they weren't there when I first installed the Breezy preview. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 18:41:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 19:41:05 +0100 (BST) Subject: [Bug 15645] Acer Travelmate 430 doesn't reboot In-Reply-To: Message-ID: <20050917184105.61E8C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15645 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux Keywords| |laptop QAContact| |kernel-bugs at lists.ubuntu.com Summary|Problem restarting PC |Acer Travelmate 430 doesn't | |reboot -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 20:49:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 21:49:22 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050917204922.C66ED22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux mika.fischer at gmx.de changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P2 |P1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 20:49:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 21:49:54 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050917204954.24E7022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux mika.fischer at gmx.de changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P1 |P2 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 21:05:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 22:05:08 +0100 (BST) Subject: [Bug 14172] Networking on eth1 doesn't work in breezy when ACPI enabled (thinkpad r32) In-Reply-To: Message-ID: <20050917210508.84BF722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14172 Ubuntu | linux wrlach at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |WORKSFORME ------- Additional Comments From wrlach at gmail.com 2005-09-17 22:05 UTC ------- Sigh, can't seem to reproduce this anymore (the scary thing is that I haven't changed anything since I filed the bug, which indicates to me that the problem is intermittent). I'll reopen this bug if I see this behaviour again. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 22:55:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 23:55:01 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050917225501.9EBC322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From john.godzero at gmail.com 2005-09-17 23:55 UTC ------- I just downloaded & installed ubuntu build 17 september 05 and I've like to report: IT WORKS FOR ME! (tm) Good work guys! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 17 22:57:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 17 Sep 2005 23:57:21 +0100 (BST) Subject: [Bug 14800] No audio in gnome / colony 4 In-Reply-To: Message-ID: <20050917225721.E3C6922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14800 Ubuntu | linux ------- Additional Comments From john.godzero at gmail.com 2005-09-17 23:57 UTC ------- This also now (as of build 17 septmber 05) seems to work fine. Been busy huh? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 02:51:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 03:51:58 +0100 (BST) Subject: [Bug 15698] New: Atheros card not working during install on IBM thinkpad T43 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15698 Ubuntu | linux-restricted-modules Summary: Atheros card not working during install on IBM thinkpad T43 Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: blixtra at gmail.com QAContact: kernel-bugs at lists.ubuntu.com I've got a thinkpad T43 with a built-in atheros card. The Breezy install never loads the ath_pci driver and I'm therefore without a connection during install. After install, however, I'm able to use the Gnome Networking tool to set it up with out installing anything extra. Seems like if it's on the CD it should be available at install time, too. The T43 usually comes with a Centrino chip. Chris -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 08:40:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 09:40:50 +0100 (BST) Subject: [Bug 15707] New: Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | kernel-package Summary: Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: jcohen07 at brandeis.edu QAContact: kernel-bugs at lists.ubuntu.com After upgrading from Hoary to Breezy with a dist-upgrade in Synpatic, I get a kernel Panic when using either the 386 or K7 2.6.12 kernel image. The kernel panic reads "init64: Syntax error: 0x [4294677.238000] Kernel panic- not syncing- Attempting to kill init!" 2.6.10 continues to work without issue. System Information: CPU: AMD 64 3000+ Motherboard: ECS K8M800-M2 Motherboard RAM: 512 MB Corsair PC3200 DDR -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 08:42:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 09:42:48 +0100 (BST) Subject: [Bug 15707] Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU In-Reply-To: Message-ID: <20050918084248.1A5BC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | kernel-package jcohen07 at brandeis.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 09:09:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 10:09:42 +0100 (BST) Subject: [Bug 15707] Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU (2.6.12-8.13) In-Reply-To: Message-ID: <20050918090942.90C9B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | linux crimsun at fungus.sh.nu changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux Summary|Kernel Panic with 386 or K7 |Kernel Panic with 386 or K7 |kernel image on an AMD 64 |kernel image on an AMD 64 |CPU |CPU (2.6.12-8.13) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 11:08:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 12:08:36 +0100 (BST) Subject: [Bug 11304] System clock runs far too fast In-Reply-To: Message-ID: <20050918110836.2204422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11304 Ubuntu | linux ------- Additional Comments From disciple3d at fastmail.fm 2005-09-18 12:08 UTC ------- I have similar problem on an Acer Aspire 5021 laptop. In my case, the clock is more than twice the speed, and it now thinks it's Friday :) This is worsened because the ntpd is unable to sync the clock properly as well. I managed to fix both problems by using the noapictimer kernel parameter. This occurs for me both in Hoary and Breezy preview release though, using Kernels 2.6.10-5, 2.6.11 and 2.6.12-8 - whatever is causing it, it seems to be hanging on in there.. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 14:39:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 15:39:11 +0100 (BST) Subject: [Bug 15732] New: X-server fails to start after upgrade from hoary to breezy Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15732 Ubuntu | linux Summary: X-server fails to start after upgrade from hoary to breezy Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: richard.traindl at gmx.at QAContact: kernel-bugs at lists.ubuntu.com X-server fails to start after upgrade from hoary to breezy using kernel 2.6.12-8. Using kernel 2.6.10-5 the xserver starts and works fine. Probably there is a problem with the kernel because my microsoft mouse is initialised while booting kernel 2.6.12-5 and not by start of the hotplug services. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 16:05:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 17:05:20 +0100 (BST) Subject: [Bug 14800] No audio in gnome / colony 4 In-Reply-To: Message-ID: <20050918160520.B95B622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14800 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-18 17:05 UTC ------- Thanks for the report. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 16:06:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 17:06:18 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050918160618.50E7822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-18 17:06 UTC ------- Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 16:07:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 17:07:46 +0100 (BST) Subject: [Bug 15707] Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU (2.6.12-8.13) In-Reply-To: Message-ID: <20050918160746.B670422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | linux ------- Additional Comments From Thomas.Markus at phil.uu.nl 2005-09-18 17:07 UTC ------- I am having the same issue having installed all the updates to this moment. The "init64:" part of the previous post should read: "/init: 64" And above this error additional information is printed: "Valid format sequences for file systems: %a free blocks available to non-superuser %b ... %c ... . . ." -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 16:08:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 17:08:38 +0100 (BST) Subject: [Bug 15678] DriveReady SeekComplete Error after recent upgrade In-Reply-To: Message-ID: <20050918160838.B01A822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-18 17:08 UTC ------- Have you tried reverting to hoary for an extended period? Usually this type of error is indicative of a harddrive failure. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 16:13:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 17:13:25 +0100 (BST) Subject: [Bug 15732] X-server fails to start after upgrade from hoary to breezy In-Reply-To: Message-ID: <20050918161325.2AB3B22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15732 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-18 17:13 UTC ------- Can you send the dmesg output from both hoary and breezy kernels, and also /var/log/Xorg.0.log from the failed X startup? Have you tried loading the mouse kernel module manually? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 16:15:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 17:15:27 +0100 (BST) Subject: [Bug 15707] Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU (2.6.12-8.13) In-Reply-To: Message-ID: <20050918161527.D677E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | linux ------- Additional Comments From Thomas.Markus at phil.uu.nl 2005-09-18 17:15 UTC ------- The error message mentioned above the init error seems to be generated by the "stat" command which is in coreutils. It seems the wrong arguments are passed the this command. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 16:59:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 17:59:55 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050918165955.72B7422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From ubugs.20.kohler at xoxy.net 2005-09-18 17:59 UTC ------- I upgraded to Breezy with acpi-support 0.33, and tried laptop-mode="on" again. I unplugged the power, walked away from the computer, and when I came back 15-30 minutes later, the laptop was hung with the hard drive light on. And my two days of experience with Breezy, it appears that. as in Hoary, disabling laptop-mode stops this hang from occuring. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 18:02:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 19:02:26 +0100 (BST) Subject: [Bug 11304] System clock runs far too fast In-Reply-To: Message-ID: <20050918180226.879CC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11304 Ubuntu | linux mgb-ubuntu at yosemite.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mgb-ubuntu at yosemite.net -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 18:08:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 19:08:38 +0100 (BST) Subject: [Bug 15745] New: can't resume from hibernation on Thinkpad X40 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15745 Ubuntu | linux Summary: can't resume from hibernation on Thinkpad X40 Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: petrosyan at gmail.com QAContact: kernel-bugs at lists.ubuntu.com I have a fully updated Ubuntu 5.10. It hibernates it powers off. But when I boot the computer again it start booting from the beginning instead of resuming. The swap partition is also disabled. This is a Thinkpad X40. What can I do to fix this? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 19:14:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 20:14:35 +0100 (BST) Subject: [Bug 13834] ndiswrapper.ko missing in linux-image-2.6.12-7-amd64-k8 In-Reply-To: Message-ID: <20050918191435.7324622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13834 Ubuntu | linux ------- Additional Comments From MarkMueller86 at compuserve.de 2005-09-18 20:14 UTC ------- Same with linux-image-2.6.12-8-amd64-k8: ndiswrapper.ko is not in the package. It builds fine from ndiswrapper-source 1.1-4ubuntu1 with this linux-image, too. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 21:26:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 22:26:17 +0100 (BST) Subject: [Bug 15749] New: linux-image-2.6.12-8-686-smp 2.6.12-8.13 fails to poweroff computer Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15749 Ubuntu | kernel-package Summary: linux-image-2.6.12-8-686-smp 2.6.12-8.13 fails to poweroff computer Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: stian_web at jordet.nu QAContact: kernel-bugs at lists.ubuntu.com Hi, I have a Asus CUV266-DLS motherboard, Dual P3 with Via Apollo Pro 266 chipset. It does not poweroff with 2.6.12-8. Works fine with 2.6.12-7, an it used to work with -8, but stopped a couple of revisions ago. I just get a panic (I'll attach a screenshot shortly). Is there a place to download old 2.6.12-8 kernels, so I can find when it stopped working? Best regards, Stian -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 21:46:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 22:46:28 +0100 (BST) Subject: [Bug 15678] DriveReady SeekComplete Error after recent upgrade In-Reply-To: Message-ID: <20050918214628.ABFB622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux ------- Additional Comments From hez at truegeek.net 2005-09-18 22:46 UTC ------- I switch back and forth between Breezy and Hoary pretty regularly, and have not seen the error anywhere in Hoary. It didn't show up in Breezy until immediately after one of the (somewhat) recent kernel updates. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 22:12:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 23:12:23 +0100 (BST) Subject: [Bug 15749] linux-image-2.6.12-8-686-smp 2.6.12-8.13 fails to poweroff computer In-Reply-To: Message-ID: <20050918221223.5A46D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15749 Ubuntu | kernel-package ------- Additional Comments From stian_web at jordet.nu 2005-09-18 23:12 UTC ------- Created an attachment (id=3878) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3878&action=view) picture of panic at poweroff time -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 22:22:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 23:22:11 +0100 (BST) Subject: [Bug 15678] DriveReady SeekComplete Error after recent upgrade In-Reply-To: Message-ID: <20050918222211.1BA0E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-18 23:22 UTC ------- Ok, send me the full dmesg out from breezy and hoary, and lspci -vv output. Question, does the message cause any problems? I mean, is there breakage, other than the occasional message from the kernel? Could just be that the breezy kernel is more verbose about a problem that hoary's kernel just ignores. It could be that your drive is failing, but breezy is noticing it better. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 22:24:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 23:24:00 +0100 (BST) Subject: [Bug 15707] Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU (2.6.12-8.13) In-Reply-To: Message-ID: <20050918222400.234A122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-18 23:24 UTC ------- The kernel should be able to handle bad data being passed from userspace. Maybe amd64's 32-bit->64-bit translation for the stat() syscall is broken. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 22:37:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 23:37:59 +0100 (BST) Subject: [Bug 13834] ndiswrapper.ko missing in linux-image-2.6.12-7-amd64-k8 In-Reply-To: Message-ID: <20050918223759.4BBAA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13834 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From zulcss at gmail.com 2005-09-18 23:37 UTC ------- Ive added support for amd64* arches for ndiswrapper. Expect it in the next upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 22:41:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 23:41:23 +0100 (BST) Subject: [Bug 15678] DriveReady SeekComplete Error after recent upgrade In-Reply-To: Message-ID: <20050918224123.4F2CE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux ------- Additional Comments From hez at truegeek.net 2005-09-18 23:41 UTC ------- It is quite possible that Breezy is picking up on something that Hoary did not. I haven't noticed any difference in performance or anything else under either Breezy or Hoary. Is there a more definite way to check if this is a hardware issue? My laptop is still under warranty, so if something needs to be replaced I'd rather find out sooner rather than later :-) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 22:43:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 23:43:35 +0100 (BST) Subject: [Bug 10051] Hyper Threading fails on Dimension 8300 In-Reply-To: Message-ID: <20050918224335.A7FCF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10051 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From zulcss at gmail.com 2005-09-18 23:43 UTC ------- Hyperthreading is disabled in the current kernel so this should be closed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 22:46:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 23:46:13 +0100 (BST) Subject: [Bug 13836] unionfs non-functional in 2.6.12-7.11 In-Reply-To: Message-ID: <20050918224613.1DDE222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13836 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From zulcss at gmail.com 2005-09-18 23:46 UTC ------- Unionfs has been removed according to the changelog. No need to keep this bug open -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 22:55:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 18 Sep 2005 23:55:35 +0100 (BST) Subject: [Bug 13288] Please provide debug kernel image In-Reply-To: Message-ID: <20050918225535.CDEAD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13288 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |WONTFIX ------- Additional Comments From zulcss at gmail.com 2005-09-18 23:55 UTC ------- We tried this doing the development phase for breezy unfortunately the kernels were too larged to be shipped. If you download the source, you can find kernel-configs with debugging turned on. chuck -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 23:20:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 00:20:48 +0100 (BST) Subject: [Bug 5370] snd_usb_audio edirol ua-5 unknow symbols modules In-Reply-To: Message-ID: <20050918232048.E88E322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5370 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From zulcss at gmail.com 2005-09-19 00:20 UTC ------- No response from user. closing. Probably fixed in breezy anyways -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 23:41:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 00:41:27 +0100 (BST) Subject: [Bug 10834] Little acpi event windows pop up in KDE In-Reply-To: Message-ID: <20050918234127.F129A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10834 Ubuntu (laptop) | linux ------- Additional Comments From ubuntu_bugs at bits-fritz.de 2005-09-19 00:41 UTC ------- I got the same problem in breezy. It's very anoying. I will add the requested info even if not reporter of the Bug. root at kassandra:~# tail -5 /var/log/syslog Sep 16 12:59:22 localhost kernel: [4305978.650000] Asus ACPI: Error reading LCD status Sep 16 12:59:22 localhost kernel: [4305978.650000] Asus ACPI: Error reading LCD status Sep 16 12:59:22 localhost kernel: [4305978.750000] Asus ACPI: Error reading brightness Sep 16 12:59:22 localhost kernel: [4305978.750000] Asus ACPI: Error reading brightness .. about 50 x per second in exactly that order.. dmesg is completely messed up and doesn't show anything more. what is what you need from make?? Laptop is a medion md9580-A aka Asus L8400C If you need more info let me know Friedrich -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 23:47:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 00:47:17 +0100 (BST) Subject: [Bug 8145] saa7134 module audio scan fails and uses the wrong(?) default In-Reply-To: Message-ID: <20050918234717.CFF3C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8145 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From zulcss at gmail.com 2005-09-19 00:47 UTC ------- Can you try with the latest kernel for breezy? Thanks chuck -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 23:56:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 00:56:12 +0100 (BST) Subject: [Bug 8152] Driver for "WLB2011PCM" wireless PCMCIA card? In-Reply-To: Message-ID: <20050918235612.CB70D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8152 Ubuntu | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From zulcss at gmail.com 2005-09-19 00:56 UTC ------- Unfortunately the drivers included in this bug report are for 2.4. And I dont see any drivers for 2.6. I will look at this again after breezy is released. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 18 23:58:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 00:58:15 +0100 (BST) Subject: [Bug 10834] Little acpi event windows pop up in KDE In-Reply-To: Message-ID: <20050918235815.0189E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10834 Ubuntu (laptop) | linux ------- Additional Comments From ubuntu_bugs at bits-fritz.de 2005-09-19 00:58 UTC ------- Created an attachment (id=3881) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3881&action=view) screenshot for "lcd" messagebox shows infobox "lcd" apearing casually and flash like -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 00:51:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 01:51:36 +0100 (BST) Subject: [Bug 10834] Little acpi event windows pop up in KDE In-Reply-To: Message-ID: <20050919005136.833D022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10834 Ubuntu (laptop) | linux zulcss at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From zulcss at gmail.com 2005-09-19 01:51 UTC ------- Please include the following info: dmesg,lscpi and dmidecode. Also include the model of your laptop. Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 05:19:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 06:19:01 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050919051901.3F79422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 05:34:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 06:34:39 +0100 (BST) Subject: [Bug 14840] No battery status on a certain acer laptop? In-Reply-To: Message-ID: <20050919053439.AB0E822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14840 Ubuntu (laptop) | linux smurfdrive at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From smurfdrive at gmail.com 2005-09-19 06:34 UTC ------- I to have no battery status using kernel 2.6.12-8-686. I have a travelmate 2310 with a Fresh install of Ubuntu Breezy with the updates from preview release on. I don't belive it is a "smart Battery" but I don't know how to tell. I will be glad to run any diagnostics u would like. Sorry that this report is poor but I have never written one before. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 05:47:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 06:47:31 +0100 (BST) Subject: [Bug 11798] Battery not found.... In-Reply-To: Message-ID: <20050919054731.0CD6422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11798 Ubuntu (laptop) | linux ------- Additional Comments From smurfdrive at gmail.com 2005-09-19 06:47 UTC ------- I too am getting the same errors running 2.6.12-8-686 on a acer travelmate2310. I have placed my dmesg at http://pastebin.com/367777 because I was not sure if you wanted the whole thing here. The install is less than 48 hour old with nothing changed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 07:05:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 08:05:55 +0100 (BST) Subject: [Bug 15707] Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU (2.6.12-8.13) In-Reply-To: Message-ID: <20050919070555.BD93222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | linux ------- Additional Comments From Thomas.Markus at phil.uu.nl 2005-09-19 08:05 UTC ------- (In reply to comment #3) > Maybe amd64's 32-bit->64-bit > translation for the stat() syscall is broken. Not very likely. I am having the same problem with the 686-smp kernel. On a dual-p3 --- 0000:00:00.0 Host bridge: Intel Corp. 82840 840 (Carmel) Chipset Host Bridge (Hub A) (rev 01) 0000:00:01.0 PCI bridge: Intel Corp. 82840 840 (Carmel) Chipset AGP Bridge (rev 01) 0000:00:1e.0 PCI bridge: Intel Corp. 82801AA PCI Bridge (rev 02) 0000:00:1f.0 ISA bridge: Intel Corp. 82801AA ISA Bridge (LPC) (rev 02) 0000:00:1f.1 IDE interface: Intel Corp. 82801AA IDE (rev 02) 0000:00:1f.2 USB Controller: Intel Corp. 82801AA USB (rev 02) 0000:00:1f.3 SMBus: Intel Corp. 82801AA SMBus (rev 02) 0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801AA AC'97 Audio (rev 02) 0000:01:00.0 VGA compatible controller: ATI Technologies Inc RV350 AP [Radeon 9600] 0000:01:00.1 Display controller: ATI Technologies Inc RV350 AP [Radeon 9600] (Secondary) 0000:02:02.0 Ethernet controller: Intel Corp. 82557/8/9 [Ethernet Pro 100] (rev 08) 0000:02:07.0 SCSI storage controller: Adaptec AIC-7892P U160/m (rev 02) 0000:02:09.0 Multimedia audio controller: Ensoniq ES1371 [AudioPCI-97] (rev 08) 0000:02:0a.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11) 0000:02:0a.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11) 0000:02:0b.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 50) 0000:02:0b.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 50) 0000:02:0b.2 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 51) --- -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 07:25:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 08:25:54 +0100 (BST) Subject: [Bug 15099] Breezy Preview - No laptop speaker output, headphone works In-Reply-To: Message-ID: <20050919072554.C914022F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15099 Ubuntu (laptop) | linux jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jdthood at yahoo.co.uk AssignedTo|jdthood at yahoo.co.uk |ben.collins at ubuntu.com Status|UNCONFIRMED |NEW Component|alsa-base |linux Ever Confirmed|0 |1 QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-19 08:25 UTC ------- In response to my question on the alsa-devel mailing list upstream provided the following information. Motherboards and sound cards that contain the same sound chips do not all have the same connections with the outside world. So, for some, setting EA to 1 enables sound; for others setting EA to 0 enables sound. The only way we can overcome this is on a case by case basis. We add code to the driver so that it recognises a particular motherboard and set EA correctly for that particular motherboard. So, the best way to fix this problem will be to open an ALSA bug report on https://bugtrack.alsa-project.org/alsa-bug/ or on the kernel bug tracker with full details of the motherboard and the sound chips involved, and it will eventually be fixed. The following information should be provided: * The default settings, when not working: + The output of "amixer" + the contents /proc/asound/card0/codec97#0/ac97#0-0 + the contents of /proc/asound/card0/codec97#0/ac97#0-0+regs * The settings when working correctly: + The output of "amixer" + the contents /proc/asound/card0/codec97#0/ac97#0-0 + the contents of /proc/asound/card0/codec97#0/ac97#0-0+regs * The output of "lspci -vvn" I encourage those working on the Ubuntu Linux kernel to collect the requested information and send it upstream. Since upstream agrees to fix this problem in the driver, it is best if /etc/init.d/alsa-utils does not set EA. (Currently /e/i/alsa-utils does not set EA, so no change is required.) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 11:53:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 12:53:01 +0100 (BST) Subject: [Bug 12310] crash after resume with USB mouse attached In-Reply-To: Message-ID: <20050919115301.9961722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12310 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-19 12:53 UTC ------- Martin: ping? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 11:55:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 12:55:06 +0100 (BST) Subject: [Bug 13506] SATA HDD not recognized during Breezy Colony 4 install In-Reply-To: Message-ID: <20050919115506.8287422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13506 Ubuntu (installer, laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-19 12:55 UTC ------- Has this been done? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 12:29:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 13:29:54 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050919122954.4A3DD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 12:40:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 13:40:39 +0100 (BST) Subject: [Bug 15791] New: linux-image-2.6.12-8-amd64-xeon hangs at hotplug start when booting Dell PowerEdge 2850 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15791 Ubuntu | linux Summary: linux-image-2.6.12-8-amd64-xeon hangs at hotplug start when booting Dell PowerEdge 2850 Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: zds at iki.fi QAContact: kernel-bugs at lists.ubuntu.com Package: linux-image-2.6.12-8-amd64-xeon Version: 2.6.12-8.13 Severity: important I have installed Ubuntu Breezy on Dell PowerEdge 2850. With linux-image-2.6.12-8-amd64-generic it boots fine, but when using linux-image-2.6.12-8-amd64-xeon, it hangs on boot when initializing hotplug. I traced it to /proc/bus/usb/devices. Just saying "cat" is enough to hang the process (in this case, cat) and it does not die even with kill -9. I then compiled kernel using -general as a base config and changed it to be compiled to Intel platform and enabled SMP and hyperthreading - works fine. Hardware I am using: -Dell PowerEdge 2850, no USB external devices -2 Intel Xeon 3.2G processors -hardware RAID with 2 Seagate 73G 10krpm disks -6Gb of memory -- System Information: Debian Release: testing/unstable APT prefers breezy-updates APT policy: (500, 'breezy-updates'), (500, 'breezy-security'), (500, 'breezy') Architecture: amd64 (x86_64) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12-8-zds-xeon-smp-20050919b Locale: LANG=fi_FI.UTF-8, LC_CTYPE=fi_FI.UTF-8 (charmap=UTF-8) Versions of packages linux-image-2.6.12-8-amd64-xeon depends on: ii coreutils [fileutils] 5.2.1-2ubuntu2 The GNU core utilities ii initramfs-tools 0.25 tools for generating an initramfs ii module-init-tools 3.2-pre7-0ubuntu3 tools for managing Linux kernel mo linux-image-2.6.12-8-amd64-xeon recommends no packages. -- no debconf information -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 12:49:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 13:49:36 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050919124936.BC86F22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD ------- Additional Comments From mjg59 at codon.org.uk 2005-09-19 13:49 UTC ------- Should be fixed in the next kernel upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 12:57:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 13:57:05 +0100 (BST) Subject: [Bug 14716] Trackstick failure - Dell Latitude D410 In-Reply-To: Message-ID: <20050919125705.39C9D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14716 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |PENDINGUPLOAD ------- Additional Comments From mjg59 at codon.org.uk 2005-09-19 13:57 UTC ------- Should be fixed in the next kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 12:58:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 13:58:09 +0100 (BST) Subject: [Bug 14737] Locked up on Lid Close/Open - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050919125809.11FFE22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14737 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From mjg59 at codon.org.uk 2005-09-19 13:58 UTC ------- Does the machine still ping? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 13:01:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 14:01:09 +0100 (BST) Subject: [Bug 4787] ISAPNP Crystal Sound card in IBM Thinkpad 380ED not detected In-Reply-To: Message-ID: <20050919130109.3979322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4787 Ubuntu | linux ------- Additional Comments From bigfatwombat at gmail.com 2005-09-19 14:01 UTC ------- I have a simular problem too, with my Dell Latitude laptop P2, 300MHZ and a Crystal 4237B soundcard. Can't get it to work! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 13:07:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 14:07:48 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050919130748.74AC222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From mota at april.org 2005-09-19 14:07 UTC ------- (In reply to comment #7) > Does "dmesg | grep -i IDE" show anything at all? # dmesg > materiel # grep -Fi ide materiel ide: Assuming 33 MHz system bus speed for PIO modes; override with idebus=xx -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 13:38:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 14:38:02 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919133802.B5C1822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux dooglus at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dooglus at gmail.com ------- Additional Comments From dooglus at gmail.com 2005-09-19 14:38 UTC ------- *** Bug 15763 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 13:49:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 14:49:16 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919134916.E4FF722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From thesaltydog at gmail.com 2005-09-19 14:49 UTC ------- In Bug 15763 I have posted a debugging session for gam_server and nautilus. Could it be a bug related to i-notify? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 13:52:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 14:52:24 +0100 (BST) Subject: [Bug 14737] Locked up on Lid Close/Open - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050919135224.69B8522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14737 Ubuntu | linux ------- Additional Comments From gtaylor at clemson.edu 2005-09-19 14:52 UTC ------- Unknown. The wired NIC doesn't work with Ubuntu and I don't have wireless here. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 13:54:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 14:54:54 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919135454.95AB822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From dooglus at gmail.com 2005-09-19 14:54 UTC ------- I have been seeing a very similar problem, only instead of menu entries or directories disappearing, I see text file icons disappearing. See bug #15763. I used 'inotify_test' as mentioned in comment #14 to watch my text files. The one which vanished saw this output from inotify_test: chris at chrislap:~/Desktop$ inotify_test C.txt inotify device fd = 3 C.txt WD=1 read = 48 sizeof inotify_event = 16 pevent->len = 0 pevent->len = 0 pevent->len = 0 EVENT ON WD=1 OPEN (file) 0x00000020 EVENT ON WD=1 ACCESS (file) 0x00000001 EVENT ON WD=1 CLOSE (file) 0x00000010 (note: this OPEN, ACCESS, CLOSE is because I ran "cat C.txt" to check that inotify_test was working) read = 32 sizeof inotify_event = 16 pevent->len = 0 pevent->len = 0 EVENT ON WD=1 DELETE_SELF (file) 0x00000400 EVENT ON WD=1 IGNORED (file) 0x00008000 The file didn't really get deleted. It's still there on disk, but it's no longer showing in nautilus. F5 will bring it back. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 13:56:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 14:56:20 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919135620.8F47022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux desrt at desrt.ca changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From desrt at desrt.ca 2005-09-19 14:56 UTC ------- I talked to John about this. He's reasonably confident that the kernel itself is generating spurious delete events and is going to look into it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:15:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:15:41 +0100 (BST) Subject: [Bug 15796] New: Wireless on Toshiba Tecra A4 Crashy Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15796 Ubuntu | linux Summary: Wireless on Toshiba Tecra A4 Crashy Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: gtaylor at clemson.edu QAContact: kernel-bugs at lists.ubuntu.com The wireless card on the Toshiba Tecra A4 keeps restarting due to a firmware error, interrupting connectivity every few seconds. Here's the dmesg output, this is repeated many times for each crash: [4295464.152000] ipw2200: Firmware error detected. Restarting. lspci shows my card as: 0000:06:04.0 Network controller: Intel Corp. PRO/Wireless 2200BG (rev 05) lspci -n: 0000:06:04.0 0280: 8086:4220 (rev 05) Connectivity is automatically restored but is interrupted again shortly after due to the restarting. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:15:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:15:55 +0100 (BST) Subject: [Bug 15796] Wireless on Toshiba Tecra A4 Crashy In-Reply-To: Message-ID: <20050919141555.598CE22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15796 Ubuntu | linux gtaylor at clemson.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |critical -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:17:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:17:36 +0100 (BST) Subject: [Bug 15796] Wireless on Toshiba Tecra A4 Crashy In-Reply-To: Message-ID: <20050919141736.A46FD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15796 Ubuntu | linux ------- Additional Comments From gtaylor at clemson.edu 2005-09-19 15:17 UTC ------- I forgot to mention this but I set the severity to critical since the wired NIC does not work on the Toshiba Tecra A4 (along with several other similar machines). Wireless is the only way to install and reach the outside world. I had to add noacpi and pci=noacpi to the kernel boot options to get it to start/install, I don't know if this would affect wireless. If I remove these options, the wireless interface never pulls an IP. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:36:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:36:01 +0100 (BST) Subject: [Bug 15799] New: hard freeze with 2.6.12-8-686-smp 8.13 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15799 Ubuntu | linux Summary: hard freeze with 2.6.12-8-686-smp 8.13 Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: desrt at desrt.ca QAContact: kernel-bugs at lists.ubuntu.com After running 2.6.12-8.13 for a day and 9 hours 2.6.12-8.13 locked *solid* in the middle of using it: Prior to this my computer has been rock solid -- running for months at a time. I've yet to see a second crash but I suspect that the new kernel version is to blame and I want to write this down ASAP. Intel Pentium 4 3.0GHz (hyperthreading) Asus P4P800-SE Mainboard 2GB RAM 250GB Serial ATA Disk ATI Radeon 9600 w/ 256MB Onboard Yukon Gigabit Ethernet (sk98lin driver) Creative Audigy 2 I was just using my computer (reasonably heavily) flying between a number of open Firefox windows, music playing, etc.... just stuff I normally do. I wasn't using cpufreq and powernowd wasn't running. Some characteristics of the lockup: music stopped dead mouse stopped moving ctrl+alt+f1 to switch to console doesn't work ctrl+alt+backspace doesn't work machine doesn't respond to pings the last time I had a lockup like this was experimenting with CFQ in some ancient kernel version. Due to how badly the machine had crashed I am completely unable to obtain any sort of log but presumably the crash is related to a change between 8.12 and 8.13.... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:41:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:41:01 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919144101.9BE2222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux desrt at desrt.ca changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |http://bugzilla.kernel.org/s | |how_bug.cgi?id=5279 Status|NEW |UPSTREAM ------- Additional Comments From desrt at desrt.ca 2005-09-19 15:41 UTC ------- Sorry -- I should have specified. John is inotify John (John McCutchan). I've filed this report: http://bugzilla.kernel.org/show_bug.cgi?id=5279 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:45:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:45:15 +0100 (BST) Subject: [Bug 15801] New: new restricted modules package in breezy breaks madwifi Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15801 Ubuntu | linux-restricted-modules Summary: new restricted modules package in breezy breaks madwifi Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: pbeeson at cs.utexas.edu QAContact: kernel-bugs at lists.ubuntu.com On 9/19/05 installed linux-restricted-modules-2.6.12-8-686 2.6.12.4-3. madwifi doesn't work. dmesg (and modprobe when trying to load the module manually) says there are unresolved symbols. This was fine in the previous version for kernel 2.6.12. This also happens in the SMP version. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:46:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:46:26 +0100 (BST) Subject: [Bug 12310] crash after resume with USB mouse attached In-Reply-To: Message-ID: <20050919144626.19C8B22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12310 Ubuntu | linux ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-19 15:46 UTC ------- (In reply to comment #3) > Martin: ping? Oh, sorry, I completely ignored your question since ACPI is so non-powerpc-ish... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:50:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:50:46 +0100 (BST) Subject: [Bug 12310] crash after resume with USB mouse attached In-Reply-To: Message-ID: <20050919145046.5EA0222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12310 Ubuntu | linux martin.pitt at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-19 15:50 UTC ------- I just suspended and resumed with the USB mouse attached two times, it worked fine, so I'm closing this. (Of course I did not install any acpi stuff, these packages are !powerpc). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:52:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:52:21 +0100 (BST) Subject: [Bug 15796] Wireless on Toshiba Tecra A4 Crashy In-Reply-To: Message-ID: <20050919145221.0BE0122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15796 Ubuntu | linux ------- Additional Comments From gtaylor at clemson.edu 2005-09-19 15:52 UTC ------- Latest kernel seems to have resolved the intermittent connectivity problems, although the firmware error remains in the dmesg output. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:52:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:52:40 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050919145240.3563D22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From mota at april.org 2005-09-19 15:52 UTC ------- (In reply to comment #7) > Does "dmesg | grep -i IDE" show anything at all? # grep -i ata materiel Memory: 507776k available (1800k kernel code, 164k data, 184k init, Ok highmem) # cat /proc/ide/drivers ide-cdrom version 4.61 ide-disk version 1.18 # ls /proc/ide drivers # cat /proc/scsi/scsi Attached devices: # ls /proc/scsi device_info scsi # ls /sys/devices pci0000:f0 pci0001:00 [...] Any idea on what I could look for in /sys ? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 14:58:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 15:58:41 +0100 (BST) Subject: [Bug 14716] Trackstick failure - Dell Latitude D410 In-Reply-To: Message-ID: <20050919145841.32C6622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14716 Ubuntu | linux ------- Additional Comments From somez at t-online.hu 2005-09-19 15:58 UTC ------- (In reply to comment #2) > Should be fixed in the next kernel. Not sure, beacuse this bus very random, but I think the current (2005.09.19) 2.6.12-8-386 kernel contains this bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 15:04:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 16:04:16 +0100 (BST) Subject: [Bug 14458] more upstream inotify goodness In-Reply-To: Message-ID: <20050919150416.DD28322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14458 Ubuntu | linux ------- Additional Comments From desrt at desrt.ca 2005-09-19 16:04 UTC ------- Created an attachment (id=3892) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3892&action=view) ダウン・オン・ミー I attached the patch in a somewhat annoying way. Here's a cleaned up version as an actual patch that applies to the current linux-source package. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 15:10:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 16:10:58 +0100 (BST) Subject: [Bug 14716] Trackstick failure - Dell Latitude D410 In-Reply-To: Message-ID: <20050919151058.9A74922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14716 Ubuntu | linux ------- Additional Comments From somez at t-online.hu 2005-09-19 16:10 UTC ------- (In reply to comment #3) > (In reply to comment #2) > > Should be fixed in the next kernel. > > Not sure, beacuse this bus very random, but I think the current (2005.09.19) > 2.6.12-8-386 kernel contains this bug. Confirmed! The trackpoint is not working randomly after booting into Gnome. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 15:16:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 16:16:32 +0100 (BST) Subject: [Bug 14458] more upstream inotify goodness In-Reply-To: Message-ID: <20050919151632.46B6422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14458 Ubuntu | linux desrt at desrt.ca changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Priority|P2 |P1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 15:32:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 16:32:25 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050919153225.E788522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-19 16:32 UTC ------- hotplug can't load modules for ISA cards that are not PnP compliant, as the only way to load these modules is to blindly load them and see if they do anything. The regression is that the warty script simply didn't check whether there was PCMCIA support before loading the modules, and that the script from hoary onwards does. This is an Ubuntu change, from what I can tell. If Matthew is sure, perhaps the way to fix this is that if we _don't_ detect PCMCIA, and we are on a laptop, we try loading i82365 and see if support turns up then -- does that sound reasonable? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 15:40:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 16:40:20 +0100 (BST) Subject: [Bug 15809] New: Spca5xx not working Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | kernel-package Summary: Spca5xx not working Product: Ubuntu Version: unspecified Platform: All OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: eljefe123 at gmail.com QAContact: kernel-bugs at lists.ubuntu.com I had spca5xx working, but when i updated from (i think) 12 to 13. It stopped working. I cannot get any trace. There is nothing in dmesg neither there is in /var/log/syslog. Maybe i has to do with the external-drivers-usb-media_pwc: Updated USB PWC driver (10.0.8). I saw in the changelog. I hope you can fix... Mark -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 15:42:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 16:42:08 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050919154208.8D30522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From mota at april.org 2005-09-19 16:42 UTC ------- A few other things : # lsmod Module usbserial usbhid ohci1394 ieee1394 ehci_hcd ohci_hcd usbcore rivafb evdev unix # modprobe sata_svw FATAL: Module sata_svw not found # cd /lib/modules/2.6.10-5-power4/kernel/drivers/scsi/ # ls BusLogic.ko a100u2w.ko aic7xxx atp870u.ko dmx3191d.ko eata_pio.ko ipr.ko mac53c94.ko mesh.ko pcmcia qla1280.ko qlogicfas408.ko qlogicfc.ko qlogicisp.ko scsi_mod.ko scsi_transport_spi.ko sd_mod.ko sg.ko sr_mod.ko sym53c8xx_2 tmscssim.ko -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:01:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:01:36 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050919160136.E084922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-19 17:01 UTC ------- Changes: pcmcia-cs (3.2.5-11ubuntu6) breezy; urgency=low . * Always try to load modules if we're on a laptop, in case the laptop is old enough to have an ISA bridge that we can't hotplug. If module loading fails, we still exit 0 and assume there is no bus installed. (Ubuntu #8575). Files: f0d191c4d5630c98e7534da713a40ccd 621 base extra pcmcia-cs_3.2.5-11ubuntu6.dsc fe799c353f961923d944d39b03459b28 275821 base extra pcmcia-cs_3.2.5-11ubuntu6.diff.gz -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:22:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:22:03 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050919162203.E814A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-19 17:22 UTC ------- The kernel might be correctly detecting the joystick device, but it's not running /proc/sys/kernel/hotplug with all the variables it's supposed to: Both syslogs show the following error during plug-after-boot: Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 0 forked, pid 18491, 43576 seconds old Aug 31 20:41:01 localhost udev[18491]: udev.c: action, subsystem or devpath missing Aug 31 20:41:01 localhost udevd[2372]: udevd.c: seq 0 exit, 43576 seconds old The reason it works if it's plugged in during boot is that the hotplug scripts just fake events and don't receive them from the kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:45:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:45:00 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050919164500.71DF022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From mota at april.org 2005-09-19 17:45 UTC ------- (In reply to comment #4) > I think the sata_svw module, which is needed for the APPLE K2 SATA controler, is missing from the power4 kernel. I was told on IRC to use the live-powerpc64 kernel, which doesn't seem to exist on my 5.04 cd. I'll try with a newer iso next time. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:45:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:45:56 +0100 (BST) Subject: [Bug 15596] Dell Inspiron 8200 freezing every few seconds In-Reply-To: Message-ID: <20050919164556.A4FE422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15596 Ubuntu | linux ------- Additional Comments From bugzilla.ubuntu at tombeharrell.com 2005-09-19 17:45 UTC ------- Created an attachment (id=3894) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3894&action=view) Dmesg from kernel 2.6.11-1-686 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:46:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:46:16 +0100 (BST) Subject: [Bug 15596] Dell Inspiron 8200 freezing every few seconds In-Reply-To: Message-ID: <20050919164616.C73DF22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15596 Ubuntu | linux ------- Additional Comments From bugzilla.ubuntu at tombeharrell.com 2005-09-19 17:46 UTC ------- Created an attachment (id=3895) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3895&action=view) Dmesg from kernel 2.6.12-8-686 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:46:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:46:46 +0100 (BST) Subject: [Bug 15596] Dell Inspiron 8200 freezing every few seconds In-Reply-To: Message-ID: <20050919164646.B4C9E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15596 Ubuntu | linux ------- Additional Comments From bugzilla.ubuntu at tombeharrell.com 2005-09-19 17:46 UTC ------- Yes booting from old kernels 2.6.10-5-686 and 2.6.11-1-686 are both fine, when I go back to 2.6.12-8-686 the problems start again. I can find an error that is produced whenever the freeze happens - if I switch to a text console just before it freezes, the following is echod to the console: cpufreq: change failed with new_state 1 and result 0 Looking at my frequency monitor applet, I can see that the freeze co-incides with the CPU stepping down from 1.8 GHz to 1.2 GHz (the two speeds my machine operate at). I have attached dmesg outputs from old and new kernels as per your request. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:52:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:52:10 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050919165210.DC5DF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From callipeo at libero.it 2005-09-19 17:52 UTC ------- I did not put the laptop to sleep since my last comment, and it never froze. Could it be helpful if I would manage to get the SysRq Keys working? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:53:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:53:24 +0100 (BST) Subject: [Bug 14117] cpufreq: change failed In-Reply-To: Message-ID: <20050919165324.109BA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14117 Ubuntu (laptop) | linux ------- Additional Comments From bugzilla.ubuntu at tombeharrell.com 2005-09-19 17:53 UTC ------- I have the same problem on my Dell Inspiron 8200 with 2.6.12 kernels, though older ones are fine. It's when it steps down from 1.8 to 1.2 GHz, the machine freezes for a couple of seconds. I get the same cpufreq error message. It happens every few seconds at worst. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:53:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:53:48 +0100 (BST) Subject: [Bug 15707] Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU (2.6.12-8.13) In-Reply-To: Message-ID: <20050919165348.6E419303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | linux ------- Additional Comments From jcohen07 at brandeis.edu 2005-09-19 17:53 UTC ------- ----- udevinfo end ----- >> int.13: device names >> int.14: soft raid ----- soft raid devices ----- ----- soft raid devices end ----- ----- /proc/modules ----- udf 77060 1 - Live 0xe0c2f000 rfcomm 36252 0 - Live 0xe0c25000 l2cap 24324 5 rfcomm, Live 0xe0c1e000 bluetooth 46340 4 rfcomm,l2cap, Live 0xe0c11000 ipv6 229376 8 - Live 0xe0c45000 speedstep_lib 4228 0 - Live 0xe0bff000 proc_intf 4100 0 - Live 0xe0bfc000 freq_table 4100 0 - Live 0xe0bf9000 cpufreq_userspace 4572 0 - Live 0xe0bf6000 cpufreq_ondemand 6172 0 - Live 0xe0bf3000 cpufreq_powersave 1920 0 - Live 0xe0a3c000 video 16260 0 - Live 0xe0bee000 sony_acpi 6280 0 - Live 0xe0be4000 pcc_acpi 11264 0 - Live 0xe0bca000 button 6800 0 - Live 0xe0bdd000 battery 10244 0 - Live 0xe0b97000 container 4608 0 - Live 0xe0bbe000 ac 4996 0 - Live 0xe0bbb000 af_packet 20744 2 - Live 0xe0bc3000 tsdev 7488 0 - Live 0xe0b9b000 floppy 54864 0 - Live 0xe0bce000 pcspkr 3816 0 - Live 0xe0948000 rtc 12216 0 - Live 0xe0b93000 via_rhine 19972 0 - Live 0xe0bb5000 mii 4736 1 via_rhine, Live 0xe0b90000 snd_seq_oss 30080 0 - Live 0xe0bac000 snd_seq_midi 8224 0 - Live 0xe0ab9000 snd_seq_midi_event 7424 2 snd_seq_oss,snd_seq_midi, Live 0xe0ab6000 snd_seq 46992 5 snd_seq_oss,snd_seq_midi,snd_seq_midi_event, Live 0xe0b9f000 snd_via82xx 25248 1 - Live 0xe0b11000 snd_ac97_codec 64608 1 snd_via82xx, Live 0xe0adb000 snd_pcm_oss 47652 0 - Live 0xe0b04000 snd_mixer_oss 16768 1 snd_pcm_oss, Live 0xe0ad5000 snd_pcm 84872 3 snd_via82xx,snd_ac97_codec,snd_pcm_oss, Live 0xe0aee000 snd_timer 23300 2 snd_seq,snd_pcm, Live 0xe0abf000 snd_page_alloc 9604 2 snd_via82xx,snd_pcm, Live 0xe0a75000 gameport 4608 1 snd_via82xx, Live 0xe0a39000 snd_mpu401_uart 7168 1 snd_via82xx, Live 0xe0a36000 snd_rawmidi 22944 2 snd_seq_midi,snd_mpu401_uart, Live 0xe0a6e000 snd_seq_device 8332 4 snd_seq_oss,snd_seq_midi,snd_seq,snd_rawmidi, Live 0xe094f000 snd 50276 13 snd_seq_oss,snd_seq,snd_via82xx,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer,snd_mpu401_uart,snd_rawmidi,snd_seq_device, Live 0xe0ac7000 soundcore 9824 1 snd, Live 0xe094b000 i2c_viapro 7436 0 - Live 0xe0941000 i2c_core 21264 1 i2c_viapro, Live 0xe0a67000 usbhid 29376 0 - Live 0xe0a5e000 ehci_hcd 29444 0 - Live 0xe0a55000 usblp 12032 2 - Live 0xe08f0000 uhci_hcd 30224 0 - Live 0xe0a2d000 usbcore 107384 7 usbhid,ehci_hcd,usblp,uhci_hcd, Live 0xe0a9a000 sata_via 8196 0 - Live 0xe08f4000 libata 44548 1 sata_via, Live 0xe0a21000 scsi_mod 119936 1 libata, Live 0xe0a7b000 shpchp 86116 0 - Live 0xe0a3e000 pci_hotplug 30512 1 shpchp, Live 0xe09f6000 amd64_agp 10952 1 - Live 0xe08dd000 agpgart 31784 1 amd64_agp, Live 0xe09ed000 vfat 12928 0 - Live 0xe08eb000 fat 37792 1 vfat, Live 0xe0936000 nls_cp437 5888 1 - Live 0xe08da000 ntfs 97136 1 - Live 0xe0953000 dm_mod 53116 1 - Live 0xe0928000 evdev 9088 0 - Live 0xe0897000 capability 5000 0 - Live 0xe0894000 commoncap 7808 1 capability, Live 0xe086f000 psmouse 19336 0 - Live 0xe08c8000 mousedev 11160 1 - Live 0xe085e000 parport_pc 34372 1 - Live 0xe08e1000 lp 10792 0 - Live 0xe085a000 parport 33480 2 parport_pc,lp, Live 0xe08be000 ide_cd 38532 1 - Live 0xe08b0000 cdrom 36508 1 ide_cd, Live 0xe082d000 md 43856 0 - Live 0xe0863000 ext3 120968 2 - Live 0xe08f8000 jbd 54168 1 ext3, Live 0xe08a1000 ide_generic 1664 0 - Live 0xe08bc000 via82cxxx 12956 1 - Live 0xe08cf000 ide_disk 18176 4 - Live 0xe089b000 ide_core 118988 4 ide_cd,ide_generic,via82cxxx,ide_disk, Live 0xe0875000 unix 26164 787 - Live 0xe084d000 thermal 13576 0 - Live 0xe0848000 processor 22708 1 thermal, Live 0xe0841000 fan 4612 0 - Live 0xe0825000 fbcon 34048 0 - Live 0xe0837000 font 8448 1 fbcon, Live 0xe0829000 bitblit 5120 1 fbcon, Live 0xe0822000 vesafb 6948 0 - Live 0xe0802000 cfbcopyarea 3968 1 vesafb, Live 0xe081d000 cfbimgblt 3072 1 vesafb, Live 0xe081b000 cfbfillrect 3584 1 vesafb, Live 0xe0805000 ----- /proc/modules end ----- used irqs: 0,1,4,7,8,9,10,14,15,20,21,22,23 =========== end debug info ============ 01: None 00.0: 10105 BIOS [Created at bios.139] Unique ID: rdCR.lZF+r4EgHp4 Hardware Class: bios BIOS Keyboard LED Status: Scroll Lock: off Num Lock: off Caps Lock: off Config Status: cfg=new, avail=yes, need=no, active=unknown 02: None 00.0: 10107 System [Created at sys.50] Unique ID: rdCR.n_7QNeEnh23 Hardware Class: system Config Status: cfg=new, avail=yes, need=no, active=unknown 03: None 00.0: 10104 FPU [Created at misc.190] Unique ID: rdCR.EMpH5pjcahD Hardware Class: unknown Model: "FPU" I/O Ports: 0xf0-0xff (rw) Config Status: cfg=new, avail=yes, need=no, active=unknown 04: None 00.0: 0801 DMA controller (8237) [Created at misc.204] Unique ID: rdCR.f5u1ucRm+H9 Hardware Class: unknown Model: "DMA controller" I/O Ports: 0x00-0x1f (rw) I/O Ports: 0xc0-0xdf (rw) I/O Ports: 0x80-0x8f (rw) DMA: 4 Config Status: cfg=new, avail=yes, need=no, active=unknown 05: None 00.0: 0800 PIC (8259) [Created at misc.217] Unique ID: rdCR.8uRK7LxiIA2 Hardware Class: unknown Model: "PIC" I/O Ports: 0x20-0x21 (rw) I/O Ports: 0xa0-0xa1 (rw) Config Status: cfg=new, avail=yes, need=no, active=unknown 06: None 00.0: 0802 Timer (8254) [Created at misc.228] Unique ID: rdCR.AJKleuxpiP0 Hardware Class: unknown Model: "Timer" IRQ: 0 (192438 events) Config Status: cfg=new, avail=yes, need=no, active=unknown 07: None 00.0: 0803 RTC (Generic) [Created at misc.239] Unique ID: rdCR.hWmSPAStPX7 Hardware Class: unknown Model: "RTC" I/O Ports: 0x70-0x77 (rw) IRQ: 8 (1 event) Config Status: cfg=new, avail=yes, need=no, active=unknown 08: None 00.0: 0900 Keyboard controller [Created at misc.249] Unique ID: rdCR.9N+EecqykME Hardware Class: unknown Model: "Keyboard controller" I/O Ports: 0x60-0x6f (rw) Config Status: cfg=new, avail=yes, need=no, active=unknown 09: None 00.0: 0701 Parallel controller (SPP) [Created at misc.260] Unique ID: YMnp.ecK7NLYWZ5D Hardware Class: unknown Model: "Parallel controller" Device File: /dev/lp0 I/O Ports: 0x378-0x37a (rw) I/O Ports: 0x778-0x77a (rw) DMA: 3 IRQ: 7 (2 events) Config Status: cfg=new, avail=yes, need=no, active=unknown 10: None 00.0: 10103 CPU [Created at cpu.290] Unique ID: rdCR.j8NaKXDZtZ6 Hardware Class: cpu Arch: Intel Vendor: "AuthenticAMD" Model: 15.12.0 "AMD Athlon(tm) 64 Processor 3000+" Features: fpu,vme,de,pse,tsc,msr,pae,mce,cx8,apic,sep,mtrr,pge,mca,cmov,pat,pse36,clflush,mmx,fxsr,sse,sse2,pni,syscall,nx,mmxext,lm,3dnowext,3dnow Clock: 2000 MHz Cache: 512 kb Config Status: cfg=new, avail=yes, need=no, active=unknown 11: None 00.0: 10102 Main Memory [Created at memory.59] Unique ID: rdCR.CxwsZFjVASF Hardware Class: memory Model: "Main Memory" Memory Range: 0x00000000-0x1ffeffff (rw) Memory Size: 512 MB Config Status: cfg=new, avail=yes, need=no, active=unknown 12: PCI 00.0: 0600 Host bridge [Created at pci.244] Unique ID: qLht.exrUK5DEBVB SysFS ID: /devices/pci0000:00/0000:00:00.0 SysFS BusID: 0000:00:00.0 Hardware Class: bridge Model: "Elitegroup Host bridge" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x0204 SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Driver: "agpgart-amd64" Memory Range: 0xd0000000-0xd7ffffff (rw,prefetchable) Driver Info #0: Driver Status: amd64-agp is active Driver Activation Cmd: "modprobe amd64-agp" Config Status: cfg=new, avail=yes, need=no, active=unknown 13: PCI 00.1: 0600 Host bridge [Created at pci.244] Unique ID: hgAj.DfC1pEJK1w2 SysFS ID: /devices/pci0000:00/0000:00:00.1 SysFS BusID: 0000:00:00.1 Hardware Class: bridge Model: "VIA Host bridge" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x1204 Config Status: cfg=new, avail=yes, need=no, active=unknown 14: PCI 00.2: 0600 Host bridge [Created at pci.244] Unique ID: Z+fY.Tpo9tmKR7KE SysFS ID: /devices/pci0000:00/0000:00:00.2 SysFS BusID: 0000:00:00.2 Hardware Class: bridge Model: "VIA Host bridge" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x2204 Config Status: cfg=new, avail=yes, need=no, active=unknown 15: PCI 00.3: 0600 Host bridge [Created at pci.244] Unique ID: QK9O.jzOIxsuhFl6 SysFS ID: /devices/pci0000:00/0000:00:00.3 SysFS BusID: 0000:00:00.3 Hardware Class: bridge Model: "VIA Host bridge" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3204 Config Status: cfg=new, avail=yes, need=no, active=unknown 16: PCI 00.4: 0600 Host bridge [Created at pci.244] Unique ID: HfeD.z7+Q+OwoL92 SysFS ID: /devices/pci0000:00/0000:00:00.4 SysFS BusID: 0000:00:00.4 Hardware Class: bridge Model: "VIA Host bridge" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x4204 Config Status: cfg=new, avail=yes, need=no, active=unknown 17: PCI 00.7: 0600 Host bridge [Created at pci.244] Unique ID: ud6k.jcnqB74RiPE SysFS ID: /devices/pci0000:00/0000:00:00.7 SysFS BusID: 0000:00:00.7 Hardware Class: bridge Model: "VIA Host bridge" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x7204 Config Status: cfg=new, avail=yes, need=no, active=unknown 18: PCI 01.0: 0604 PCI bridge (Normal decode) [Created at pci.244] Unique ID: vSkL.CP+qXDDqow8 SysFS ID: /devices/pci0000:00/0000:00:01.0 SysFS BusID: 0000:00:01.0 Hardware Class: bridge Model: "VIA PCI bridge" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0xb188 Driver Info #0: Driver Status: shpchp is active Driver Activation Cmd: "modprobe shpchp" Driver Info #1: Driver Status: pciehp is not active Driver Activation Cmd: "modprobe pciehp" Config Status: cfg=new, avail=yes, need=no, active=unknown 19: PCI 0f.0: 0101 IDE interface [Created at pci.244] Unique ID: _+Pw.+HMSgt2CbX0 SysFS ID: /devices/pci0000:00/0000:00:0f.0 SysFS BusID: 0000:00:0f.0 Hardware Class: storage Model: "Elitegroup IDE interface" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3149 SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Revision: 0x80 Driver: "sata_via" I/O Ports: 0xb000-0xb007 (rw) I/O Ports: 0xb400-0xb403 (rw) I/O Ports: 0xb800-0xb807 (rw) I/O Ports: 0xbc00-0xbc03 (rw) I/O Ports: 0xc000-0xc00f (rw) I/O Ports: 0xc400-0xc4ff (rw) IRQ: 20 (no events) Driver Info #0: Driver Status: sata_via is active Driver Activation Cmd: "modprobe sata_via" Config Status: cfg=new, avail=yes, need=no, active=unknown 20: PCI 0f.1: 0101 IDE interface [Created at pci.244] Unique ID: rKvl.StFz1Cz4OY1 SysFS ID: /devices/pci0000:00/0000:00:0f.1 SysFS BusID: 0000:00:0f.1 Hardware Class: storage Model: "Elitegroup VT82C586A/B/VT82C686/A/B/VT8233/A/C/VT8235 PIPC Bus Master IDE" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x0571 "VT82C586A/B/VT82C686/A/B/VT8233/A/C/VT8235 PIPC Bus Master IDE" SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Revision: 0x06 Driver: "VIA_IDE" I/O Ports: 0xc800-0xc80f (rw) IRQ: 20 (no events) I/O Ports: 0x1f0-0x1f7 (rw) I/O Port: 0x3f6 (rw) I/O Ports: 0x170-0x177 (rw) I/O Port: 0x376 (rw) IRQ: 14 (13812 events) IRQ: 15 (503 events) Driver Info #0: Driver Status: via82cxxx is active Driver Activation Cmd: "modprobe via82cxxx" Config Status: cfg=new, avail=yes, need=no, active=unknown 21: PCI 10.0: 0c03 USB Controller (UHCI) [Created at pci.244] Unique ID: 37TO.4bJnq29V2pD SysFS ID: /devices/pci0000:00/0000:00:10.0 SysFS BusID: 0000:00:10.0 Hardware Class: usb controller Model: "Elitegroup USB" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3038 "USB" SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Revision: 0x81 Driver: "uhci_hcd" I/O Ports: 0xcc00-0xcc1f (rw) IRQ: 21 (20655 events) Driver Info #0: Driver Status: uhci-hcd is active Driver Activation Cmd: "modprobe uhci-hcd" Config Status: cfg=new, avail=yes, need=no, active=unknown 22: PCI 10.1: 0c03 USB Controller (UHCI) [Created at pci.244] Unique ID: wRyD.4bJnq29V2pD SysFS ID: /devices/pci0000:00/0000:00:10.1 SysFS BusID: 0000:00:10.1 Hardware Class: usb controller Model: "Elitegroup USB" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3038 "USB" SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Revision: 0x81 Driver: "uhci_hcd" I/O Ports: 0xd000-0xd01f (rw) IRQ: 21 (20655 events) Driver Info #0: Driver Status: uhci-hcd is active Driver Activation Cmd: "modprobe uhci-hcd" Config Status: cfg=new, avail=yes, need=no, active=unknown 23: PCI 10.2: 0c03 USB Controller (UHCI) [Created at pci.244] Unique ID: nmR3.4bJnq29V2pD SysFS ID: /devices/pci0000:00/0000:00:10.2 SysFS BusID: 0000:00:10.2 Hardware Class: usb controller Model: "Elitegroup USB" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3038 "USB" SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Revision: 0x81 Driver: "uhci_hcd" I/O Ports: 0xd400-0xd41f (rw) IRQ: 21 (20655 events) Driver Info #0: Driver Status: uhci-hcd is active Driver Activation Cmd: "modprobe uhci-hcd" Config Status: cfg=new, avail=yes, need=no, active=unknown 24: PCI 10.3: 0c03 USB Controller (UHCI) [Created at pci.244] Unique ID: f5xu.4bJnq29V2pD SysFS ID: /devices/pci0000:00/0000:00:10.3 SysFS BusID: 0000:00:10.3 Hardware Class: usb controller Model: "Elitegroup USB" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3038 "USB" SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Revision: 0x81 Driver: "uhci_hcd" I/O Ports: 0xd800-0xd81f (rw) IRQ: 21 (20655 events) Driver Info #0: Driver Status: uhci-hcd is active Driver Activation Cmd: "modprobe uhci-hcd" Config Status: cfg=new, avail=yes, need=no, active=unknown 25: PCI 10.4: 0c03 USB Controller (EHCI) [Created at pci.244] Unique ID: WQQk._XDhFR0dQKC SysFS ID: /devices/pci0000:00/0000:00:10.4 SysFS BusID: 0000:00:10.4 Hardware Class: usb controller Model: "Elitegroup USB 2.0" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3104 "USB 2.0" SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Revision: 0x86 Driver: "ehci_hcd" Memory Range: 0xe8100000-0xe81000ff (rw,non-prefetchable) IRQ: 21 (20655 events) Driver Info #0: Driver Status: ehci-hcd is active Driver Activation Cmd: "modprobe ehci-hcd" Config Status: cfg=new, avail=yes, need=no, active=unknown 26: PCI 11.0: 0601 ISA bridge [Created at pci.244] Unique ID: 7EWs.y77q5_LpgsA SysFS ID: /devices/pci0000:00/0000:00:11.0 SysFS BusID: 0000:00:11.0 Hardware Class: bridge Model: "Elitegroup ISA bridge" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3227 SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Driver: "vt596_smbus" Driver Info #0: Driver Status: i2c-viapro is active Driver Activation Cmd: "modprobe i2c-viapro" Config Status: cfg=new, avail=yes, need=no, active=unknown 27: PCI 11.5: 0401 Multimedia audio controller [Created at pci.244] Unique ID: Ssy1.wts_yw6gDKD SysFS ID: /devices/pci0000:00/0000:00:11.5 SysFS BusID: 0000:00:11.5 Hardware Class: sound Model: "Elitegroup VT8233/A/8235 AC97 Audio Controller" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3059 "VT8233/A/8235 AC97 Audio Controller" SubVendor: pci 0x1019 "Elitegroup Computer Systems" SubDevice: pci 0x1828 Revision: 0x60 Driver: "VIA 82xx Audio" I/O Ports: 0xdc00-0xdcff (rw) IRQ: 22 (2847 events) Driver Info #0: Driver Info: snd-via686,snd-via8233 Config Status: cfg=new, avail=yes, need=no, active=unknown 28: PCI 12.0: 0200 Ethernet controller [Created at pci.244] Unique ID: CLZK.SjU91yhPFlC SysFS ID: /devices/pci0000:00/0000:00:12.0 SysFS BusID: 0000:00:12.0 Hardware Class: network Model: "VIA VT6102 [Rhine II] Embeded Ethernet Controller on VT8235" Vendor: pci 0x1106 "VIA Technologies, Inc." Device: pci 0x3065 "VT6102 [Rhine-II]" SubVendor: pci 0x1106 "VIA Technologies, Inc." SubDevice: pci 0x0102 "VT6102 [Rhine II] Embeded Ethernet Controller on VT8235" Revision: 0x78 Driver: "via-rhine" I/O Ports: 0xe400-0xe4ff (rw) Memory Range: 0xe8101000-0xe81010ff (rw,non-prefetchable) IRQ: 23 (1653 events) HW Address: 00:11:5b:f4:1b:c0 Driver Info #0: Driver Status: via-rhine is active Driver Activation Cmd: "modprobe via-rhine" Config Status: cfg=new, avail=yes, need=no, active=unknown 29: PCI 18.0: 0600 Host bridge [Created at pci.244] Unique ID: fiDB.ptk_g9XAN03 SysFS ID: /devices/pci0000:00/0000:00:18.0 SysFS BusID: 0000:00:18.0 Hardware Class: bridge Model: "AMD K8 NorthBridge" Vendor: pci 0x1022 "AMD" Device: pci 0x1100 "K8 NorthBridge" Config Status: cfg=new, avail=yes, need=no, active=unknown 30: PCI 18.1: 0600 Host bridge [Created at pci.244] Unique ID: W1j0.KIhk9ketuO3 SysFS ID: /devices/pci0000:00/0000:00:18.1 SysFS BusID: 0000:00:18.1 Hardware Class: bridge Model: "AMD K8 NorthBridge" Vendor: pci 0x1022 "AMD" Device: pci 0x1101 "K8 NorthBridge" Config Status: cfg=new, avail=yes, need=no, active=unknown 31: PCI 18.2: 0600 Host bridge [Created at pci.244] Unique ID: OMCs.ridUeImaQn3 SysFS ID: /devices/pci0000:00/0000:00:18.2 SysFS BusID: 0000:00:18.2 Hardware Class: bridge Model: "AMD K8 NorthBridge" Vendor: pci 0x1022 "AMD" Device: pci 0x1102 "K8 NorthBridge" Config Status: cfg=new, avail=yes, need=no, active=unknown 32: PCI 18.3: 0600 Host bridge [Created at pci.244] Unique ID: Fhhh.M7aE7ttHy94 SysFS ID: /devices/pci0000:00/0000:00:18.3 SysFS BusID: 0000:00:18.3 Hardware Class: bridge Model: "AMD K8 NorthBridge" Vendor: pci 0x1022 "AMD" Device: pci 0x1103 "K8 NorthBridge" Config Status: cfg=new, avail=yes, need=no, active=unknown 33: PCI 100.0: 0300 VGA compatible controller (VGA) [Created at pci.244] Unique ID: VCu0.lnbsADFRrK2 Parent ID: vSkL.CP+qXDDqow8 SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.0 SysFS BusID: 0000:01:00.0 Hardware Class: graphics card Model: "ATI Radeon 9700" Vendor: pci 0x1002 "ATI Technologies Inc" Device: pci 0x4e44 "R300 ND" SubVendor: pci 0x1002 "ATI Technologies Inc" SubDevice: pci 0x0002 "Radeon 9700" Memory Range: 0xd8000000-0xdfffffff (rw,prefetchable) I/O Ports: 0xa000-0xafff (rw) Memory Range: 0xe8030000-0xe803ffff (rw,non-prefetchable) Memory Range: 0x00000000-0x0001ffff (ro,prefetchable,disabled) IRQ: 10 (no events) I/O Ports: 0x3c0-0x3df (rw) Driver Info #0: XFree86 v4 Server Module: radeon Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #18 (PCI bridge) 34: PCI 100.1: 0380 Display controller [Created at pci.244] Unique ID: NXNs.mhp84VXMK06 Parent ID: vSkL.CP+qXDDqow8 SysFS ID: /devices/pci0000:00/0000:00:01.0/0000:01:00.1 SysFS BusID: 0000:01:00.1 Hardware Class: graphics card Model: "ATI Radeon R300 [Radeon 9700 Pro] (Secondary)" Vendor: pci 0x1002 "ATI Technologies Inc" Device: pci 0x4e64 "Radeon R300 [Radeon 9700 Pro] (Secondary)" SubVendor: pci 0x1002 "ATI Technologies Inc" SubDevice: pci 0x0003 Memory Range: 0xe0000000-0xe7ffffff (rw,prefetchable,disabled) Memory Range: 0xe8020000-0xe802ffff (rw,non-prefetchable,disabled) Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #18 (PCI bridge) 35: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: z9pp.gNN83gfynbD SysFS ID: /devices/pnp0/00:00 SysFS BusID: 00:00 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0c01 Config Status: cfg=new, avail=yes, need=no, active=unknown 36: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: QL3u.B+yZ9Ve8gC1 SysFS ID: /devices/pnp0/00:01 SysFS BusID: 00:01 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0c02 Config Status: cfg=new, avail=yes, need=no, active=unknown 37: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: tWJy.B+yZ9Ve8gC1 SysFS ID: /devices/pnp0/00:02 SysFS BusID: 00:02 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0c02 Config Status: cfg=new, avail=yes, need=no, active=unknown 38: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: KiZ0.ld94kxNGZf5 SysFS ID: /devices/pnp0/00:03 SysFS BusID: 00:03 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0200 Config Status: cfg=new, avail=yes, need=no, active=unknown 39: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: ntp4.WYwRElrJa93 SysFS ID: /devices/pnp0/00:04 SysFS BusID: 00:04 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0b00 Config Status: cfg=new, avail=yes, need=no, active=unknown 40: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: E349.bvKf3UMzZfE SysFS ID: /devices/pnp0/00:05 SysFS BusID: 00:05 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0800 Config Status: cfg=new, avail=yes, need=no, active=unknown 41: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: hEKD.DE8RM9cWQQ8 SysFS ID: /devices/pnp0/00:06 SysFS BusID: 00:06 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0c04 Config Status: cfg=new, avail=yes, need=no, active=unknown 42: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: NhVi.yhTOLOXWEq7 SysFS ID: /devices/pnp0/00:07 SysFS BusID: 00:07 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0700 Config Status: cfg=new, avail=yes, need=no, active=unknown 43: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: qslm.BuKI+1soRmD SysFS ID: /devices/pnp0/00:08 SysFS BusID: 00:08 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0501 Config Status: cfg=new, avail=yes, need=no, active=unknown 44: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: H20r.YgT1Hy0M6x6 SysFS ID: /devices/pnp0/00:09 SysFS BusID: 00:09 Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0401 Config Status: cfg=new, avail=yes, need=no, active=unknown 45: ISA(PnP) 00.0: 0000 Unclassified device [Created at isapnp.147] Unique ID: iT2w.xhndlW9HXJ7 SysFS ID: /devices/pnp0/00:0a SysFS BusID: 00:0a Hardware Class: unknown Model: "PnP Unclassified device" SubVendor: PNP "PnP" SubDevice: eisa 0x0303 Config Status: cfg=new, avail=yes, need=no, active=unknown 46: None 00.0: 0700 Serial controller [Created at misc.458] Unique ID: rdCR.7RG8lK_UzJ9 Hardware Class: unknown Model: "Serial controller" I/O Ports: 0x3f8-0x3ff (rw) IRQ: 4 (1 event) Config Status: cfg=new, avail=yes, need=no, active=unknown 47: IDE 00.0: 10600 Disk [Created at block.190] Unique ID: Fffu.cSvNm_r53O6 Parent ID: rKvl.StFz1Cz4OY1 SysFS ID: /block/hda SysFS BusID: 0.0 SysFS Device Link: /devices/pci0000:00/0000:00:0f.1/ide0/0.0 Hardware Class: disk Model: "ST3160023A" Device: "ST3160023A" Driver: "VIA_IDE", "ide-disk" Device File: /dev/hda Device Number: block 3:0-3:63 BIOS id: 0x80 Drive status: no medium Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #20 (IDE interface) 48: None 00.0: 11300 Partition [Created at block.352] Unique ID: 0fbI.SE1wIdpsiiC Parent ID: Fffu.cSvNm_r53O6 SysFS ID: /block/hda/hda1 Hardware Class: partition Model: "Partition" Device File: /dev/hda1 Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #47 (Disk) 49: None 00.0: 11300 Partition [Created at block.352] Unique ID: TqrM.SE1wIdpsiiC Parent ID: Fffu.cSvNm_r53O6 SysFS ID: /block/hda/hda2 Hardware Class: partition Model: "Partition" Device File: /dev/hda2 Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #47 (Disk) 50: None 00.0: 11300 Partition [Created at block.352] Unique ID: x+5R.SE1wIdpsiiC Parent ID: Fffu.cSvNm_r53O6 SysFS ID: /block/hda/hda3 Hardware Class: partition Model: "Partition" Device File: /dev/hda3 Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #47 (Disk) 51: IDE 02.0: 10602 CD-ROM (DVD-R) [Created at block.194] Unique ID: 90A1.NleIfBMl8n7 Parent ID: rKvl.StFz1Cz4OY1 SysFS ID: /block/hdc SysFS BusID: 1.0 SysFS Device Link: /devices/pci0000:00/0000:00:0f.1/ide1/1.0 Hardware Class: cdrom Model: "16X16 DVD DUAL" Vendor: "16X16" Device: "DVD DUAL" Driver: "VIA_IDE", "ide-cdrom" Device File: /dev/hdc Device Number: block 22:0 Features: CD-R, CD-RW, DVD, DVD-R Size: 15844328 sectors a 512 bytes Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #20 (IDE interface) Drive Speed: 63 Volume ID: "PAY_IT_FORWARD" Publisher: "WARNER HOME VIDEO" Preparer: "CVC" Creation date: "2001012616040600" 52: USB 00.0: 10a00 Hub [Created at usb.120] Unique ID: k4bc.T27vtnvn7i8 Parent ID: 37TO.4bJnq29V2pD SysFS ID: /devices/pci0000:00/0000:00:10.0/usb1/1-0:1.0 SysFS BusID: 1-0:1.0 Hardware Class: hub Model: "Linux 2.6.10-5-386 uhci_hcd VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller" Hotplug: USB Vendor: "Linux 2.6.10-5-386 uhci_hcd" Device: "VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller" Revision: "2.06" Serial ID: "0000:00:10.0" Driver: "hub" Speed: 1.5 Mbps Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #21 (USB Controller) 53: USB 00.0: 10900 Printer [Created at usb.120] Unique ID: cLrx.udGbDqaYThF Parent ID: k4bc.T27vtnvn7i8 SysFS ID: /devices/pci0000:00/0000:00:10.0/usb1/1-2/1-2:1.0 SysFS BusID: 1-2:1.0 Hardware Class: printer Model: "Epson Stylus Printer" Hotplug: USB Vendor: usb 0x04b8 "Epson" Device: usb 0x0005 "Stylus Printer" Revision: "1.00" Serial ID: "3P3DH0103082222100" Driver: "usblp" Device File: /dev/usb/lp0 Device Number: char 180:0 Speed: 1.5 Mbps Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #52 (Hub) 54: USB 00.0: 10a00 Hub [Created at usb.120] Unique ID: pBe4.KDAemhYaFxA Parent ID: wRyD.4bJnq29V2pD SysFS ID: /devices/pci0000:00/0000:00:10.1/usb2/2-0:1.0 SysFS BusID: 2-0:1.0 Hardware Class: hub Model: "Linux 2.6.10-5-386 uhci_hcd VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2)" Hotplug: USB Vendor: "Linux 2.6.10-5-386 uhci_hcd" Device: "VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2)" Revision: "2.06" Serial ID: "0000:00:10.1" Driver: "hub" Speed: 1.5 Mbps Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #22 (USB Controller) 55: USB 00.0: 10503 USB Mouse [Created at usb.120] Unique ID: FKGF.JrMVjT9Ur0E Parent ID: pBe4.KDAemhYaFxA SysFS ID: /devices/pci0000:00/0000:00:10.1/usb2/2-1/2-1:1.0 SysFS BusID: 2-1:1.0 Hardware Class: mouse Model: "Logitech Optical Mouse" Hotplug: USB Vendor: usb 0x046d "Logitech Inc." Device: usb 0xc00e "Optical Mouse" Revision: "11.10" Compatible to: int 0x0210 0x0013 Driver: "usbhid" Device File: /dev/input/ts0 (/dev/input/mouse0) Device Number: char 13:128 (char 13:32) Speed: 12 Mbps Driver Info #0: Buttons: 3 Wheels: 1 XFree86 Protocol: explorerps/2 GPM Protocol: exps2 Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #54 (Hub) 56: USB 00.0: 10900 Printer [Created at usb.120] Unique ID: hSuP.GQNyVdaNqc7 Parent ID: pBe4.KDAemhYaFxA SysFS ID: /devices/pci0000:00/0000:00:10.1/usb2/2-2/2-2:1.0 SysFS BusID: 2-2:1.0 Hardware Class: printer Model: "HP PSC 750xi" Hotplug: USB Vendor: usb 0x03f0 "HP" Device: usb 0x1511 "PSC 750xi" Revision: "1.00" Serial ID: "MY27ND40FSWB" Driver: "usblp" Device File: /dev/usb/lp1 Device Number: char 180:1 Speed: 1.5 Mbps Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #54 (Hub) 57: USB 00.0: 10a00 Hub [Created at usb.120] Unique ID: uIhY.cyJCwokrI6D Parent ID: nmR3.4bJnq29V2pD SysFS ID: /devices/pci0000:00/0000:00:10.2/usb3/3-0:1.0 SysFS BusID: 3-0:1.0 Hardware Class: hub Model: "Linux 2.6.10-5-386 uhci_hcd VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#3)" Hotplug: USB Vendor: "Linux 2.6.10-5-386 uhci_hcd" Device: "VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#3)" Revision: "2.06" Serial ID: "0000:00:10.2" Driver: "hub" Speed: 1.5 Mbps Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #23 (USB Controller) 58: USB 00.0: 10a00 Hub [Created at usb.120] Unique ID: zPk0.uhTm3ww6MHF Parent ID: f5xu.4bJnq29V2pD SysFS ID: /devices/pci0000:00/0000:00:10.3/usb4/4-0:1.0 SysFS BusID: 4-0:1.0 Hardware Class: hub Model: "Linux 2.6.10-5-386 uhci_hcd VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#4)" Hotplug: USB Vendor: "Linux 2.6.10-5-386 uhci_hcd" Device: "VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#4)" Revision: "2.06" Serial ID: "0000:00:10.3" Driver: "hub" Speed: 1.5 Mbps Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #24 (USB Controller) 59: USB 00.0: 10a00 Hub [Created at usb.120] Unique ID: 2XnU.OckuoZt+uC1 Parent ID: WQQk._XDhFR0dQKC SysFS ID: /devices/pci0000:00/0000:00:10.4/usb5/5-0:1.0 SysFS BusID: 5-0:1.0 Hardware Class: hub Model: "Linux 2.6.10-5-386 ehci_hcd VIA Technologies, Inc. USB 2.0" Hotplug: USB Vendor: "Linux 2.6.10-5-386 ehci_hcd" Device: "VIA Technologies, Inc. USB 2.0" Revision: "2.06" Serial ID: "0000:00:10.4" Driver: "hub" Speed: 1.5 Mbps Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #25 (USB Controller) 60: PS/2 00.0: 10800 Keyboard [Created at input.120] Unique ID: nLyy.TBWTwSuMeW2 Hardware Class: keyboard Model: "AT Translated Set 2 keyboard" Vendor: int 0x0211 Device: int 0x0001 "AT Translated Set 2 keyboard" Device File: /dev/input/event0 Device Number: char 13:64 Driver Info #0: XkbRules: xfree86 XkbModel: pc104 Config Status: cfg=new, avail=yes, need=no, active=unknown 61: None 00.0: 10701 Ethernet [Created at net.88] Unique ID: usDW.ndpeucax6V1 Parent ID: CLZK.SjU91yhPFlC SysFS ID: /class/net/eth0 SysFS Device Link: /devices/pci0000:00/0000:00:12.0 Hardware Class: network interface Model: "Ethernet network interface" Driver: "via-rhine" Device File: eth0 HW Address: 00:11:5b:f4:1b:c0 Config Status: cfg=new, avail=yes, need=no, active=unknown Attached to: #28 (Ethernet controller) 62: None 00.0: 10700 Loopback [Created at net.88] Unique ID: ZsBS.GQNx7L4uPNA SysFS ID: /class/net/lo Hardware Class: network interface Model: "Loopback network interface" Device File: lo Config Status: cfg=new, avail=yes, need=no, active=unknown 63: None 00.0: 10781 Network Interface [Created at net.88] Unique ID: wl2P.nfEXJulusj6 SysFS ID: /class/net/sit0 Hardware Class: network interface Model: "Network Interface" Device File: sit0 Config Status: cfg=new, avail=yes, need=no, active=unknown -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 18:29:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 19:29:06 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919182906.2E06D22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From desrt at desrt.ca 2005-09-19 19:29 UTC ------- The bug is caused by the fact that a delete_self event is generated by a call to dentry_iput (which is called when a file is deleted from a directory). However, dentry_iput is also called by the kernel when it's trying to free up memory in the dentry cache (for example, if the machine is under heavy disk load). The delete_self event is generated for both of these cases which is why stuff disappears when it ought not to. John just dropped by and showed me what a fix for the problem looks like and I'm just waiting for my powerbook to finish compiling its kernel so I can give it a test. Wish me luck :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 19:38:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 20:38:29 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919193829.D714422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ttb at tentacle.dhs.org 2005-09-19 20:38 UTC ------- Created an attachment (id=3899) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3899&action=view) inotify-delete-self.patch Here is the patch I gave to Ryan. Please give it a spin. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 19:38:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 20:38:42 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919193842.67CB822F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ttb at tentacle.dhs.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ttb at tentacle.dhs.org -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 19:52:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 20:52:44 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050919195244.2F9F822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From szaka at sienet.hu 2005-09-19 20:52 UTC ------- You're beating a dead horse for too long now ... This is not a windows interop issue, as the log provided above is the clear proof for that. The kernel simply didn't write out to disk all the changes ntfsresize made. Just think about it. At that time when this happened you were the first and only one who started to experiment with a new underlaying storage layer and you were also the only one who found this "not everything was written to disk" issue (over a hundred distro/solution ship/use ntfsresize). You must be able to reproduce the problem without using ntfsresize if the test environment is properly setup and if it weren't fixed already in the kernel. Also, ntfsresize is rock solid since its original release, three years ago. The only problem was if the user resized a hibernated partition. Windows hibernates in a way that the fs is consistent hence the ntfsresize consistency validation couldn't catch this without explicite hibernation check. Full ChangeLog is in the ntfsprogs package (it's not called ntfstools) and the major changes are also listed at http://mlf.linux.rulez.org/mlf/ezaz/ntfsresize.html The chance to destory hibernated Windows is 100% if you don't use the latest version which have also many important other improvements. Many distro already use it, SUSE, Mandriva, Debian, etc. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 19:55:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 20:55:49 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050919195549.164AE22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-19 20:55 UTC ------- (In reply to comment #6) > I did not put the laptop to sleep since my last comment, and it never froze. > Could it be helpful if I would manage to get the SysRq Keys working? Very helpful. Atleast we'll know where the kernel is when the freeze occurs. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 19:59:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 20:59:26 +0100 (BST) Subject: [Bug 15585] No sound in 2.6.12-8 (breezy) In-Reply-To: Message-ID: <20050919195926.18E0622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-19 20:59 UTC ------- I have an X41 model 2527, and sound works fine with it. Please attach the output from ''amixer''. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 20:05:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 21:05:32 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to intel sound card In-Reply-To: Message-ID: <20050919200532.A167022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-19 21:05 UTC ------- (In reply to comment #0) > The hoary livecd boots but sound does not work. I'm currently running and all I > had to do to get sound to work was recompile alsa. What do you mean by "recompile alsa"? Did you compile alsa-source from universe (1.0.8) and choose the azx driver, or did you compile alsa-driver (1.0.10rc1 or cvs) and choose the hda-intel driver, or did you use another method? Your issue is indirectly related to #15031 but is not a duplicate. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 20:05:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 21:05:53 +0100 (BST) Subject: [Bug 15585] No sound in 2.6.12-8 (breezy) In-Reply-To: Message-ID: <20050919200553.9458222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | linux ------- Additional Comments From ubuntu at juerd.nl 2005-09-19 21:05 UTC ------- Created an attachment (id=3900) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3900&action=view) Output from amixer -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 20:06:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 21:06:17 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to Intel high definition audio sound chipset In-Reply-To: Message-ID: <20050919200617.599AA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux crimsun at fungus.sh.nu changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu Summary|Hotplug hangs on boot due to|Hotplug hangs on boot due to |intel sound card |Intel high definition audio | |sound chipset -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 20:07:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 21:07:35 +0100 (BST) Subject: [Bug 15585] No sound in 2.6.12-8 (breezy) In-Reply-To: Message-ID: <20050919200735.9584622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | linux ------- Additional Comments From ubuntu at juerd.nl 2005-09-19 21:07 UTC ------- Attached as requested. My model is 2525 - this shouldn't matter. Are you using the same kernel version? It did work for me in earlier kernels (2.6.10, from hoary). It may not be clear because it's only in the title, and not in the comment, but the kernel in which it doesn't work is 2.6.12-8. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 20:36:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 21:36:31 +0100 (BST) Subject: [Bug 15826] New: 2.6.12-8-686 crashes on startup Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15826 Ubuntu | linux Summary: 2.6.12-8-686 crashes on startup Product: Ubuntu Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: gicmo at gnome.org QAContact: kernel-bugs at lists.ubuntu.com 2.6.12-7-686 still works fine but 2.6.12-8-686 crashes here. It spits out the following stuff: Valid fromat sequences %a .... [...] /init 64: Syntax error: 0x Kernel panic _ not syncing: Attempted to kill init It is a Centrino Notebook.gicmo at picco ~ % ---- cat /proc/cmdline root=/dev/hda1 ro acpi_sleep=s3_bios vga=normal quiet splash ---- usplash is deinstalled. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 20:50:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 21:50:36 +0100 (BST) Subject: [Bug 15828] New: nvidia-glx-legacy package has missing files Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15828 Ubuntu | linux-restricted-modules Summary: nvidia-glx-legacy package has missing files Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: pascal.devuyst at gmail.com QAContact: kernel-bugs at lists.ubuntu.com I recently installed the package nvidia-glx-legacy in breezy because I have RIVA TNT2 Model 64/Model 64 Pro video card only supported by legacy driver. 3D support does not seem to work with this package, only 2D support. Also I think some files are missing in the package. nvidia-glx-config is not present in the package nvidia-glx-legacy Running glxinfo gives the following error: glxinfo: error while loading shared libraries: libnvidia-tls.so.1: cannot open shared object file: No such file or directory The package depends on nvidia-glx but nvidia-glx is removed at apt-get install nvidia-glx-legacy -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 20:52:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 21:52:41 +0100 (BST) Subject: [Bug 15828] nvidia-glx-legacy package has missing files In-Reply-To: Message-ID: <20050919205241.AE2E622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15828 Ubuntu | linux-restricted-modules ------- Additional Comments From pascal.devuyst at gmail.com 2005-09-19 21:52 UTC ------- *** Bug 15681 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 21:26:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 22:26:26 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050919212626.F23B022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From pnewnham at yahoo.com 2005-09-19 22:26 UTC ------- I have the same problem using the Breezy Preview with all updates installed. I don't seem to be able to fix it with a manually compiled version either - I followed the instructions on the wiki and it appeared to install ok but I still get the following output from "modinfo spca5xx": filename: /lib/modules/2.6.12-8-686/kernel/drivers/usb/media/spca5xx/spca5xx.ko vermagic: 2.6.12-8-686 686 gcc-3.4 depends: srcversion: 51F9399718D471302F9487A -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 21:29:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 22:29:45 +0100 (BST) Subject: [Bug 12310] crash after resume with USB mouse attached In-Reply-To: Message-ID: <20050919212945.54C0722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12310 Ubuntu | linux ------- Additional Comments From benh at kernel.crashing.org 2005-09-19 22:29 UTC ------- Might be a bit quick to close that one, this is a recurring issue as far as I'm concerned (that is I'm getting reports regularty). There seem to be a race in the USB input driver vs. suspend/resume, though it's not reproduceable on all platforms. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 21:59:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 22:59:17 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919215917.1466422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From desrt at desrt.ca 2005-09-19 22:59 UTC ------- OK. The patch *seems* to work for me but maybe I haven't gotten unlucky enough yet :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 22:00:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 23:00:41 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919220041.A10E222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From seb128 at ubuntu.com 2005-09-19 23:00 UTC ------- the patch works fine for me, issue fixed -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 22:01:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 23:01:12 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919220112.DAA3A22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From seb128 at ubuntu.com 2005-09-19 23:01 UTC ------- oh, and thanks a lot for the patch! :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 22:13:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 23:13:17 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919221317.7FE1122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ttb at tentacle.dhs.org 2005-09-19 23:13 UTC ------- Good to hear, I have pushed this to Andrew, with any luck it will be in 2.6.14. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 22:41:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 23:41:51 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050919224151.33D4F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils crimsun at fungus.sh.nu changed: What |Removed |Added ---------------------------------------------------------------------------- Component|linux |alsa-utils Summary|No sound in 2.6.12-8 |Muted sound after dist- |(breezy) |upgrade from Hoary to Breezy ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-19 23:41 UTC ------- Simple mixer control 'Headphone Jack Sense',0 Capabilities: pswitch pswitch-joined Playback channels: Mono Mono: Playback [on] ^^^^ This needs to be muted as it is on mine. This is a difficult problem to resolve, as a search through Bugzilla for dist-upgrades between Hoary and Breezy regarding ALSA reveals. Technically it should be assigned to alsa-utils, not linux, because on state restoration the mixer is important not the modules. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 22:43:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 23:43:33 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050919224333.49F9422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-19 23:43 UTC ------- (In reply to comment #3) > Attached as requested. My model is 2525 - this shouldn't matter. Are you using > the same kernel version? It did work for me in earlier kernels (2.6.10, from > hoary). It may not be clear because it's only in the title, and not in the > comment, but the kernel in which it doesn't work is 2.6.12-8. I'm using 2.6.12-8.13, and it works fine. See the fix I stated in the previous reply. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 22:47:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 23:47:48 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050919224748.434AD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From mdz at ubuntu.com 2005-09-19 23:47 UTC ------- (In reply to comment #25) > You're beating a dead horse for too long now ... This is not a windows interop > issue, as the log provided above is the clear proof for that. The kernel simply > didn't write out to disk all the changes ntfsresize made. This is still pure conjecture on your part; we don't have enough information to know what happened. We have only one report of the problem and have never been able to reproduce it. I still haven't seen the relevant kernel messages, but my best guess is that there was an IDE bus reset or similar hardware-induced event which happened during the resize. Magnus, would you attach the complete kernel messages if you still have them? > Just think about it. > At that time when this happened you were the first and only one who started to > experiment with a new underlaying storage layer and you were also the only one > who found this "not everything was written to disk" issue (over a hundred > distro/solution ship/use ntfsresize). You must be able to reproduce the problem > without using ntfsresize if the test environment is properly setup and if it > weren't fixed already in the kernel. udev isn't an "underlying storage layer". I've tried to explain this to you already. udev creates and deletes device nodes in the filesystem, nothing more. It does its work entirely in userspace and is not responsible for (e.g.) performing I/O in the kernel. The "underlying storage layer" in use in this case was the Linux IDE subsystem, which is not exactly new or experimental. > Also, ntfsresize is rock solid since its original release, three years ago. The > only problem was if the user resized a hibernated partition. Windows hibernates > in a way that the fs is consistent hence the ntfsresize consistency validation > couldn't catch this without explicite hibernation check. The user has already stated that hibernation was not in use at the time of the issue, and so I don't think this is relevant to this bug report. We can consider updating to a newer ntfsprogs in order to gain this safety check, but there is no reason to believe that it would help with the problem described here. It is quite late in our release cycle, and we prefer not to make such changes without very strong justification. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:07:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:07:26 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050919230726.8395B22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils ------- Additional Comments From ubuntu at juerd.nl 2005-09-20 00:07 UTC ------- Flipping that bit helped. Thanks a lot! Music again! Woohoo. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:15:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:15:51 +0100 (BST) Subject: [Bug 15362] Harddisk LED always on, harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050919231551.4599922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-20 00:15 UTC ------- You should be able to hear the disk seeking if it is actually writing. You would surely notice the system feeling sluggish as well. You can add an I/O meter to the panel also, as an additional check -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:28:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:28:02 +0100 (BST) Subject: [Bug 15826] 2.6.12-8-686 crashes on startup In-Reply-To: Message-ID: <20050919232802.9B24122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15826 Ubuntu | linux jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From jbailey at ubuntu.com 2005-09-20 00:28 UTC ------- Fixed with initramfs-tools 0.27. Please upgrade to that, and then do: dpkg-reconfigure linux-image-2.6.12-8-686 and it should work for you. Tks, Jeff Bailey -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:28:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:28:15 +0100 (BST) Subject: [Bug 15826] 2.6.12-8-686 crashes on startup In-Reply-To: Message-ID: <20050919232815.AD0E022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15826 Ubuntu | linux jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:34:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:34:54 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050919233454.2DF5622F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From szaka at sienet.hu 2005-09-20 00:34 UTC ------- (In reply to comment #26) > udev isn't an "underlying storage layer". Indeed and Ubuntu wasn't the first one who used it. So I don't know why you think I was refering to it. It wasn't the IDE subsystem either and if I remembered what it was I would name it: I don't use Ubuntu and I don't remember that new installation setup what I've seen 7 months ago when I checked Ubuntu out, in about 10 minutes. But perhaps I confuse it with another distro/livecd, though I doubt it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:45:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:45:15 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050919234515.7630022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules ------- Additional Comments From mdz at ubuntu.com 2005-09-20 00:45 UTC ------- (In reply to comment #8) > (In reply to comment #7) > > Is this problem still reproducible in breezy? > > Yes, this bug is still reproducible in Breezy Preview, even if I add 'nvidia' to > /etc/hotplug/blacklist. That isn't expected to have any effect; hotplug will not load that module regardless of whether it is listed in that file. It must be loaded explicitly via /etc/modules if you want to use it. > I have a question: Is there a way to install nVIDIA drivers via a LiveCD? I've a > Morphix LiveCD and it came with nVIDIA drivers. By the way, the Morphix LiveCD > is (!) 2 years old and it boots perfectly. You can install the nvidia-glx module using the Ubuntu live CD if you wish. So far, I see no indication whatsoever that your problem has anything to do with the nvidia driver. Boot the system in recovery mode, which should verbosely show which modules are being loaded and help narrow the possibilities. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:45:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:45:53 +0100 (BST) Subject: [Bug 15675] Doubled/Stacked vga16fb display In-Reply-To: Message-ID: <20050919234553.2C9D122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15675 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mjg59 at codon.org.uk |ben.collins at ubuntu.com Component|usplash |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Doubled/Stacked usplash |Doubled/Stacked vga16fb |display during install and |display |normal boot | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:46:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:46:16 +0100 (BST) Subject: [Bug 15675] Doubled/Stacked vga16fb display on Sony VGN-S260 In-Reply-To: Message-ID: <20050919234616.47A5722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15675 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Doubled/Stacked vga16fb |Doubled/Stacked vga16fb |display |display on Sony VGN-S260 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:49:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:49:57 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919234957.8FC2522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UPSTREAM |ASSIGNED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 00:49 UTC ------- Sweet. The patch is scheduled for the next kernel upload, unless I hear otherwise. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 23:50:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 00:50:47 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050919235047.D5FD522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 00:16:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 01:16:32 +0100 (BST) Subject: [Bug 15698] Restricted modules not available during installation In-Reply-To: Message-ID: <20050920001632.6A81122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15698 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Summary|Atheros card not working |Restricted modules not |during install on IBM |available during |thinkpad T43 |installation ------- Additional Comments From mdz at ubuntu.com 2005-09-20 01:16 UTC ------- (In reply to comment #0) > Seems like if it's on the CD it should be available at install time, too. Intuitively, yes, but unfortunately the reality of the situation is more complex, and the installer currently does not have access to these modules. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 00:30:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 01:30:49 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050920003049.8883922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From dooglus at gmail.com 2005-09-20 01:30 UTC ------- It seems to be working for me too. It's been 30 minutes since I booted the patched kernel and my desktop icons haven't vanished yet. I will add a comment here in the unlikely event that they vanish again. The patch applies cleanly to the 2.6.12 ubuntu kernel sources. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 00:33:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 01:33:04 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050920003304.4A97422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |alitawil82 at gmail.com ------- Additional Comments From mdz at ubuntu.com 2005-09-20 01:33 UTC ------- *** Bug 15731 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 00:35:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 01:35:33 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050920003533.0026D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-20 01:35 UTC ------- It is most likely a configuration problem; the symptoms would be identical if you entered the wrong key or essid, for example -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 00:36:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 01:36:20 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050920003620.B538D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 00:44:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 01:44:18 +0100 (BST) Subject: [Bug 15745] can't resume from hibernation on Thinkpad X40 In-Reply-To: Message-ID: <20050920004418.1C85222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15745 Ubuntu | acpi-support mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |mjg59 at codon.org.uk Component|linux |acpi-support ------- Additional Comments From mdz at ubuntu.com 2005-09-20 01:44 UTC ------- Please show us the contents of /etc/fstab and /var/log/dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 00:47:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 01:47:08 +0100 (BST) Subject: [Bug 15749] swapper panic on shutdown In-Reply-To: Message-ID: <20050920004708.40FC222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15749 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux Summary|linux-image-2.6.12-8-686-smp|swapper panic on shutdown |2.6.12-8.13 fails to | |poweroff computer | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 00:50:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 01:50:34 +0100 (BST) Subject: [Bug 15745] can't resume from hibernation on Thinkpad X40 In-Reply-To: Message-ID: <20050920005034.156A222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15745 Ubuntu | acpi-support ------- Additional Comments From mjg59 at codon.org.uk 2005-09-20 01:50 UTC ------- Should be fixed with the latest initramfs-tools upload (unless you're using LVM, in which case it won't be) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 01:18:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 02:18:23 +0100 (BST) Subject: [Bug 15796] Wireless on Toshiba Tecra A4 Crashy In-Reply-To: Message-ID: <20050920011823.51FCA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15796 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|critical |major -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 01:19:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 02:19:49 +0100 (BST) Subject: [Bug 15801] new restricted modules package in breezy breaks madwifi In-Reply-To: Message-ID: <20050920011949.27E1822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15801 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |fabbione at ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-20 02:19 UTC ------- Send the exact error messages. This sounds somewhat like bug #15592 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 01:22:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 02:22:46 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050920012246.C5A8522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 01:29:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 02:29:42 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050920012942.5AA8122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From mdz at ubuntu.com 2005-09-20 02:29 UTC ------- (In reply to comment #27) > (In reply to comment #26) > > udev isn't an "underlying storage layer". > > Indeed and Ubuntu wasn't the first one who used it. So I don't know why you > think I was refering to it. Because you previously blamed udev for this problem. > It wasn't the IDE subsystem either and if I > remembered what it was I would name it: I don't use Ubuntu and I don't remember > that new installation setup what I've seen 7 months ago when I checked Ubuntu > out, in about 10 minutes. But perhaps I confuse it with another distro/livecd, > though I doubt it. I don't know what you could have meant; Ubuntu hasn't used experimental versions of any Linux kernel storage subsystem, ever. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 02:29:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 03:29:55 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to Intel high definition audio sound chipset In-Reply-To: Message-ID: <20050920022955.C472222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux ------- Additional Comments From myles at myles.id.au 2005-09-20 03:29 UTC ------- (In reply to comment #7) > (In reply to comment #0) > > The hoary livecd boots but sound does not work. I'm currently running and all I > > had to do to get sound to work was recompile alsa. > > What do you mean by "recompile alsa"? Did you compile alsa-source from universe > (1.0.8) and choose the azx driver, or did you compile alsa-driver (1.0.10rc1 or > cvs) and choose the hda-intel driver, or did you use another method? Here are the notes I made when I got sound working on hoary: --- Installed these backported debs http://www.freshnet.org/debian/hoary/alsa-1.0.9/ Then cd /usr/src sudo wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.9a.tar.bz2 sudo tar -jxvf alsa-driver-1.0.9a.tar.bz2 cd alsa-driver-1.0.9a sudo ./configure sudo make sudo make install Then: sudo modprobe snd-hda-intel Then run alsamixer and turn everything up --- So yeah it was the hda-intel driver. I only had to modprobe it once. Sound just worked on the next boot and thenafter. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 02:36:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 03:36:35 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050920023635.E8BD722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-20 03:36 UTC ------- I just applied an update to initramfs-tools and resume still behaves the same way. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 02:39:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 03:39:01 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050920023901.C9BB822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-20 03:39 UTC ------- You need to do dpkg-reconfigure linux-image-`uname -r` after an initramfs update -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 03:44:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 04:44:02 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050920034402.93E1722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ttb at tentacle.dhs.org 2005-09-20 04:44 UTC ------- That last patch has a bug in it, where some DELETE_SELF events won't be sent. Linus has suggested an alternative fix: --- diff --git a/fs/dcache.c b/fs/dcache.c --- a/fs/dcache.c +++ b/fs/dcache.c @@ -102,7 +102,8 @@ static inline void dentry_iput(struct de list_del_init(&dentry->d_alias); spin_unlock(&dentry->d_lock); spin_unlock(&dcache_lock); - fsnotify_inoderemove(inode); + if (!inode->i_nlink) + fsnotify_inoderemove(inode); if (dentry->d_op && dentry->d_op->d_iput) dentry->d_op->d_iput(dentry, inode); else -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 04:13:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 05:13:19 +0100 (BST) Subject: [Bug 15745] can't resume from hibernation on Thinkpad X40 In-Reply-To: Message-ID: <20050920041319.565A822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15745 Ubuntu | acpi-support petrosyan at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From petrosyan at gmail.com 2005-09-20 05:13 UTC ------- with the latest initramfs-tools it has been fixed indeed. closing... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 04:27:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 05:27:28 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050920042728.ED58822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ttb at tentacle.dhs.org 2005-09-20 05:27 UTC ------- Another iteration (on top of last patch): --- diff --git a/fs/dcache.c b/fs/dcache.c --- a/fs/dcache.c +++ b/fs/dcache.c @@ -102,7 +102,7 @@ static inline void dentry_iput(struct de list_del_init(&dentry->d_alias); spin_unlock(&dentry->d_lock); spin_unlock(&dcache_lock); - if (!inode->i_nlink) + if (dentry->d_flags & DCACHE_DELETED) fsnotify_inoderemove(inode); if (dentry->d_op && dentry->d_op->d_iput) dentry->d_op->d_iput(dentry, inode); @@ -1166,6 +1166,7 @@ void d_delete(struct dentry * dentry) */ spin_lock(&dcache_lock); spin_lock(&dentry->d_lock); + dentry->d_flags |= DCACHE_DELETED; isdir = S_ISDIR(dentry->d_inode->i_mode); if (atomic_read(&dentry->d_count) == 1) { dentry_iput(dentry); diff --git a/include/linux/dcache.h b/include/linux/dcache.h --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -155,6 +155,7 @@ d_iput: no no no yes #define DCACHE_REFERENCED 0x0008 /* Recently used, don't discard. */ #define DCACHE_UNHASHED 0x0010 +#define DCACHE_DELETED 0x0020 extern spinlock_t dcache_lock; -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 04:29:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 05:29:05 +0100 (BST) Subject: [Bug 14737] Locked up on Lid Close/Open - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050920042905.5FD8022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14737 Ubuntu | linux gtaylor at clemson.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED ------- Additional Comments From gtaylor at clemson.edu 2005-09-20 05:29 UTC ------- Ok, looks like the latest kernel updates have fixed this issue. It's now working perfectly. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 04:38:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 05:38:03 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050920043803.8D03C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux desrt at desrt.ca changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |ASSIGNED Priority|P2 |P1 ------- Additional Comments From desrt at desrt.ca 2005-09-20 05:38 UTC ------- Ben: reopening since we have "heard otherwise" :) John: is there any advantage to the 2nd patch? It seems to change a lot more than the first one (and therefore stands a higher chance of breaking things). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 05:01:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 06:01:17 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050920050117.915B822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ttb at tentacle.dhs.org 2005-09-20 06:01 UTC ------- The second patch may seem more complex, but it is really simple. It adds a new flag to d_flags, which is set when the dentry has been deleted. This is the proper way of accomplishing what my first patch tried to do, which was distinguish in dentry_iput between dcache pruning and a dentry being deleted because of an unlink. There may still be news to come, so I would wait until tomorrow to see if anything has changed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 05:35:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 06:35:35 +0100 (BST) Subject: [Bug 15099] Breezy Preview - No laptop speaker output, headphone works In-Reply-To: Message-ID: <20050920053535.D516822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15099 Ubuntu (laptop) | linux ------- Additional Comments From carey at internode.on.net 2005-09-20 06:35 UTC ------- Thomas, surely there is a better way than having a setting for every single motherboard and sound chipset out there? * Isn't there any way to detect the onboard amplifier, and thus being able to know what the EA setting should be? * How does Windows accomplish this? On a driver-by-driver basis or does it use some sort of amplifier detection? Hmm, thanks for the info though. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 05:38:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 06:38:43 +0100 (BST) Subject: [Bug 15068] CardBus not functional, no IRQ, ENE CB1410 CardBus In-Reply-To: Message-ID: <20050920053843.C328722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15068 Ubuntu | linux ------- Additional Comments From carey at internode.on.net 2005-09-20 06:38 UTC ------- I'm not sure yet -- but I think that maybe this CardBus on these certain machines needs PCI fixes as well as the yenta_socket fixes in 2.6.13. There are a ton of fixes for both. So if this is true, and it needs all the fixes, then am I correct in saying it is unlikely to make it into Breezy? Isn't there a way to just add this device to "the list" and have the resources that are meant to be reserved... reserved? (Thus it will be able to get an IRQ because it's not being blocked, this is as far as I understand it anyway) Anyway, I will try some more patching with 2.6.12 (with my limited knowledge of patching). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 06:00:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 07:00:56 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050920060056.B64E722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-20 07:00 UTC ------- More to the issue: When Hoary was installed, sound worked by default, correct? You didn't need to (un)mute any mixer elements, correct? Then when Breezy was installed, after you rebooted into 2.6.12, this mixer element was unmuted, correct? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 06:07:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 07:07:22 +0100 (BST) Subject: [Bug 15068] CardBus not functional, no IRQ, ENE CB1410 CardBus In-Reply-To: Message-ID: <20050920060722.4590C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15068 Ubuntu | linux ------- Additional Comments From carey at internode.on.net 2005-09-20 07:07 UTC ------- Using latest breezy kernel, 2.6.12-8-386, below is output of interrupts and iomem. carey at sanctuary:~$ cat /proc/interrupts CPU0 0: 9393077 IO-APIC-edge timer 1: 28304 IO-APIC-edge i8042 8: 1 IO-APIC-edge rtc 9: 645 IO-APIC-level acpi 12: 29859 IO-APIC-edge i8042 14: 419178 IO-APIC-edge ide0 15: 64648 IO-APIC-edge ide1 18: 54474 IO-APIC-level SiS SI7012, ohci1394 19: 27968466 IO-APIC-level eth0 20: 0 IO-APIC-level ohci_hcd:usb1 21: 70699 IO-APIC-level ohci_hcd:usb2 23: 2 IO-APIC-level ehci_hcd:usb3 NMI: 0 LOC: 9393736 ERR: 0 MIS: 0 carey at sanctuary:~$ cat /proc/iomem 00000000-0009fbff : System RAM 0009fc00-0009ffff : reserved 000a0000-000bffff : Video RAM area 000c0000-000cbfff : Video ROM 000f0000-000fffff : System ROM 00100000-1bfcffff : System RAM 00100000-00261e67 : Kernel code 00261e68-00320bff : Kernel data 1bfd0000-1bfddfff : ACPI Tables 1bfde000-1bffffff : ACPI Non-volatile Storage 1c000000-1c000fff : 0000:00:0a.0 1c000000-1c000fff : yenta_socket 1c400000-1c7fffff : PCI CardBus #02 1c800000-1cbfffff : PCI CardBus #02 cd500000-dd4fffff : PCI Bus #01 d0000000-d7ffffff : 0000:01:00.0 df600000-df6fffff : PCI Bus #01 df6e0000-df6fffff : 0000:01:00.0 dfff9800-dfff9fff : 0000:00:0c.0 dfff9800-dfff9fff : ohci1394 dfffc000-dfffcfff : 0000:00:04.0 dfffc000-dfffcfff : sis900 dfffd000-dfffdfff : 0000:00:03.3 dfffd000-dfffdfff : ehci_hcd dfffe000-dfffefff : 0000:00:03.1 dfffe000-dfffefff : ohci_hcd dffff000-dfffffff : 0000:00:03.0 dffff000-dfffffff : ohci_hcd e0000000-e3ffffff : 0000:00:00.0 ff780000-ffffffff : reserved -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 06:08:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 07:08:34 +0100 (BST) Subject: [Bug 15068] CardBus not functional, no IRQ, ENE CB1410 CardBus In-Reply-To: Message-ID: <20050920060834.0168022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15068 Ubuntu | linux ------- Additional Comments From carey at internode.on.net 2005-09-20 07:08 UTC ------- Created an attachment (id=3913) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3913&action=view) the pcmcia power problems from syslog -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 07:45:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 08:45:38 +0100 (BST) Subject: [Bug 12310] crash after resume with USB mouse attached In-Reply-To: Message-ID: <20050920074538.3AB8922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12310 Ubuntu | linux ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-20 08:45 UTC ------- (In reply to comment #6) > Might be a bit quick to close that one, this is a recurring issue as far as I'm > concerned (that is I'm getting reports regularty). There seem to be a race in > the USB input driver vs. suspend/resume, though it's not reproduceable on all > platforms. I did not see any dups and other reporters here, so I assumed I could close it. However, we can always reopen it if somebody encounters it again. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 07:46:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 08:46:10 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050920074610.6420422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From federico.tolomei at gmail.com 2005-09-20 08:46 UTC ------- Phil, I installed a fresh breezy with all updates this morning. $ uname -r 2.6.12-8-386 the spca5xx.ko included in the kernel still dosn't working. Try with these steps: 1) Download http://mxhaard.free.fr/spca50x/Download/spca5xx-20050701.tar.gz 2) sudo apt-get install linux-headers-2.6.12-8 builds-essential gcc-3.4 3) tar xvfz spca5xx-20050701.tar.gz ; cd spca5xx-20050701.tar.gz ; make 4) sudo insmod spca5xx.ko Now you should see a new video* in /dev . To install new module: 5) sudo modprobe -r spca5xx.ko 6) Do a backup of /lib/modules/`uname -a`/kernel/drivers/usb/media/spca5xx/spca5xx.ko and remove or rename it 7) sudo make install The hand compiled module will in /lib/modules/`uname -a`/kernel/drivers/usb/ 8) sudo modprobe spca5xx.ko -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 08:49:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 09:49:41 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050920084941.E630E22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils ------- Additional Comments From ubuntu at juerd.nl 2005-09-20 09:49 UTC ------- All correct. I started changing things (though not this particular item, or any other item in kmix's "Switches" tab) only after realizing there was no sound anymore. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 09:13:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 10:13:40 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050920091340.DE2C922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux wicke at wikidev.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |wicke at wikidev.net -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 09:18:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 10:18:05 +0100 (BST) Subject: [Bug 15324] Random hard freezes with ATAPI drive on an SATA controller In-Reply-To: Message-ID: <20050920091805.0BF7E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15324 Ubuntu | linux irios at telefonica.net changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From irios at telefonica.net 2005-09-20 10:18 UTC ------- It happens to me both in Breezy and Hoary. It can be avoided by keeping a CD in the drive at all times. ¿Will it be patched for final Breezy? When it happens, it leaves these traces in the kernel log: With the system recently booted, the last lines in /var/log/kern.log say; Jun 7 22:24:48 localhost kernel: speedstep-centrino: invalid ACPI data Jun 7 22:24:51 localhost kernel: eth0: no IPv6 routers present After the system has locked up and then restarted, you can see these lines have been added right before the crash: Jun 8 00:02:11 localhost kernel: hdd: irq timeout: status=0xd0 { Busy } Jun 8 00:02:11 localhost kernel: hdd: irq timeout: error=0x00 Jun 8 00:02:41 localhost kernel: hdd: ATAPI reset timed-out, status=0x80 Jun 8 00:02:46 localhost kernel: ide1: reset: master: error (0x00?) Jun 8 00:02:46 localhost kernel: hdd: status timeout: status=0x80 { Busy } Jun 8 00:02:46 localhost kernel: hdd: status timeout: error=0x01IllegalLengthIndication Jun 8 00:02:46 localhost kernel: hdd: drive not ready for command Jun 8 00:03:16 localhost kernel: hdd: ATAPI reset timed-out, status=0x80 And then a new set of messages is appended on reboot -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 09:46:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 10:46:14 +0100 (BST) Subject: [Bug 15828] nvidia-glx-legacy package has missing files In-Reply-To: Message-ID: <20050920094614.F1BA122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15828 Ubuntu | linux-restricted-modules adconrad at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |adconrad at ubuntu.com Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 09:53:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 10:53:43 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050920095343.2EE6822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux janew at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |janew at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 10:04:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 11:04:18 +0100 (BST) Subject: [Bug 15099] Breezy Preview - No laptop speaker output, headphone works In-Reply-To: Message-ID: <20050920100418.1B16322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15099 Ubuntu (laptop) | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-20 11:04 UTC ------- (In reply to comment #5) > Thomas, surely there is a better way than having a setting for every single > motherboard and sound chipset out there? Please see James Courtier-Dutton's comment which I posted in #14232. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 10:24:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 11:24:23 +0100 (BST) Subject: [Bug 15099] Breezy Preview - No laptop speaker output, headphone works In-Reply-To: Message-ID: <20050920102423.D91A822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15099 Ubuntu (laptop) | linux ------- Additional Comments From carey at internode.on.net 2005-09-20 11:24 UTC ------- > (In reply to comment #5) > > Please see James Courtier-Dutton's comment which I posted in #14232. > I see. The GUI application seems to be the best solution for this problem. Any takers? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 10:25:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 11:25:28 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050920102528.7235A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From callipeo at libero.it 2005-09-20 11:25 UTC ------- I have applied the patch founded at http://patchwork.ozlabs.org/linuxppc//patch?id=968, so Fn+ESC acts as ALT+F13. I can confirm that the key combination works, but I could not use it to obtain a trace. I have followed the instruction at https://wiki.ubuntu.com//DebuggingSystemCrash, but the laptop only freezes inside a graphical environment and there is nothing significant in /var/log/kern.log. BTW [sysrq]+s followed by [sysrq]+u followed by [sysrq]+b does not work either. I'll try again to reproduce the problem from the console. If there is a better way to use the SysRq keys on an iBook than the patch I've applied, please let me know. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 11:29:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 12:29:25 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050920112925.093C922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From jgotangco at gmail.com 2005-09-20 12:29 UTC ------- Mine doesn't work as well. It's a Canonical supplied Toshiba Tecra M2. It doesn't seem to accept MMCs either even on windows. I've attached dmesg and lspci for my unit -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 11:30:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 12:30:02 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050920113002.2165F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From jgotangco at gmail.com 2005-09-20 12:30 UTC ------- Created an attachment (id=3924) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3924&action=view) dmesg of Tecra M2 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 11:30:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 12:30:43 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050920113043.1CCFF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux ------- Additional Comments From jgotangco at gmail.com 2005-09-20 12:30 UTC ------- Created an attachment (id=3925) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3925&action=view) lscpi output for Tecra M2 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 11:31:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 12:31:28 +0100 (BST) Subject: [Bug 14733] Card Reader Not Working - Toshiba Tecra A4 In-Reply-To: Message-ID: <20050920113128.632E122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14733 Ubuntu | linux jgotangco at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jgotangco at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 11:34:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 12:34:13 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050920113413.496E822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux bugzilla at hjernemadsen.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bugzilla at hjernemadsen.org -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 11:34:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 12:34:31 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050920113431.4123E22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From milky_cow_101 at yahoo.com 2005-09-20 12:34 UTC ------- Hi Federico, thank you for posting that. I just tried all that but get stuck at sudo insmod spca5xx.ko: insmod: error inserting 'spca5xx.ko': -1 Unknown symbol in module Here is my make history which seems fine: owner at ubuntu:~/spca5xx-20050701$ make Building SPCA5XX driver for 2.5/2.6 kernel. Remember: you must have read/write access to your kernel source tree. make -C /lib/modules/`uname -r`/build SUBDIRS=/home/owner/spca5xx-20050701 modules make[1]: Entering directory `/usr/src/linux-headers-2.6.12-8-386' CC [M] /home/owner/spca5xx-20050701/drivers/usb/spca5xx.o In file included from /home/owner/spca5xx-20050701/drivers/usb/spca5xx.c:763: /home/owner/spca5xx-20050701/drivers/usb/mr97311.h: In function `pcam_start': /home/owner/spca5xx-20050701/drivers/usb/mr97311.h:391: warning: ISO C90 forbids mixed declarations and code CC [M] /home/owner/spca5xx-20050701/drivers/usb/spcadecoder.o LD [M] /home/owner/spca5xx-20050701/spca5xx.o Building modules, stage 2. MODPOST CC /home/owner/spca5xx-20050701/spca5xx.mod.o LD [M] /home/owner/spca5xx-20050701/spca5xx.ko make[1]: Leaving directory `/usr/src/linux-headers-2.6.12-8-386' -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 11:45:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 12:45:44 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050920114544.0D63D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux seb128 at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjuliuss at online.no ------- Additional Comments From seb128 at ubuntu.com 2005-09-20 12:45 UTC ------- *** Bug 15883 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 12:12:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 13:12:11 +0100 (BST) Subject: [Bug 11466] Toshiba M30X-144 fails to boot with acpi In-Reply-To: Message-ID: <20050920121211.A054422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11466 Ubuntu (laptop) | pcmcia-cs tfheen at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |tfheen at ubuntu.com Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From tfheen at ubuntu.com 2005-09-20 13:12 UTC ------- pcmcia-cs (3.2.5-11ubuntu2) breezy; urgency=low * Remove 0x800-0x8ff range - it seems to cause problems on many machines -- Matthew Garrett Sun, 28 Aug 2005 18:09:40 +0100 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 12:50:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 13:50:58 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050920125058.2B34D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-20 13:50 UTC ------- Can you please test with the latest initramfs-tools? You'll need to do sudo dpkg-reconfigure linux-image-`uname -r` after installing them. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 13:14:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 14:14:24 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050920131424.0F3AA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux ------- Additional Comments From olfactor at gmail.com 2005-09-20 14:14 UTC ------- (In reply to comment #4) > Can you please test with the latest initramfs-tools? You'll need to do Works for me! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 13:49:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 14:49:09 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050920134909.A8E1D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux ------- Additional Comments From mika.fischer at gmx.de 2005-09-20 14:49 UTC ------- Fixed for me in 0.28 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 14:39:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 15:39:31 +0100 (BST) Subject: [Bug 15435] Hang when loading some module In-Reply-To: Message-ID: <20050920143931.D54EF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15435 Ubuntu | linux ------- Additional Comments From neurosion at yahoo.com 2005-09-20 15:39 UTC ------- I am willing to do whatever work is necessary to help diagnose this problem, so if anyone has more ideas I'm willing and able. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 14:55:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 15:55:28 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050920145528.E0A8E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux ------- Additional Comments From alitawil82 at gmail.com 2005-09-20 15:55 UTC ------- (In reply to comment #0) Hello, thanks for your reply Matt Zimmerman, i guess the key configuration is not a problem cause i dual booted the same pc in windows and the key worked. Best regards, Ali Tawil -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 14:58:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 15:58:48 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050920145848.DCAF622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux alitawil82 at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mdz at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 15:28:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 16:28:20 +0100 (BST) Subject: [Bug 2681] Dell Latitude hotplug fatal errors--installed OS won't boot In-Reply-To: Message-ID: <20050920152820.E161422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2681 Ubuntu (laptop) | linux ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-20 16:28 UTC ------- I've not seen these in a long time, and my laptop used to do this on warty. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 15:29:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 16:29:56 +0100 (BST) Subject: [Bug 14790] e100: Failure after resume from hibernation In-Reply-To: Message-ID: <20050920152956.085D822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14790 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 16:29 UTC ------- Excellent, closing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 15:39:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 16:39:05 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050920153905.4D0DE22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 16:39 UTC ------- Thanks, I like the last version of the patch better. The first patch would break any other patches we had that happen to patch around dentry_iput() because of the changed prototype. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 15:40:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 16:40:26 +0100 (BST) Subject: [Bug 2681] Dell Latitude hotplug fatal errors--installed OS won't boot In-Reply-To: Message-ID: <20050920154026.4C0B422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2681 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 16:40 UTC ------- Thanks, I'll consider this bug fixed then. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 15:46:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 16:46:00 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050920154600.B2CEC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From szaka at sienet.hu 2005-09-20 16:46 UTC ------- > (In reply to comment #27) >> (In reply to comment #26) >>> udev isn't an "underlying storage layer". >> >> Indeed and Ubuntu wasn't the first one who used it. So I don't know why you >> think I was refering to it. > > Because you previously blamed udev for this problem. I wrote "To me this seems to be a kernel/udev bug" and "If the problem is related to udev". Troubleshooting and blaming are quite different things. If the issue was understood and solved then it would be possible to blame something, not earlier. Don't stuck at trying to figure out what I think about udev. Forget it. That's not the important. The important thing is that, the problem was either Windows related or not. If it was then it's already solved. If it wasn't then it's still unknown. Going into the Windows interoperability direction became a waste of time for 4 months now. I've went over again all logs, comments and emails with Magnus and if you're interested then I could summarize, when I will have some spare time, why I think, after all, that the issue was hibernation related. > I don't know what you could have meant; Ubuntu hasn't used experimental versions > of any Linux kernel storage subsystem, ever. I was referring to the minifo overlay filesystem Ubuntu LiveCD uses. I didn't remember the normal distro doesn't use it. On the page https://wiki.ubuntu.com/LiveCDDesign there is a comment: "mini-fo is _BUGGY_." And yes, in theory it shouldn't have matter related to this bug but the fields are connected enough, even if very loosely, that an unexpected interference, bug could cause such problem occasionally (the relocated data was almost 761 MB which wouldn't have fit into the memory probably). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 15:48:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 16:48:38 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050920154838.D5BA022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 16:48 UTC ------- (In reply to comment #74) > I upgraded to Breezy with acpi-support 0.33, and tried laptop-mode="on" again. I > unplugged the power, walked away from the computer, and when I came back 15-30 > minutes later, the laptop was hung with the hard drive light on. > > And my two days of experience with Breezy, it appears that. as in Hoary, > disabling laptop-mode stops this hang from occuring. Can you boot normally (laptop mode enabled), and run "hdparm -B 255 /dev/hda" (on all your drives), and see if the hang still occurs. I want to see if the default -B mode causes this. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:24:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:24:35 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050920162435.6D5DB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Priority|P2 |P1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:25:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:25:03 +0100 (BST) Subject: [Bug 15488] -source should recommend gcc-3.4 rather than gcc In-Reply-To: Message-ID: <20050920162503.6CF3222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15488 Ubuntu | kernel-package ------- Additional Comments From iwj at ubuntu.com 2005-09-20 17:25 UTC ------- Following discussion on #ubuntu-kernel with fabbione: This problem should actually be fixed by changing the Recommends in our linux-source packages, and is nothing to do with kernel-package. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:34:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:34:18 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050920163418.0491722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC|mdz at ubuntu.com | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:40:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:40:49 +0100 (BST) Subject: [Bug 14947] Grub removes Windows boot option when NTFS partition needs recovery In-Reply-To: Message-ID: <20050920164049.AA83122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub szaka at sienet.hu changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |szaka at sienet.hu ------- Additional Comments From szaka at sienet.hu 2005-09-20 17:40 UTC ------- Bug 12742 explains what I think has happened here. And though it talks about ntfs resizing, the partition start shifting issue is filesystem and even resizing independent and fairly often happens with any distros using libparted based partitioners since the end of 2003. The situation was improved last summer significantly but still not fully fixed. This may be a libparted or a libparted usage bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:41:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:41:26 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050920164126.D444322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From mdz at ubuntu.com 2005-09-20 17:41 UTC ------- (In reply to comment #29) > > (In reply to comment #27) > Don't stuck at trying to figure out what I think about udev. Forget it. > That's not the important. The important thing is that, the problem was > either Windows related or not. If it was then it's already solved. If it > wasn't then it's still unknown. Going into the Windows interoperability > direction became a waste of time for 4 months now. Can you explain what you mean by "Going into the Windows interoperability direction"? > I've went over again all logs, comments and emails with Magnus and if > you're interested then I could summarize, when I will have some spare time, > why I think, after all, that the issue was hibernation related. It would probably be easier for everyone involved if you would copy your correspondence here, rather than keeping it private. > > I don't know what you could have meant; Ubuntu hasn't used experimental versions > > of any Linux kernel storage subsystem, ever. > > I was referring to the minifo overlay filesystem Ubuntu LiveCD uses. This module was used in the very first release of Ubuntu, and only on the live CD (which was derived from the current version of Morphix). It has never had anything to do with the installation, and the Ubuntu live CD has not been used with Ubuntu for over a year. Furthermore, minifo worked at the VFS layer, and would not have had any impact on block devices anyway. > I didn't remember the normal distro doesn't use it. On the page > https://wiki.ubuntu.com/LiveCDDesign there is a comment: > "mini-fo is _BUGGY_." Yes, it was buggy. > And yes, in theory it shouldn't have matter related to this bug but the > fields are connected enough, even if very loosely, that an unexpected > interference, bug could cause such problem occasionally (the relocated data > was almost 761 MB which wouldn't have fit into the memory probably). I can't understand your sentence, but minifo is 100% provably unrelated to this problem. There is no possible connection whatsoever, since that module was never on an Ubuntu installation CD, and by the time this report was filed, it was long since removed from the live CD as well. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:43:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:43:56 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050920164356.1C4D222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From ubugs.20.kohler at xoxy.net 2005-09-20 17:43 UTC ------- I just tried it (laptop mode enabled and 'hdparm -B 255 /dev/hda'), and yes, the hang still occurred. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:47:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:47:28 +0100 (BST) Subject: [Bug 6108] IDE power management hang on various laptops In-Reply-To: Message-ID: <20050920164728.6424A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-20 17:47 UTC ------- Argh. It seems unavoidable that we need to split this bug, then. Who is seeing the hdparm -B related hang, and who is seeing the laptop-mode hang? Note that disabling laptop-mode previously seemed to prevent the hang for me, but further testing revealed that hdparm -B seemed at fault (comment #55). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:48:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:48:27 +0100 (BST) Subject: [Bug 15366] 2.6 kernel no boot with single drive RAID In-Reply-To: Message-ID: <20050920164827.A362722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15366 Ubuntu | UNKNOWN ------- Additional Comments From juff at core.com 2005-09-20 17:48 UTC ------- Created an attachment (id=3929) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3929&action=view) Attached is page 2 screen shot showing the problem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:50:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:50:00 +0100 (BST) Subject: [Bug 15366] 2.6 kernel no boot with single drive RAID In-Reply-To: Message-ID: <20050920165000.EE98722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15366 Ubuntu | UNKNOWN ------- Additional Comments From juff at core.com 2005-09-20 17:49 UTC ------- Created an attachment (id=3930) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3930&action=view) Attached is page 1 screen shot showing the Live CD initial screen THis is the inital Live CD (Page 1) screen before the next screen (page 2) where it froze. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:52:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:52:33 +0100 (BST) Subject: [Bug 15083] PCMCIA NIC not getting initialized and powered on In-Reply-To: Message-ID: <20050920165233.9C2A322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15083 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Status|NEEDINFO |UNCONFIRMED Component|pcmcia-cs |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:52:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:52:59 +0100 (BST) Subject: [Bug 15083] PCMCIA NIC not getting initialized and powered on In-Reply-To: Message-ID: <20050920165259.AA86A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15083 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 16:56:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 17:56:26 +0100 (BST) Subject: [Bug 15366] 2.6 kernel no boot with single drive RAID In-Reply-To: Message-ID: <20050920165626.3FE7122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15366 Ubuntu | UNKNOWN ------- Additional Comments From juff at core.com 2005-09-20 17:56 UTC ------- Boot sequence freezes on step "Starting RAID devices..." See page 2 screnshot JPEG. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 17:10:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 18:10:34 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050920171034.9482422F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|IDE power management hang on|laptop-mode/IDE-APM hang on |various laptops |various laptops ------- Additional Comments From mdz at ubuntu.com 2005-09-20 18:10 UTC ------- OK, colour me confused. I just got the hang again on the same hardware with acpi-support 0.33 running on battery power. So I've seen it both with and without laptop-mode enabled, and with and without hdparm -B. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 17:26:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 18:26:03 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050920172603.22CBB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 18:26 UTC ------- Anyone ever gotten anything from SysRq for this bug?(In reply to comment #76) > I just tried it (laptop mode enabled and 'hdparm -B 255 /dev/hda'), and yes, the > hang still occurred. Ok, can you do that, and also try "hdparm -d0 /dev/hda" to disable dma. Only thing that's ever come off the console about this has been a dma error. So maybe it has something to do with that. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 17:30:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 18:30:50 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050920173050.30F6622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb szaka at sienet.hu changed: What |Removed |Added ---------------------------------------------------------------------------- CC|szaka at sienet.hu | ------- Additional Comments From szaka at sienet.hu 2005-09-20 18:30 UTC ------- (In reply to comment #30) > It would probably be easier for everyone involved if you would copy your > correspondence here, rather than keeping it private. You and Colin already got a copy in April which you can share if Magnus also agrees of course. In case of doubts, please feel free to send issues upstream. It was great to work with you! :-) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 17:36:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 18:36:42 +0100 (BST) Subject: [Bug 14947] Grub removes Windows boot option when NTFS partition needs recovery In-Reply-To: Message-ID: <20050920173642.D4F3722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14947 Ubuntu | grub szaka at sienet.hu changed: What |Removed |Added ---------------------------------------------------------------------------- CC|szaka at sienet.hu | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 17:43:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 18:43:40 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050920174340.BD08222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|critical |major ------- Additional Comments From mdz at ubuntu.com 2005-09-20 18:43 UTC ------- I have only ever received one email from Szaka, which was Message-ID: It contains some quoted text which discusses this problem. It does not contain the string "hibernat" anywhere, nor does it shed any light on the problem. If there is additional material which contains the information alluded to in comment #31. It does contain another claim from Szaka that this is a udev bug, amusingly. Since he has decided that he doesn't want to discuss this anymore, this bug has never been reproducible, and no other users have reported it, its impact seems not to justify severity 'critical'. Downgrading to major. Magnus, if you have any additional information, please post it here. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 17:50:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 18:50:19 +0100 (BST) Subject: [Bug 15488] -source should recommend gcc-3.4 rather than gcc In-Reply-To: Message-ID: <20050920175019.685ED22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15488 Ubuntu | kernel-package iwj at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From iwj at ubuntu.com 2005-09-20 18:50 UTC ------- This has now been done. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:05:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:05:54 +0100 (BST) Subject: [Bug 15563] Does not find my USB 2.0 flash drive in USB 2.0 ports In-Reply-To: Message-ID: <20050920180554.875CF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15563 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-20 19:05 UTC ------- Please attach the output from: dmesg lspci lspci -n lsusb -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:06:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:06:55 +0100 (BST) Subject: [Bug 15083] PCMCIA NIC not getting initialized and powered on In-Reply-To: Message-ID: <20050920180655.579C122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15083 Ubuntu (laptop) | linux ------- Additional Comments From mwh at sysrq.dk 2005-09-20 19:06 UTC ------- Created an attachment (id=3931) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3931&action=view) /var/log/dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:07:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:07:17 +0100 (BST) Subject: [Bug 15083] PCMCIA NIC not getting initialized and powered on In-Reply-To: Message-ID: <20050920180717.D216D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15083 Ubuntu (laptop) | linux ------- Additional Comments From mwh at sysrq.dk 2005-09-20 19:07 UTC ------- Created an attachment (id=3932) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3932&action=view) /proc/interrupts -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:07:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:07:40 +0100 (BST) Subject: [Bug 15083] PCMCIA NIC not getting initialized and powered on In-Reply-To: Message-ID: <20050920180740.3688C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15083 Ubuntu (laptop) | linux ------- Additional Comments From mwh at sysrq.dk 2005-09-20 19:07 UTC ------- Created an attachment (id=3933) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3933&action=view) dmesg after incertion -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:08:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:08:09 +0100 (BST) Subject: [Bug 15083] PCMCIA NIC not getting initialized and powered on In-Reply-To: Message-ID: <20050920180809.0467622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15083 Ubuntu (laptop) | linux mwh at sysrq.dk changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #3917 is|0 |1 obsolete| | ------- Additional Comments From mwh at sysrq.dk 2005-09-20 19:08 UTC ------- Created an attachment (id=3934) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3934&action=view) dmesg before incertion -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:09:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:09:21 +0100 (BST) Subject: [Bug 15608] vga16fb display corruption on Acer Aspire 1300 In-Reply-To: Message-ID: <20050920180921.0E8D622F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15608 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|bootable CD logo bad |vga16fb display corruption |displayed |on Acer Aspire 1300 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:27:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:27:51 +0100 (BST) Subject: [Bug 15849] SMC9452TX (Marvel Yukon - driver sk98 and skge) In-Reply-To: Message-ID: <20050920182751.0FBD822F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15849 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-20 19:27 UTC ------- Please test a recent daily live CD, which contains updated sk* drivers. http://cdimage.ubuntu.com/daily-live/current/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:31:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:31:56 +0100 (BST) Subject: [Bug 15045] Breezy Preview not bootable on P4 with Intel SATA controler In-Reply-To: Message-ID: <20050920183156.99C4922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15045 Ubuntu | linux mhoodes at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mhoodes at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:32:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:32:22 +0100 (BST) Subject: [Bug 15854] Hang loading driver for Marvell Yukon 88E8036 In-Reply-To: Message-ID: <20050920183222.89AE822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15854 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|System hangs during boot-up |Hang loading driver for |if onboard LAN ctlr is |Marvell Yukon 88E8036 |enabled | ------- Additional Comments From mdz at ubuntu.com 2005-09-20 19:32 UTC ------- Please send lspci and lspci -n output so we can see the PCI IDs for your device, and also test the current daily live CD which contains updated drivers: http://cdimage.ubuntu.com/daily-live/current/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:38:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:38:20 +0100 (BST) Subject: [Bug 15858] Logitech Quickcam Messenger is not usable In-Reply-To: Message-ID: <20050920183820.AA2F222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15858 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-20 19:38 UTC ------- The quickcam module does not declare support for this particular device: alias: usb:v046Dp0840d*dc*dsc*dp*ic*isc*ip* alias: usb:v046Dp0850d*dc*dsc*dp*ic*isc*ip* alias: usb:v046Dp0870d*dc*dsc*dp*ic*isc*ip* This may be because the driver in fact does not support it yet. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:54:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:54:19 +0100 (BST) Subject: [Bug 15488] -source should recommend gcc-3.4 rather than gcc In-Reply-To: Message-ID: <20050920185419.A057A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15488 Ubuntu | kernel-package ------- Additional Comments From fabbione at ubuntu.com 2005-09-20 19:54 UTC ------- To be precise the fix will enter the archive with the next kernel upload. Fabio -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 18:56:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 19:56:04 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050920185604.5978422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:02:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:02:13 +0100 (BST) Subject: [Bug 15872] D-Link DFE-528TX PCI NIC not detected In-Reply-To: Message-ID: <20050920190213.DB9F922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15872 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|D-Link DFE-528TX |D-Link DFE-528TX PCI NIC not | |detected ------- Additional Comments From mdz at ubuntu.com 2005-09-20 20:02 UTC ------- Please show us the output from "lspci" and "lspci -n" on the system with this device -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:31:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:31:16 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050920193116.18F3F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com AssignedTo|debzilla at ubuntu.com |mjg59 at codon.org.uk Component|acpi |linux Keywords| |laptop QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-20 20:31 UTC ------- Remove the resume= parameter; this is not used in Ubuntu. I just upgraded/rebooted/hibernated my T42. Hibernation seemed successful, and the system powered off, but it didn't resume (clobbered the swap partition instead). I think that may have been due to one of the recent initramfs-tools bugs, though, and will regenerate my initramfs and retry. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:33:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:33:17 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050920193317.72A5022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-20 20:33 UTC ------- Nope, that didn't fix it. I still get usplash and a normal boot. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:38:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:38:24 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050920193824.8B4E922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-20 20:38 UTC ------- This ought to work. Are you certain you're running initramfs-tools 0.28? Are you running on LVM or traditional partitions? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:43:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:43:09 +0100 (BST) Subject: [Bug 15849] SMC9452TX (Marvel Yukon - driver sk98 and skge) In-Reply-To: Message-ID: <20050920194309.3DEF622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15849 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:44:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:44:07 +0100 (BST) Subject: [Bug 15849] SMC9452TX (Marvel Yukon - driver sk98 and skge) In-Reply-To: Message-ID: <20050920194407.5EC1022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15849 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 20:44 UTC ------- sk98lin will be reintroduced in the next kernel upload, just to support cards like the Yukon that skge does not support. The sky2 driver in the current kernel is known to be unstable. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:44:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:44:44 +0100 (BST) Subject: [Bug 14458] more upstream inotify goodness In-Reply-To: Message-ID: <20050920194444.0985A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14458 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:45:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:45:08 +0100 (BST) Subject: [Bug 15563] Does not find my USB 2.0 flash drive in USB 2.0 ports In-Reply-To: Message-ID: <20050920194508.5A7C822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15563 Ubuntu | linux ------- Additional Comments From theosib at gmail.com 2005-09-20 20:45 UTC ------- Created an attachment (id=3935) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3935&action=view) dmesg, lspci, lspci -n, lsusb, before insertion of flash drive -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:45:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:45:29 +0100 (BST) Subject: [Bug 15563] Does not find my USB 2.0 flash drive in USB 2.0 ports In-Reply-To: Message-ID: <20050920194529.A0A1322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15563 Ubuntu | linux ------- Additional Comments From theosib at gmail.com 2005-09-20 20:45 UTC ------- Created an attachment (id=3936) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3936&action=view) dmesg, lspci, lspci -n, lsusb, AFTER insertion of flash drive -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:46:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:46:09 +0100 (BST) Subject: [Bug 15563] Does not find my USB 2.0 flash drive in USB 2.0 ports In-Reply-To: Message-ID: <20050920194609.537EF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15563 Ubuntu | linux ------- Additional Comments From theosib at gmail.com 2005-09-20 20:46 UTC ------- Created an attachment (id=3937) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3937&action=view) dmesg, lspci, lspci -n, lsusb, "diff before after" -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:46:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:46:21 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050920194621.BBD0122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 20:46 UTC ------- sk98lin will be introduced back in the next kernel upload in order to support these chips. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:46:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:46:43 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050920194643.C9DCB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:48:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:48:08 +0100 (BST) Subject: [Bug 15435] Hang when loading some module In-Reply-To: Message-ID: <20050920194808.854E122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15435 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-20 20:48 UTC ------- (In reply to comment #4) > I am willing to do whatever work is necessary to help diagnose this problem, so > if anyone has more ideas I'm willing and able. Try the second sentence in comment #2. Also try Alt+SysRq+9 before alt+sysrq+t -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:50:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:50:39 +0100 (BST) Subject: [Bug 7213] Live and Install hangs after SCSI initialization In-Reply-To: Message-ID: <20050920195039.B132D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7213 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 20:50 UTC ------- Could you please test the latest breezy so we know the status of this bug? URL is in the comment prior to this one. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:51:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:51:12 +0100 (BST) Subject: [Bug 7213] Live and Install hangs after SCSI initialization In-Reply-To: Message-ID: <20050920195112.063EC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7213 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:52:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:52:06 +0100 (BST) Subject: [Bug 9064] System powers off unexpectedly In-Reply-To: Message-ID: <20050920195206.8BF6322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9064 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 19:54:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 20:54:00 +0100 (BST) Subject: [Bug 15854] Hang loading driver for Marvell Yukon 88E8036 In-Reply-To: Message-ID: <20050920195400.A117E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15854 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-20 20:54 UTC ------- Will be fixed by next kernel upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 20:06:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 21:06:07 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050920200607.2AE0022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From kleeman at cims.nyu.edu 2005-09-20 21:06 UTC ------- Thanks a lot Ben! That will make my Breezy upgrade a lot easier. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 22:09:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 23:09:51 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050920220951.9B5D922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |david.remacle at tiscalinet.be ------- Additional Comments From jbailey at ubuntu.com 2005-09-20 23:09 UTC ------- *** Bug 9115 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 22:36:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 23:36:39 +0100 (BST) Subject: [Bug 15854] Hang loading driver for Marvell Yukon 88E8036 In-Reply-To: Message-ID: <20050920223639.4399C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15854 Ubuntu | linux ------- Additional Comments From cc.noyes at verizon.net 2005-09-20 23:36 UTC ------- (In reply to comment #2) > Will be fixed by next kernel upload. Here's the output of lspci -n 0000:00:00.0 0600: 8086:2590 (rev 03) 0000:00:02.0 0300: 8086:2592 (rev 03) 0000:00:02.1 0380: 8086:2792 (rev 03) 0000:00:1c.0 0604: 8086:2660 (rev 04) 0000:00:1c.1 0604: 8086:2662 (rev 04) 0000:00:1d.0 0c03: 8086:2658 (rev 04) 0000:00:1d.1 0c03: 8086:2659 (rev 04) 0000:00:1d.2 0c03: 8086:265a (rev 04) 0000:00:1d.3 0c03: 8086:265b (rev 04) 0000:00:1d.7 0c03: 8086:265c (rev 04) 0000:00:1e.0 0604: 8086:2448 (rev d4) 0000:00:1e.2 0401: 8086:266e (rev 04) 0000:00:1e.3 0703: 8086:266d (rev 04) 0000:00:1f.0 0601: 8086:2641 (rev 04) 0000:00:1f.2 0101: 8086:2653 (rev 04) 0000:05:04.0 0280: 8086:4220 (rev 05) 0000:05:06.0 0607: 104c:8031 0000:05:06.2 0c00: 104c:8032 0000:05:06.3 0180: 104c:8033 0000:05:06.4 0805: 104c:8034 The output of lspci 0000:00:00.0 Host bridge: Intel Corp. Mobile Memory Controller Hub (rev 03) 0000:00:02.0 VGA compatible controller: Intel Corp. Mobile Graphics Controller (rev 03) 0000:00:02.1 Display controller: Intel Corp. Mobile Graphics Controller (rev 03) 0000:00:1c.0 PCI bridge: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 04) 0000:00:1c.1 PCI bridge: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 (rev 04) 0000:00:1d.0 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 04) 0000:00:1d.1 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 04) 0000:00:1d.2 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 04) 0000:00:1d.3 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 04) 0000:00:1d.7 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 04) 0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev d4) 0000:00:1e.2 Multimedia audio controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Audio Controller (rev 04) 0000:00:1e.3 Modem: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) AC'97 Modem Controller (rev 04) 0000:00:1f.0 ISA bridge: Intel Corp. 82801FBM (ICH6M) LPC Interface Bridge (rev 04) 0000:00:1f.2 IDE interface: Intel Corp. 82801FBM (ICH6M) SATA Controller (rev 04) 0000:05:04.0 Network controller: Intel Corp. PRO/Wireless 2200BG (rev 05) 0000:05:06.0 CardBus bridge: Texas Instruments: Unknown device 8031 0000:05:06.2 FireWire (IEEE 1394): Texas Instruments: Unknown device 8032 0000:05:06.3 Unknown mass storage controller: Texas Instruments: Unknown device 8033 0000:05:06.4 0805: Texas Instruments: Unknown device 8034 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 22:44:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 20 Sep 2005 23:44:56 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050920224456.818BC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux ------- Additional Comments From jani.monoses at gmail.com 2005-09-20 23:44 UTC ------- On a HP 8220 with the same model of wireless card I had a similar problem, I couldn't see the access point. In other locations however the card wroked fine so it may have been a particular AP/setup it does not like. Unfortunately I cannot go back and test again on the initial location as it's in another town, but I'll ask about the AP hardware type it may be it's the same kind of incompatibility that we bumped into. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 23:02:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 00:02:09 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050920230209.E521722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux ------- Additional Comments From jani.monoses at gmail.com 2005-09-21 00:02 UTC ------- that AP was a Dlink Dl-624+ set up with 128bit WEP if it helps -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 23:29:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 00:29:34 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050920232934.93E1322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-21 00:29 UTC ------- OK, this turned out to be a missing RESUME= in mkinitramfs.conf. Ignore me. (it would be nice if we could probe around for that someday...) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 23:58:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 00:58:34 +0100 (BST) Subject: [Bug 15926] New: Nothing but power through docking station Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15926 Ubuntu (laptop) | linux Summary: Nothing but power through docking station Product: Ubuntu Version: unspecified Platform: All OS/Version: All Status: UNCONFIRMED Keywords: laptop Severity: trivial Priority: P5 Component: linux AssignedTo: mjg59 at codon.org.uk ReportedBy: corey.burger at gmail.com QAContact: kernel-bugs at lists.ubuntu.com As the summary says. I don't even get USB power through the docking station. Due to my new BIOS crack, I have no idea how to debug this usefully. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 20 23:59:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 00:59:27 +0100 (BST) Subject: [Bug 14039] PCMCIA/Cardbus cards not detected In-Reply-To: Message-ID: <20050920235927.6037922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14039 Ubuntu (laptop) | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |PENDINGUPLOAD ------- Additional Comments From mjg59 at codon.org.uk 2005-09-21 00:59 UTC ------- Should be fixed in the next kernel upload -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 00:06:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 01:06:37 +0100 (BST) Subject: [Bug 15926] Nothing but power through docking station In-Reply-To: Message-ID: <20050921000637.9897A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15926 Ubuntu (laptop) | linux ------- Additional Comments From corey.burger at gmail.com 2005-09-21 01:06 UTC ------- Ok, it looks like the computer treats both ethernet ports (the docking station and the laptop) as one. When I plug in to the docking station one, they both light up and show activity. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 00:13:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 01:13:59 +0100 (BST) Subject: [Bug 15926] Nothing but power through docking station In-Reply-To: Message-ID: <20050921001359.9B36222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15926 Ubuntu (laptop) | linux ------- Additional Comments From corey.burger at gmail.com 2005-09-21 01:13 UTC ------- DVI does the same thing that X does when there is no monitor plugged in, ie, produce garbage on the screen. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 01:40:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 02:40:35 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050921014035.D585A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From em36 at columbia.edu 2005-09-21 02:40 UTC ------- Installed all updates as of 02:30 GMT 21 September, and still get this result when waking from hibernation: image data gets read into memory; two lines of GTM Info appear (misreported above as GDM, sorry), and then screen goes blank (with a blue tinge) and a blinking cursor around line 12, column 0 (below the last of the two GTM lines). Picking up a hint in the other comments, I checked initramfs.conf, and it did have the correct resume= line pointing to my swap partition. Initramfrs is 0.28. Should this be working? I can try downloading a new ISO tomorrow and testing again if desired. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 01:44:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 02:44:03 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050921014403.BDEBB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-21 02:44 UTC ------- Have you regenerated your initramfs? sudo dpkg-reconfigure linux-image-`uname -r` -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 02:58:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 03:58:03 +0100 (BST) Subject: [Bug 15849] SMC9452TX (Marvel Yukon - driver sk98 and skge) In-Reply-To: Message-ID: <20050921025803.5683722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15849 Ubuntu | linux ------- Additional Comments From eric at woodallweb.com 2005-09-21 03:58 UTC ------- (In reply to comment #2) > sk98lin will be reintroduced in the next kernel upload, just to support cards like the Yukon that skge does > not support. The sky2 driver in the current kernel is known to be unstable. I just tried the 9/20/2005 live cd and can confirm that my card (SMC9452TX) does not work under this version. The driver that was loaded for this card was skge however, not the sky2 driver. The driver used is the one that shows up in "Device Manager" correct? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 02:58:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 03:58:43 +0100 (BST) Subject: [Bug 15849] SMC9452TX (Marvel Yukon - driver sk98 and skge) In-Reply-To: Message-ID: <20050921025843.3295422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15849 Ubuntu | linux ------- Additional Comments From eric at woodallweb.com 2005-09-21 03:58 UTC ------- (In reply to comment #2) > sk98lin will be reintroduced in the next kernel upload, just to support cards like the Yukon that skge does > not support. The sky2 driver in the current kernel is known to be unstable. I just tried the 9/20/2005 live cd and can confirm that my card (SMC9452TX) does not work under this version. The driver that was loaded for this card was skge however, not the sky2 driver. The driver used is the one that shows up in "Device Manager" correct? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 03:38:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 04:38:38 +0100 (BST) Subject: [Bug 15930] New: Apt-get dist-upgrade Kills NVIDIA driver. Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15930 Ubuntu | linux Summary: Apt-get dist-upgrade Kills NVIDIA driver. Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: jlacroix82 at gmail.com QAContact: kernel-bugs at lists.ubuntu.com Note: Couldn't find "linux-restricted-modules" in the list but that is the package that this is pertaining too. I use a Vanilla kernel from kernel.org that works very well for me. I am using Breezy, and I apt-get dist-upgrade every day to keep up to date. Every now and then the dist-upgrade installs a new version of linux-restricted-modules, and when it does, it kills the Nvidia driver I got from nvidia.com. This driver is important to me because I play quite a few GLX games. The stock nvidia driver in universe is not always up to date and doesn't work with a vanilla kernel. Anyway, I use vanilla kernels because the speed of the OS when using a custom kernel is a ton faster than the default kernel Breezy came with. After dist-upgrade'ing and then rebooting, I get the Nvidia logo three times followed by being dumped to the command line. Then, I uninstall the Nvidia driver then reinstall it, reboot, and all is well forever until I dist-upgrade again. I believe the nvidia module in nvidia-restricted-modules is causing a conflict with the one I am getting from www.nvidia.com. I am using kernel 2.6.13.1 from kernel.org. I don't know if its safe to remove linux-restricted-modules because it wants to remove other things that look important, like a package called linux-386. That sounds really important so I leave it alone. Also, here's a tip I don't know if anyone suggested this, but it would be cool during installation to ask what driver to use under the advanced section for Xorg and have Nvidia be an option there. It would make Ubuntu much greater than it already is. Just an idea if you haven't already thought of it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 04:50:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 05:50:26 +0100 (BST) Subject: [Bug 14786] Hoary SMP Kernel on Dell Poweredge 6450 crashes on reboot In-Reply-To: Message-ID: <20050921045026.EE57F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14786 Ubuntu | linux ------- Additional Comments From joe at k12s.phast.umass.edu 2005-09-21 05:50 UTC ------- also see this redhat bug: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=156905 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 07:56:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 08:56:32 +0100 (BST) Subject: [Bug 15939] New: MSI Neo4 FI hangs after ACPI messages Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15939 Ubuntu | kernel-package Summary: MSI Neo4 FI hangs after ACPI messages Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: bart at verwilst.be QAContact: kernel-bugs at lists.ubuntu.com Hi! I'm trying out the latest breezy preview, and this is what i get when booting the install cd: ACPI: Looking for DSDT in initrd... not found And then it hangs.. specifying acpi=off on the commandline fixes it though, but there must be a _real_ solution out there somewhere ;) My motherboard is a MSI Neo4 FI, with an nforce4 chipset... Thanks in advance! Bart Verwilst -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 10:08:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 11:08:06 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050921100806.D1E5122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From getaceres at gmail.com 2005-09-21 11:08 UTC ------- It happens to me too. In the installation of Ubuntu and Kubuntu preview the network is not configured automatically, while it's configured right in Hoary. Also I installed Hoary and then upgraded to Breezy. After a reboot, I could not enter in GDM because Xorg can't find /dev/input/mice. Also ALSA fails to start. With kernel 2.6.12-8 I get all this errors and I haven't network. With kernel 2.6.10-5 I get all this errors but I have the network configured by DHCP. I attach the dmesg output I get with kernel 2.6.12 and 2.6.10. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 10:10:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 11:10:36 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050921101036.BEB6222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From getaceres at gmail.com 2005-09-21 11:10 UTC ------- Created an attachment (id=3948) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3948&action=view) dmesg ouput for kernels 2.6.12-8 and 2.6.10-5 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 11:01:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 12:01:52 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050921110152.EE41922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-21 12:01 UTC ------- Thanks for the guidance... Well, it's certainly different, but not yet proper. The resume process goes until a certain point and then the screen goes a light shade of gray with a blinking cursor halfway down the left side. The GTM items are still displayed on the screen, but not the PCI items or the message about swsusp copying from memory. Looks something like this: [4295383.837000] Freeing memory...... Done (60942 pages freed) [4295388.420000] GTM info 78,3c,0,0,13 [4295390.137000] GTM info 78,14,0,0,13 Then the screen goes to gray.... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 12:26:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 13:26:50 +0100 (BST) Subject: [Bug 15930] Apt-get dist-upgrade Kills NVIDIA driver. In-Reply-To: Message-ID: <20050921122650.0523922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15930 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTABUG ------- Additional Comments From ben.collins at ubuntu.com 2005-09-21 13:26 UTC ------- Run this command to get a list of the packages involved. dpkg --get-selections | grep linux-restricted-modules Whatever package names you see, add them to this command line: apt-get remove pkg1 pkg2 ... Now, this wont work if you actually use other modules in this package. The only alternative is to compile your kernel using a different EXTRA_VERSION, so that it does not get installed in the same place with the same name as our kernels. Closing this bug report since we can't account for users overwriting package files (package files always take precedence). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 12:28:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 13:28:11 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050921122811.0734322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux mjuliuss at online.no changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjuliuss at online.no -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 12:41:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 13:41:23 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050921124123.64A8022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From em36 at columbia.edu 2005-09-21 13:41 UTC ------- I'm going to have to try this again tomorrow. I downloaded the 21 Sept daily iso, but it failed to complete installation (couldn't install packages it said), so I don't have a Ubuntu system at the moment. (Earlier, I tried regenerating initramfs as suggested above, but I lost X in the process, and I wasn't skilled enough to finish the reconfiguration.) Apologies for the delay but I'll report back when the 22 Sept iso is ready for download. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 13:24:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 14:24:35 +0100 (BST) Subject: [Bug 15959] error inserting hci-usb on boot In-Reply-To: Message-ID: <20050921132435.9579022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15959 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|scott-bugs at ubuntu.com |ben.collins at ubuntu.com Component|hotplug |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 13:41:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 14:41:43 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050921134143.EFC6E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From szaka at sienet.hu 2005-09-21 14:41 UTC ------- (In reply to comment #32) > I have only ever received one email from Szaka, which was Message-ID: > Right. > It contains some quoted text which discusses this problem. Right. I've copied all the relevant parts into Comment #8, back in April. > It does not contain the string "hibernat" anywhere, nor does it shed any light on the problem. Right. All needed information is in this thread, one just needs to put the puzzle together. It's only you who thought the private emails help. I've nowhere said so. > It does contain another claim from Szaka that this is a udev bug, amusingly. There isn't any udev related comment in that email which I didn't already copy into Comment #8. You have found again my "To me this seems to be a kernel/udev bug" comment which is still not claim but speculation, conjecture. > Since he has decided that he doesn't want to discuss this anymore, Absolutely untrue. Actually I've even explicitely asked you in comment #31 that please send the problem reports upstream, to us, developers: Ad 1. I'll be very busy in the forecoming weeks and others may help you out earlier (I've already refered to this in comment #29). Ad 2. You helped me realize that privately helping here is harmful for the users. See for example in comment #10 that I couldn't help you in the SUSE issue and also http://blog.andrew.net.au/2005/02/25#upstream > this bug has never been reproducible, and no other users have reported it, Unless it was hibernation. But whatever is the truth, Ubuntu will keep destroying hibernated Windows (very-very rare) unless it upgrades ntfsprogs. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 13:51:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 14:51:54 +0100 (BST) Subject: [Bug 15930] Apt-get dist-upgrade Kills NVIDIA driver. In-Reply-To: Message-ID: <20050921135154.4AB4D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15930 Ubuntu | linux ------- Additional Comments From jlacroix82 at gmail.com 2005-09-21 14:51 UTC ------- But is it safe to remove that package? I already tried but it wanted to remove other stuff like Linux-386, whatever that is. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 13:55:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 14:55:57 +0100 (BST) Subject: [Bug 15960] New: xen.postinst contains illegal sed command Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15960 Ubuntu | kernel-package Summary: xen.postinst contains illegal sed command Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: major Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: debzilla at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com Automatically imported from Debian bug report #329373 http://bugs.debian.org/329373 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 14:09:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 15:09:06 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050921140906.3F88622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ttb at tentacle.dhs.org 2005-09-21 15:09 UTC ------- Here is another patch, that should work for all filesystems in the kernel tree. I have heard that it might not work properly on ocfs2 (clusterfs?). This changes the semantics of the DELETE_SELF event when hard links are present. You will get a DELETE_SELF event everytime a hard link is deleted, and the cookie field will contain the number of links still present. If the cookie is zero, then you will get a IGNORE event afterwards. But, let me warn anyone who is using DELETE_SELF, you will only get the DELETE_SELF when the inode goes away, which means if someone opens the file then unlinks it, the event won't be sent until the person closes the filedescriptor, and the inode can go away. If you want to be notified immediately when a file goes away, watch the parent directory of the file. Index: linux/include/linux/fsnotify.h =================================================================== --- linux.orig/include/linux/fsnotify.h 2005-08-28 19:41:01.000000000 -0400 +++ linux/include/linux/fsnotify.h 2005-09-20 18:46:15.000000000 -0400 @@ -63,8 +63,9 @@ */ static inline void fsnotify_inoderemove(struct inode *inode) { - inotify_inode_queue_event(inode, IN_DELETE_SELF, 0, NULL); - inotify_inode_is_dead(inode); + inotify_inode_queue_event(inode, IN_DELETE_SELF, inode->i_nlink, NULL); + if (inode->i_nlink == 0) + inotify_inode_is_dead(inode); } /* -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 15:14:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 16:14:18 +0100 (BST) Subject: [Bug 13885] USB mouse freezing under Xorg with linux-image-2.6.12 In-Reply-To: Message-ID: <20050921151418.ADF3E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13885 Ubuntu | linux gnumengor at yahoo.es changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From gnumengor at yahoo.es 2005-09-21 16:14 UTC ------- The same here. I'm using a logitech cordless optical mouse with a keyboard, connected to the usb. It worked fine since 2 days ago, when I dist-upgraded. tail -f /var/log/messages fills with kernel: [38887.754399] drivers/usb/input/hid-core.c: input irq status -75 received The keyboard is also starting to work bad... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 15:30:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 16:30:12 +0100 (BST) Subject: [Bug 14149] Acer Aspire 5024 WLMi Laptop In-Reply-To: Message-ID: <20050921153012.A340822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14149 Ubuntu (laptop) | linux ------- Additional Comments From bdaw at o2.pl 2005-09-21 16:30 UTC ------- (In reply to comment #0) > Built-in keyboard / mouse does not work. Ubunto does not find them... You need > to use USB mouse and keyboard to use Ubunto on Acer Aspire 5024 WLMi Laptop. And > it gets little lag some times, mouse start moving slower and then jumps to > another place. It's not quite true. I have Acer Aspire 5024 WLMi laptop. To have keabord working you need to disable usb legacy support in BIOS. I have installed ubuntu hoary on it. Thirst thing to do is to upgrade to kernel 2.6.11 from uni to have UDMA working - installation takes about an hour... But there are issues with battery. In 2.6.10-5 (default hoary kernel) it works ok. With 2.6.11 or 2.6.12 it doesn't (I'm usig breezy right now and dist-update every day...) Forums are full of complains for buggy Acer ACPI dsdt implementation. But it's very frustrating that 2.6.10 works fine and 2.6.11/12 not. In fact this the only thing that I need to be a happy ubuntu user is to have battery status and hibernation working (it hangs after power on). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 16:51:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 17:51:25 +0100 (BST) Subject: [Bug 13885] USB mouse freezing under Xorg with linux-image-2.6.12 In-Reply-To: Message-ID: <20050921165125.823DE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13885 Ubuntu | linux ------- Additional Comments From gnumengor at yahoo.es 2005-09-21 17:51 UTC ------- solved with ne new udev -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 17:14:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 18:14:30 +0100 (BST) Subject: [Bug 14147] ndiswrapper freezes on boot while searching In-Reply-To: Message-ID: <20050921171430.AFCC122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14147 Ubuntu | linux ------- Additional Comments From dilinger at voxel.net 2005-09-21 18:14 UTC ------- (In reply to comment #0) > After installing ndiswrapper-utils and installing the drivers, it works when > modprobe ndiswrapper. However, when the system boots up, it jams on 'Starting > Hotplug' and doesn't continue until I remove my USB Wireless device. However, if > if add ndiswrapper to /etc/modules, the system jams at 'Loading Module....' > > Running latest Breezy as of 25th August 2005 with ndiswrapper-1.1 and > ndiswrapper-1.3rc1 from Source with 2.6.12-7-686 kernel. Adaptor is D-Link > DWL-G122 USB 54gt card. Ok, considering that the usb subsystem hangs while initializing if you've got that device plugged in, this sounds like a kernel bug. Can you include the full kernel boot log (possibly in /var/log/kern.log) so we can see what's being initialized before usb? My guess is that acpi is screwing something up related to usb resources, or you've happened upon a bug within either the usb subsystem or your specific usb driver. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 17:34:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 18:34:02 +0100 (BST) Subject: [Bug 15974] New: Kernel panic w/ latest kernel version Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15974 Ubuntu | kernel-package Summary: Kernel panic w/ latest kernel version Product: Ubuntu Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: samth at ccs.neu.edu QAContact: kernel-bugs at lists.ubuntu.com With the latest version of 2.6.12-8-386, I get a kernel panic immediately on startup (before bootsplash). The error message is approximately: Syntax error: 0x and then something about killing init. This is on a Thinkpad T43. Previous versions of 2.6.12-8 worked, as does 2.6.12-7. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 17:38:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 18:38:03 +0100 (BST) Subject: [Bug 15975] New: Occasional hard lockups on T43 Thinkpad Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15975 Ubuntu | kernel-package Summary: Occasional hard lockups on T43 Thinkpad Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: samth at ccs.neu.edu QAContact: kernel-bugs at lists.ubuntu.com Occasionally, my T43 thinkpad (running latest breezy) will lock up completely. The display continues to function, but the computer is not responsive to input. The caps lock key does not toggle the caps lock light. The only thing that can be done is hold down the power key until the machine powers off, and restart. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 18:47:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 19:47:53 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050921184753.F2CBC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From em36 at columbia.edu 2005-09-21 19:47 UTC ------- A second ISO was posted on 21 Sept, with a 16h timestamp, and I used that for a completely fresh install. Exactly the same problem as before on a completely fresh install: two lines of GTM info, followed by a blank screen (gray background, not black), with a blinking cursor at the left, and total keyboard lockup. Can this be reproduced on anyone else's ThinkPad T42? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 19:11:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 20:11:15 +0100 (BST) Subject: [Bug 15983] New: Wired network lost after wake from suspend-to-RAM (ThinkPad T42) Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15983 Ubuntu | linux Summary: Wired network lost after wake from suspend-to-RAM (ThinkPad T42) Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: em36 at columbia.edu QAContact: kernel-bugs at lists.ubuntu.com Fresh install with the 21 Sept 15:42 386 ISO on a ThinkPad T42. Suspend-to-RAM seems to work (after uncommenting a line in /etc/default/acpi-support and restarting) but the wired network connection is broken after waking. This was not a problem on earlier dailies or the preview release. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 19:12:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 20:12:44 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050921191244.9C2BE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From pnewnham at yahoo.com 2005-09-21 20:12 UTC ------- I get the same error. My build history: Building SPCA5XX driver for 2.5/2.6 kernel. Remember: you must have read/write access to your kernel source tree. make -C /lib/modules/`uname -r`/build SUBDIRS=/home/ttpsn/spca5xx-20050906 CC=gcc-3.4 modules make[1]: Entering directory `/usr/src/linux-headers-2.6.12-8-686' CC [M] /home/ttpsn/spca5xx-20050906/drivers/usb/spca5xx.o CC [M] /home/ttpsn/spca5xx-20050906/drivers/usb/spcadecoder.o LD [M] /home/ttpsn/spca5xx-20050906/spca5xx.o Building modules, stage 2. MODPOST CC /home/ttpsn/spca5xx-20050906/spca5xx.mod.o LD [M] /home/ttpsn/spca5xx-20050906/spca5xx.ko make[1]: Leaving directory `/usr/src/linux-headers-2.6.12-8-686' So I don't even get the warning you mention. I am definitely using gcc-3.4.5, the same version as the kernel: >cat /proc/version Linux version 2.6.12-8-686 (buildd at terranova) (gcc version 3.4.5 20050809 (prerelease) (Debian 3.4.4-6ubuntu7)) #1 Thu Sep 15 21:32:25 UTC 2005 >gcc-3.4 -dumpversion 3.4.5 I don't get it :/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 19:57:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 20:57:50 +0100 (BST) Subject: [Bug 13187] acx_pci wireless doesn't pick up the right channel In-Reply-To: Message-ID: <20050921195750.EFFD922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13187 Ubuntu | linux mdke at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |WONTFIX ------- Additional Comments From mdke at ubuntu.com 2005-09-21 20:57 UTC ------- Closing this bug, as it's not gonna get fixed for hoary and the card isn't working in Breezy at all, so opening a new bug! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 20:02:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 21:02:51 +0100 (BST) Subject: [Bug 15986] New: acx_111 pcmcia not working Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15986 Ubuntu | linux Summary: acx_111 pcmcia not working Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: mdke at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com My acx_111 pcmcia wifi card is not working out of the box. I put it in and it appears in network-admin, but when I go to configure it, it has not picked up any of the numerous AP's nearby. No light has come on on the card, from which I deduce that the firmware isn't loaded. I'm attaching dmesg The card is a DLINK DWL-G650+ and shows up as wlan0 thanks, Matt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 20:03:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 21:03:21 +0100 (BST) Subject: [Bug 15986] acx_111 pcmcia not working In-Reply-To: Message-ID: <20050921200321.4B64D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15986 Ubuntu | linux ------- Additional Comments From mdke at ubuntu.com 2005-09-21 21:03 UTC ------- Created an attachment (id=3954) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3954&action=view) dmesg, as promised -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 20:12:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 21:12:51 +0100 (BST) Subject: [Bug 15986] acx_111 pcmcia not working In-Reply-To: Message-ID: <20050921201251.BA6C722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15986 Ubuntu | linux ------- Additional Comments From mdke at ubuntu.com 2005-09-21 21:12 UTC ------- FWIW I've tried putting the firmware from the card's CD in /lib/hotplug/firmware and naming it: 1. FwRadio16.bin (original name) 2. RADIO16.BIN 3. TIACX111.BIN In cases 1 and 3, dmesg is the same as the uploaded attachment. In case 2, it tells me this: [4303572.930000] FATAL: firmware upload: data parts at offset 60252 don't match (0xf884c6a5 vs. 0x00000000)! I/O timing issues or defective memory, with DWL-xx0+? Makefile: ACX_IO_WIDTH=16 should help. Please report! [4303572.930000] acx_write_fw (radio): 0, acx_validate_fw: 1 [4303572.930000] radio firmware upload attempt #5 FAILED, retrying... [4303573.950000] Trying to issue a command to the ACX100 but the Command Register is not IDLE (6860h) [4303573.950000] acx111_init_packet_templates: Init max packet templates [4303573.971000] Trying to issue a command to the ACX100 but the Command Register is not IDLE (6860h) [4303573.971000] acx111_init_packet_templates: packet template configuration FAILED [4303573.971000] Danger Will Robinson, MAC did not come back [4303573.971000] ACPI: PCI interrupt for device 0000:05:00.0 disabled [4303573.982000] acx_probe_pci: TI acx_pci.o: Ver 0.2.0pre8 loading FAILED [4303573.982000] acx_pci: probe of 0000:05:00.0 failed with error -5 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 20:59:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 21:59:56 +0100 (BST) Subject: [Bug 15988] New: DVD burner not recognized Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15988 Ubuntu | linux Summary: DVD burner not recognized Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: frederic.riss at gmail.com QAContact: kernel-bugs at lists.ubuntu.com When using serpentine or nautilus-cd-burner, I can't burn CDs or DVDs because it seems these tools can't find the DVD burner on my system : ncb only provides the 'write to file image' option, and serpentine displays a warning stating that it can't find a recording drive. The box is a Sony Vaio VGN-A215M laptop. The DVD burner is on hdc as the dmesg seems to imply : $ dmesg | grep hdc [4294672.170000] ide1: BM-DMA at 0xffa8-0xffaf, BIOS settings: hdc:DMA, hdd:pio [4294673.718000] hdc: SONY DVD RW DW-D56A, ATAPI CD/DVD-ROM drive [4294676.463000] hdc: ATAPI 24X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache Burning worked great with hoary. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 21:28:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 22:28:21 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050921212821.E6D7222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-21 22:28 UTC ------- How could I find out what exactly stops the system from rebooting? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 22:25:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 23:25:18 +0100 (BST) Subject: [Bug 15993] New: Please add support for the IC Plus 1000A network driver Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15993 Ubuntu | linux Summary: Please add support for the IC Plus 1000A network driver Product: Ubuntu Version: unspecified Platform: All OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: tikiwiki at garygriffin.net QAContact: kernel-bugs at lists.ubuntu.com This driver is available at http://www.icplus.com.tw/driver-pp-IP1000A.html It is currently not in Hoary or the upcoming Breezy release. This hardware is on the Abit AX8 AMD-64 mobo. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 21 22:37:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 21 Sep 2005 23:37:34 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG "ipw2200" not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050921223734.E378F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux alitawil82 at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Pro Wireless 2200BG not |Pro Wireless 2200BG |working on Hp Compaq nx9030 |"ipw2200" not working on Hp |laptop ubuntu breezy preview|Compaq nx9030 laptop ubuntu | |breezy preview ------- Additional Comments From alitawil82 at gmail.com 2005-09-21 23:37 UTC ------- (In reply to comment #3) Hi again, thanks for your reply Jani Monoses, today i went to a cafe "without mentioning brand names or else it would be a commercial ;-)" with wireless internet access and tested windows and ubuntu, the windows auto detected the network as unsecure and open, it even didnt have a wep key however the network is protected by an access page with password, the page opened in windows but didnt open in linux athough ubuntu detected the ESSID automatically and DHCP assigned the IP and Gateway "Very strange" i thought of copying the page address which was https and paste it in ubuntu firefox but didnt have time so gonna try it later, unforunetly cant obtain info on Access point hardware there. Best Regards, Ali Tawil -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 00:31:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 01:31:19 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050922003119.25FAA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ttb at tentacle.dhs.org 2005-09-22 01:31 UTC ------- For the record, below is the patch that Linus went with. Inotify users will onyl receive the IN_DELETE_SELF when the inode is actually going away. You won't get it when someone deletes the file from the filesystem. --- diff --git a/fs/dcache.c b/fs/dcache.c --- a/fs/dcache.c +++ b/fs/dcache.c @@ -102,7 +102,8 @@ static inline void dentry_iput(struct de list_del_init(&dentry->d_alias); spin_unlock(&dentry->d_lock); spin_unlock(&dcache_lock); - fsnotify_inoderemove(inode); + if (!inode->i_nlink) + fsnotify_inoderemove(inode); if (dentry->d_op && dentry->d_op->d_iput) dentry->d_op->d_iput(dentry, inode); else -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 00:54:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 01:54:44 +0100 (BST) Subject: [Bug 15828] nvidia-glx-legacy package has missing files In-Reply-To: Message-ID: <20050922005444.5EEB822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15828 Ubuntu | linux-restricted-modules bryan at reigndropsfall.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bryan at reigndropsfall.net -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:03:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:03:23 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050922010323.BEDD922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From desrt at desrt.ca 2005-09-22 02:03 UTC ------- Always last unlink() or possibly last close()? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:11:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:11:42 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050922011142.A44ED22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From dooglus at gmail.com 2005-09-22 02:11 UTC ------- Comment #42 says that you only receive the IN_DELETE_SELF when the inode is actually going away, and comment #43 says that inodes don't go away until remaining file handles are closed. Putting these 2 together tells me that the IN_DELETE_SELF will only be received when the file has no remaining links to it, and no remaining open file handles. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:34:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:34:10 +0100 (BST) Subject: [Bug 15939] MSI Neo4 FI hangs without acpi=off In-Reply-To: Message-ID: <20050922013410.C616822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15939 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Component|kernel-package |linux Summary|MSI Neo4 FI hangs after ACPI|MSI Neo4 FI hangs without |messages |acpi=off ------- Additional Comments From mdz at ubuntu.com 2005-09-22 02:34 UTC ------- Please attach the output from "sudo dmidecode", then see if there is a BIOS upgrade available for your system -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:36:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:36:49 +0100 (BST) Subject: [Bug 15940] Return from Hibernate produces error evaluating _GTM In-Reply-To: Message-ID: <20050922013649.DF16222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15940 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux Keywords| |laptop QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-22 02:36 UTC ------- This error comes from drivers/ide/ide.c:acpi_ide_suspend() status = acpi_evaluate_object(parent_handle, "_GTM", NULL, &buffer); if (ACPI_FAILURE(status)) { printk(KERN_ERR "Error evaluating _GTM\n"); return -ENODEV; } -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:38:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:38:56 +0100 (BST) Subject: [Bug 15940] acpi_ide_suspend() produces unnecessary failure message In-Reply-To: Message-ID: <20050922013856.CF50922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15940 Ubuntu (laptop) | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 Summary|Return from Hibernate |acpi_ide_suspend() produces |produces error evaluating |unnecessary failure message |_GTM | ------- Additional Comments From mjg59 at codon.org.uk 2005-09-22 02:38 UTC ------- The error is just cosmetic - there's no requirement for the hardware to provide a _GTM method. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:40:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:40:33 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050922014033.C49FE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |getaceres at gmail.com Severity|normal |major ------- Additional Comments From mdz at ubuntu.com 2005-09-22 02:40 UTC ------- Please show us the output from: sudo mii-diag eth0 under each kernel. I suspect the link state on the NIC is not being reported correctly. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:45:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:45:51 +0100 (BST) Subject: [Bug 15959] error inserting hci-usb on boot In-Reply-To: Message-ID: <20050922014551.88CC422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15959 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From mdz at ubuntu.com 2005-09-22 02:45 UTC ------- It loads fine here. Please run the following command: sudo depmod -F /boot/System.map-`uname -r` -e and show us the output. Also attach /var/log/dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:51:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:51:35 +0100 (BST) Subject: [Bug 15960] xen.postinst contains illegal sed command In-Reply-To: Message-ID: <20050922015135.4C6C622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15960 Ubuntu | kernel-package mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTWARTY ------- Additional Comments From mdz at ubuntu.com 2005-09-22 02:51 UTC ------- Bug in a newer kernel-package we haven't merged -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:55:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:55:53 +0100 (BST) Subject: [Bug 15968] battery status only with 2.6.10 kernel on acer aspire 5020 series laptops In-Reply-To: Message-ID: <20050922015553.6A5AB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15968 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC|bdaw at o2.pl |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-22 02:55 UTC ------- Does a patched DSDT fix the problem? File a separate bug about the hibernation issue. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 01:59:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 02:59:02 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050922015902.0EB4422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |maurizio.colucci at gmail.com ------- Additional Comments From mdz at ubuntu.com 2005-09-22 02:59 UTC ------- *** Bug 15973 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:01:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:01:45 +0100 (BST) Subject: [Bug 15975] Occasional hard lockups on T43 Thinkpad In-Reply-To: Message-ID: <20050922020145.9A3E922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15975 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:03:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:03:40 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922020340.7F77D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-22 03:03 UTC ------- Please attach "lspci", "lspci -n" and "dmesg" output. Please also try the Ubuntu 5.10 Preview release and see if that works for you. http://releases.ubuntu.com/5.10/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:09:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:09:26 +0100 (BST) Subject: [Bug 15983] Wired network lost after wake from suspend-to-RAM (ThinkPad T42) In-Reply-To: Message-ID: <20050922020926.B6C8922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15983 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:11:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:11:14 +0100 (BST) Subject: [Bug 15983] Wired network lost after wake from suspend-to-RAM (ThinkPad T42) In-Reply-To: Message-ID: <20050922021114.5E5D622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15983 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-22 03:11 UTC ------- Works fine here on my T42. Please show us /etc/network/interfaces; this could be bug #14536. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:11:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:11:30 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050922021130.0E56522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From ttb at tentacle.dhs.org 2005-09-22 03:11 UTC ------- dooglus is correct. It would have been nice to get an event right away. But due to hard links and locking/refcounting concerns in the kernel IN_DELETE_SELF is only useful if you want to know when an _inode_ is going away. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:16:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:16:34 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050922021634.E4A1522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major ------- Additional Comments From mdz at ubuntu.com 2005-09-22 03:16 UTC ------- This is apparently a regression from Hoary; Ben, what can we do to track it down? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:16:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:16:39 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050922021639.D5F2722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |somez at t-online.hu ------- Additional Comments From mdz at ubuntu.com 2005-09-22 03:16 UTC ------- *** Bug 14501 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:18:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:18:41 +0100 (BST) Subject: [Bug 15986] acx_111 pcmcia not working In-Reply-To: Message-ID: <20050922021841.6699A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15986 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-22 03:18 UTC ------- (In reply to comment #2) > FWIW I've tried putting the firmware from the card's CD in /lib/hotplug/firmware > and naming it: > > 1. FwRadio16.bin (original name) > 2. RADIO16.BIN > 3. TIACX111.BIN Does the firmware actually differ from the firmware we supply in /lib/hotplug/firmware by default? It's already there under those names, so you've probably clobbered the packaged versions (reinstall linux-restricted-modules to fix it) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:20:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:20:21 +0100 (BST) Subject: [Bug 15988] DVD burner not recognized In-Reply-To: Message-ID: <20050922022021.B834A22F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15988 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |martin.pitt at ubuntu.com Component|linux |UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-22 03:20 UTC ------- Do you see the burner in Device Manager? It's clearly not a kernel bug, as it's being detected OK there. See also bug #12915; make sure you've upgraded to get the fix for that. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:25:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:25:01 +0100 (BST) Subject: [Bug 14765] Ubuntu breezy linux does not halt/reboot, just gives me console root shell In-Reply-To: Message-ID: <20050922022501.37CE922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14765 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |INVALID ------- Additional Comments From mdz at ubuntu.com 2005-09-22 03:25 UTC ------- You can start with the scripts in /etc/rc?.d. Unless you're intimately familiar with how this part of the system works, though, you'd be better off reinstalling. You can try a live CD to confirm, but I'm fairly certain this won't happen in a clean environment. Feel free to reopen this if you discover that some part of Ubuntu caused this, but it seems incredibly unlikely. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:25:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:25:06 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050922022506.32F0E22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-22 03:25 UTC ------- (In reply to comment #3) > How could I find out what exactly stops the system from rebooting? Based on bug #14765, something seems incorrectly configured on your system. I would be flabbergasted if this happened on a fresh install. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:28:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:28:06 +0100 (BST) Subject: [Bug 15993] Please add support for the IC Plus 1000A network driver In-Reply-To: Message-ID: <20050922022806.EEFCB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15993 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 02:28:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 03:28:11 +0100 (BST) Subject: [Bug 15983] Wired network lost after wake from suspend-to-RAM (ThinkPad T42) In-Reply-To: Message-ID: <20050922022811.74CDA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15983 Ubuntu (laptop) | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-22 03:28 UTC ------- Broken in what way? Is the interface present? Can you manually reconfigure it? If not, what does dmesg show? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 03:58:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 04:58:52 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050922035852.4314D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux sb73542 at safe-mail.net changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From sb73542 at safe-mail.net 2005-09-22 04:58 UTC ------- Any progress on this? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 04:30:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 05:30:34 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050922043034.8F1E822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-22 05:30 UTC ------- There's a synaptics patch in the kernel upload I am doing tomorrow (2.6.12-9.14). Hopefully that will address this issue. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 04:53:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 05:53:09 +0100 (BST) Subject: [Bug 13425] [dapper] please add pwcx webcam decompressor In-Reply-To: Message-ID: <20050922045309.A38D222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13425 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 05:09:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 06:09:17 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050922050917.1115C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-22 06:09 UTC ------- (In reply to comment #9) > Any progress on this? Technically speaking the cmi8330 driver isn't broken, so this bug report should be closed. Does the 56k modem provide a jumper on-board to select an IRQ, or is it set in the BIOS? Most newer BIOSes have an Advanced PCI menu that permits to you route certain slots to certain IRQs. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 05:13:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 06:13:40 +0100 (BST) Subject: [Bug 8229] nvidia, onboard network card error In-Reply-To: Message-ID: <20050922051340.5A34322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8229 Ubuntu | linux ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-22 06:13 UTC ------- for me, it happens spasmodically, frequently triggered by reboots. some boots, I can use the forcedeth NIC, but not the yukon; others, vice versa. seems to more or less swap around every reboot. no errors are shown, just an abject failure to actually transmit or receive any packets. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 05:27:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 06:27:19 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050922052719.9510A22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-22 06:27 UTC ------- *** Bug 15976 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 05:41:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 06:41:06 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050922054106.1129722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal ------- Additional Comments From mdz at ubuntu.com 2005-09-22 06:41 UTC ------- Is ISAPNP not expected to work for this card/driver? If it works in MEPIS, we ought to be able to support it out of the box as well -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 06:40:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 07:40:38 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050922064038.25DCB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From getaceres at gmail.com 2005-09-22 07:40 UTC ------- Sorry, as my system was unusable in that state, I formatted the drive and installed kubuntu breezy configuring the network manually. I've tried then to configure it by dhcp. The problem is that it takes more than one minute to get configured so I think that the installation can't be configured because it only waits a few seconds. In Hoary it answers in less than 5 seconds but now it takes a lot of time. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 06:54:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 07:54:25 +0100 (BST) Subject: [Bug 14765] Ubuntu breezy linux does not halt/reboot, just gives me console root shell In-Reply-To: Message-ID: <20050922065425.0A20622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14765 Ubuntu | UNKNOWN ------- Additional Comments From svu at gnome.org 2005-09-22 07:54 UTC ------- I checked the 'reboot' command with strace. And it really gives the reboot syscall at some point. But nothing happens... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 07:06:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 08:06:27 +0100 (BST) Subject: [Bug 15031] ALC880 + Intel 915GM - ICH6 results in Kernel panic In-Reply-To: Message-ID: <20050922070627.7D83922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15031 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-22 08:06 UTC ------- Any updates here? There is not much going on on https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1429 ... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 07:22:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 08:22:37 +0100 (BST) Subject: [Bug 15988] DVD burner not recognized In-Reply-To: Message-ID: <20050922072237.245B822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15988 Ubuntu | UNKNOWN martin.pitt at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-22 08:22 UTC ------- Please do "lshal > lshal.txt" and attach lshal.txt here if it still does not work with the latest udev (version 0.060-1ubuntu14). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 07:43:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 08:43:47 +0100 (BST) Subject: [Bug 8745] ov511 webcam does not work In-Reply-To: Message-ID: <20050922074347.CB82122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8745 Ubuntu | linux ------- Additional Comments From gbauman at gmail.com 2005-09-22 08:43 UTC ------- I switched to Breezy recently and ov511 support is *STILL* broken, for a camera that works flawlessly on any other distro I've used. Here's the dmesg from a startup with the camera (A Creative "Webcam Go", model PD0040) connected: [4294722.255000] drivers/usb/media/ov511.c: USB OV518 video device found [4294722.257000] drivers/usb/media/ov511.c: Device revision 9 [4294722.269000] drivers/usb/media/ov511.c: Compression required with OV518...enabling [4294723.617000] drivers/usb/media/ov511.c: Sensor is an OV6630AE [4294723.821000] drivers/usb/media/ov511.c: Device at usb-0000:00:1d.0-1 registered to minor 0 [4294723.821000] usbcore: registered new driver ov511 [4294723.821000] drivers/usb/media/ov511.c: v1.64 for Linux 2.5 : ov511 USB Camera Driver All looks good. Note the line "Compression required with OV518...enabling" - this is exactly what should happen. Now, in a terminal, I type: $ cat /dev/video0 ...and receive the following error, same as on Hoary: cat: /dev/video0: Function not implemented If I check dmesg immediately after running `cat`, the following line has been added: [4311806.230000] drivers/usb/media/ov511.c: No decompressor available So despite what the initial dmesg output says, the module is getting confused somehow. The ov518_decomp module, which is present in the ov511-source package, should handle decompression of the jpeg stream. I can't verify that it works though since make-kpkg does not seem to work properly on Breezy either (gah!). I also found a forum post in which a user has the same problem, and solves it by installing the 2.2x series module: http://www.linuxquestions.org/questions/history/334689 . Hope this helps - this bug has been stale for months, and I miss my webcam. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 07:44:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 08:44:46 +0100 (BST) Subject: [Bug 13743] Hang when hotplug tries to load driver for 8139 card In-Reply-To: Message-ID: <20050922074446.968E922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13743 Ubuntu | hotplug david.wooffindin at tele2.fr changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From david.wooffindin at tele2.fr 2005-09-22 08:44 UTC ------- I have this same problem... says card isnt compatible 8319C+, try 8139too instead... it doesn't hang the boot process, but it does report this problem on boot. lsmod shows both modules are inserted once finished booting. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 08:13:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 09:13:46 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050922081346.CF3B322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From federico.tolomei at gmail.com 2005-09-22 09:13 UTC ------- Phil, you are using spca5xx-20050906. milky_cow, you are using spca5xx-spca5xx-20050701 that's the same I used until now. I got you output whit 0701 version. ASAP I'll try 20050906. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 08:25:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 09:25:51 +0100 (BST) Subject: [Bug 16011] New: Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16011 Ubuntu | kernel-package Summary: Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: scianos at speakeasy.net QAContact: kernel-bugs at lists.ubuntu.com Ubuntu 5.10 Preview experiences a system panic w/ I2O based raid controler at kernel boot after controller is detected. Current controller that this is experienced on is a Adaptec 2400a Hardware Raid (IDE). I do not have any other I2O based controllers on which to test this. 5.4 did not experience this (we currently are using it), so this must be a regression in the preview version. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 09:50:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 10:50:13 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050922095013.93F8A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-22 10:50 UTC ------- More information: 1. HedgeHog live cd really does reboot. But it uses differrent kernel (2.6.10-something) 2. When I see this root prompt, the root filesystem is mounted readonly (cannot write anything - getting the "readonly filesystem" errors). 3. strace shows the reboot syscall being performed - but still returns back to shell -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 10:01:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 11:01:35 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050922100135.4867322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils ------- Additional Comments From kevintappe at gmx.de 2005-09-22 11:01 UTC ------- I had the same problem on my IBM T43: Headphone Jack Sense AND Line Jack Sense need to be muted to make it work again. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 12:08:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 13:08:02 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050922120802.4C76A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-22 13:08 UTC ------- Afaik some sound chipsets simply won't work with PNP OS enabled in BIOS if ALSA is compiled without ISAPNP support. We can compare MEPIS's kernel config with the default Ubuntu one. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 12:16:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 13:16:53 +0100 (BST) Subject: [Bug 15986] acx_111 pcmcia not working In-Reply-To: Message-ID: <20050922121653.9BC1E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15986 Ubuntu | linux ------- Additional Comments From bersace03 at free.fr 2005-09-22 13:16 UTC ------- the version 0.3 of the driver have a very good support of acx1XX chipset (for many D-Link, NetGear WG311v2, etc.). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 12:38:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 13:38:09 +0100 (BST) Subject: [Bug 16029] New: Use later version of acx Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16029 Ubuntu | linux-restricted-modules Summary: Use later version of acx Product: Ubuntu Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: bersace03 at free.fr QAContact: kernel-bugs at lists.ubuntu.com Hello, Davis Vlasenko from acx100.sf.net have done a very good job on acx111 support. The version 0.3.10 of this driver support D-Link G650+ PCMCIA and NetGear WG311v2 PCI and many others, even with master mode (not very tested). The naming of firmware have change, this is explain in the ML : http://sourceforge.net/mailarchive/forum.php?thread_id=7908719&forum_id=31812 . The driver is now acx or acx_pci or acx_usb. No need to worry about firmware dir, it now use fully hotplug. Some success reports : http://sourceforge.net/mailarchive/forum.php?thread_id=8199566&forum_id=31812 http://sourceforge.net/mailarchive/forum.php?thread_id=8257927&forum_id=31812 http://sourceforge.net/mailarchive/forum.php?thread_id=8192118&forum_id=31812 A lot of card are with this chipset for example : WG311v1 is with prims, WG311v2 is with acx111. So this is very important to an better hardware support to handle this driver in the kernel. Note that davis have submit his driver to the kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 12:52:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 13:52:39 +0100 (BST) Subject: [Bug 2711] acpi does not give correct battery status In-Reply-To: Message-ID: <20050922125239.D7A4722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2711 Ubuntu | linux rolf.offermanns at gmx.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rolf.offermanns at gmx.net -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 13:40:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 14:40:26 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050922134026.0747F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From cjwatson at ubuntu.com 2005-09-22 14:40 UTC ------- (In reply to comment #11) > (In reply to comment #4) > > I think the sata_svw module, which is needed for the APPLE K2 SATA controler, is missing from the power4 kernel. > > I was told on IRC to use the live-powerpc64 kernel, which doesn't seem to exist on my 5.04 cd. I'll try with a newer iso next time. That advice assumed you were using Breezy, which it seems you aren't. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 13:50:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 14:50:05 +0100 (BST) Subject: [Bug 16036] New: custom DSDT patch not working anymore Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16036 Ubuntu | linux Summary: custom DSDT patch not working anymore Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: javiermon at gmail.com QAContact: kernel-bugs at lists.ubuntu.com Hi. I was using breezy upgraded from hoary on my acer aspire 1691WMLi laptop. This laptop has a buggy DSDT. In hoary I downloaded a custom DSDT from acpi.sourceforge.net, compiled it with the iasl compiler version acpica-unix-20050309. The DSDT file is the ACER-Aspire_1691WLMi-S3C11-custom. After the dsdt was compiled, I copied the output file to /etc/mkinitrd/DSDT (without extension) & did a dpkg-reconfigure linux-image-$(uname -r). After rebooting I had battery status in hoary. I did this on a fresh hoary install. A few months later I upgraded to breezy. I still had my battery status. I have the gnome-battery applet which worked & read my battery status. After the udev (13) package came in breezy things in my laptop began to work bad, I tried to fix them but since I screw somethings I decided to download the breezy preview & did a fresh install. I've now upgraded all packages. After that I tried to apply my custom DSDT file which worked with my previous breezy upgrade & did the exact same procedure to install it but it doesn't work. The gnome-battery applet doesn't detect when I'm using the battery. Any ideas why this was working this morning before my decision to do a fresh install & now it doesn't? I've searched the bugzilla but all bugs related are closed & fixed. I'm using the 686 kernel. Some output: javier at A1691:/proc/acpi$ ls ac_adapter button event info sleep video alarm dsdt fadt power_resource sony wakeup battery embedded_controller fan processor thermal_zone javier at A1691:/proc/acpi/battery/BAT1$ cat info present: yes design capacity: 4400 mAh last full capacity: 3933 mAh battery technology: rechargeable design voltage: 14800 mV design capacity warning: 300 mAh design capacity low: 132 mAh capacity granularity 1: 32 mAh capacity granularity 2: 32 mAh model number: ZL01 serial number: 1235 battery type: LION OEM info: SANYO javier at A1691:/proc/acpi/battery/BAT1$ cat state present: yes ERROR: Unable to read battery status javier at A1691:~$ uname -ar Linux A1691 2.6.12-8-686 #1 Thu Sep 15 21:32:25 UTC 2005 i686 GNU/Linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 13:51:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 14:51:05 +0100 (BST) Subject: [Bug 16036] custom DSDT patch not working anymore In-Reply-To: Message-ID: <20050922135105.EFF6722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16036 Ubuntu | linux ------- Additional Comments From javiermon at gmail.com 2005-09-22 14:51 UTC ------- Created an attachment (id=3972) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3972&action=view) dmesg > dmesg.txt dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 13:53:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 14:53:46 +0100 (BST) Subject: [Bug 16011] Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid In-Reply-To: Message-ID: <20050922135346.5AB9122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16011 Ubuntu | kernel-package ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 Priority|P2 |P1 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-22 14:53 UTC ------- Can't guarantee that this will get fixed for breezy, but since it's a regression I'm pushing it to P1 in the hopes that it will get fixed. Please could you send me the actual kernel panic? Taking a picture with a digital camera will suffice. Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 13:57:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 14:57:11 +0100 (BST) Subject: [Bug 16036] custom DSDT patch not working anymore In-Reply-To: Message-ID: <20050922135711.0D13322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16036 Ubuntu | linux ------- Additional Comments From javiermon at gmail.com 2005-09-22 14:57 UTC ------- (In reply to comment #1) > Created an attachment (id=3972) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3972&action=view) [edit] > dmesg > dmesg.txt > > dmesg output I'm getting this errors in my /var/log/messages & syslog: Sep 22 11:49:11 localhost kernel: [4295660.162000] ACPI-0362: *** Error: Looking up [Z00B] in namespace, AE_NOT_FOUND Sep 22 11:49:11 localhost kernel: [4295660.162000] search_node dfe62f00 start_node dfe62f00 return_node 00000000 Sep 22 11:49:11 localhost kernel: [4295660.162000] ACPI-0508: *** Error: Method execution failed [\_SB_.BAT1._BST] (Node dfe62e00), AE_NOT_FOUND Sep 22 11:49:41 localhost kernel: [4295690.168000] ACPI-0362: *** Error: Looking up [Z00B] in namespace, AE_NOT_FOUND Sep 22 11:49:41 localhost kernel: [4295690.168000] search_node dfe62f00 start_node dfe62f00 return_node 00000000 Sep 22 11:49:41 localhost kernel: [4295690.168000] ACPI-0508: *** Error: Method execution failed [\_SB_.BAT1._BST] (Node dfe62e00), AE_NOT_FOUND Sep 22 11:50:11 localhost kernel: [4295720.173000] ACPI-0362: *** Error: Looking up [Z00B] in namespace, AE_NOT_FOUND Sep 22 11:50:11 localhost kernel: [4295720.173000] search_node dfe62f00 start_node dfe62f00 return_node 00000000 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 14:01:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 15:01:06 +0100 (BST) Subject: [Bug 16036] custom DSDT patch not working anymore In-Reply-To: Message-ID: <20050922140106.8599222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16036 Ubuntu | linux ------- Additional Comments From javiermon at gmail.com 2005-09-22 15:01 UTC ------- Created an attachment (id=3973) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3973&action=view) /boot/grub/menu.lst -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 14:04:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 15:04:00 +0100 (BST) Subject: [Bug 15476] laptop won't boot without acpi=off In-Reply-To: Message-ID: <20050922140400.8EAB122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15476 Ubuntu (laptop) | linux ------- Additional Comments From javiermon at gmail.com 2005-09-22 15:04 UTC ------- (In reply to comment #1) > Hi > > I have an acer aspire 1691WMli (DDR). This laptop has a buggy DSDT. The breezy > colony & preview live & install cd's won't boot > without the kernel parameter acpi=off. After patching the DSDT with the custom > version in acpi.sourceforge.net I can boot with some acpi support, but I have to > include the kernel parameter noapic. I've recently reinstalled the breezy preview & my laptop boots with noapic option, so feel free to remove this bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 14:05:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 15:05:10 +0100 (BST) Subject: [Bug 13535] Kernel does not search for DSDT in initramfs In-Reply-To: Message-ID: <20050922140510.546BC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13535 Ubuntu | linux debian at oursours.net changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |javiermon at gmail.com ------- Additional Comments From debian at oursours.net 2005-09-22 15:05 UTC ------- *** Bug 16036 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 14:46:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 15:46:23 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer REQUIRES vga=771 to function In-Reply-To: Message-ID: <20050922144623.6BEC822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-22 15:46 UTC ------- Mmm.. Is there another way to force a text-mode install, other than VGA=771? If so, then the title of this bug could be changed to say REQUIRES text mode installer or something like that. Because VGA=771 screws up the Linux VGA console modes later on. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:07:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:07:04 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050922150704.7DF5422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From em36 at columbia.edu 2005-09-22 16:07 UTC ------- Same problem with totally clean install on daily ISO 22 Sept - blank gray screen with blinking cursor after waking from hibernation. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:11:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:11:05 +0100 (BST) Subject: [Bug 15959] error inserting hci-usb on boot In-Reply-To: Message-ID: <20050922151105.1E4FF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15959 Ubuntu | linux ------- Additional Comments From jane.silber at canonical.com 2005-09-22 16:11 UTC ------- Created an attachment (id=3975) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3975&action=view) log Well, this doesn't happen any more. Maybe it got fixed along the way (I update regularly), but now I get new errors on booting (amixer, will look for that bug next). So this may not be a real bug, but if it helps, the cmd you requested didn't seem to work. Output is: jane at peyton:/boot$ sudo depmod -F /boot/System.map-`uname -r` -e WARNING: /lib/modules/2.6.10-2-386/kernel/drivers/media/video/saa7134/saa7134-dvb.ko needs unknown symbol videobuf_dvb_unregister WARNING: /lib/modules/2.6.10-2-386/kernel/drivers/media/video/saa7134/saa7134-dvb.ko needs unknown symbol videobuf_dvb_register I also attached /var/log/dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:13:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:13:10 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922151310.9C63E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From Sajjad_Khaliq at yahoo.com 2005-09-22 16:13 UTC ------- Created an attachment (id=3976) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3976&action=view) lspci, lspci -n and dmesg output from IBM T22 Thinkpad This is the output for lspci, lspci -n and dmesg as requested by Ben Collins. Note: Unbuntu 5.10 has also been tried, and the same issue was experienced i.e. onboard Ethernet adaptor of IBM T22 Thinkpad was not detected. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:20:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:20:12 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050922152012.C0E9F22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Breezy 5.10 Preview |Breezy 5.10 Preview |installer REQUIRES vga=771 |installer requires vga=771 |to function |to function on ATI X300 ------- Additional Comments From cjwatson at ubuntu.com 2005-09-22 16:20 UTC ------- vga=771 doesn't force text mode; it requests a different framebuffer mode. To disable the framebuffer altogether, boot with debian-installer/framebuffer=false, as documented in the help screen available on F8 when booting the CD (but that breaks support for many languages, which is why it is not the default). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:22:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:22:03 +0100 (BST) Subject: [Bug 16046] New: Processor sometimes locked at 800 Mhz, random, both with and without powernowd Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16046 Ubuntu | linux-meta Summary: Processor sometimes locked at 800 Mhz, random, both with and without powernowd Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-meta AssignedTo: debzilla at ubuntu.com ReportedBy: ernstp at gmail.com QAContact: kernel-bugs at lists.ubuntu.com Sometimes when I boot, the processor is locked at 800 MHz. This bascially has two scenarios. Powernowd enabled: Sometimes when I boot, the processor is stuck in 800 MHz. CPU frequency scaling is enabled, all three states (800, 1800 and 2000) are avaliable, but powernowd won't switch between them. Usually observing this with gnome-cpufreq-applet. This is really random. You can boot, be without the problem, reboot, have the problem, reboot again, and it's gone. I blamed powernowd for this first, and filed a bug in which I wrote that it was hard to disable powernowd and removing it left me at 800 MHz. But this is probably just a second case of the same bug. Because after rebooting with powernowd disabled a few times, the processor actually stuck at 2 GHz. Where could this bug be? And of cource, how to solve? Since the bug appears randomly I can't give readouts of everything right now, but I'll try to reproduce it! Breezy Badger. ernstp at zapp:~$ more /proc/cpuinfo processor : 0 vendor_id : AuthenticAMD cpu family : 15 model : 4 model name : AMD Athlon(tm) 64 Processor 3200+ stepping : 8 cpu MHz : 2005.635 cache size : 1024 KB fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 1 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 syscall nx mmxext lm 3dnowext 3dnow bogomips : 3973.12 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:23:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:23:37 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050922152337.2384722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-22 16:23 UTC ------- Does your system use LVM? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:34:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:34:27 +0100 (BST) Subject: [Bug 16046] Processor sometimes locked at 800 Mhz, random, both with and without powernowd In-Reply-To: Message-ID: <20050922153427.D3F5E22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16046 Ubuntu | linux-meta ernstp at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk ------- Additional Comments From ernstp at gmail.com 2005-09-22 16:34 UTC ------- >If you remove the start link, powernowd is never run. If powernowd is never run, >powernowd cannot be responsible for setting your CPU frequency to 800MHz. Mmmhm, I realize that it's more complicated than that. >If >your system is starting at 800MHz, then that's either a Linux or BIOS issue, not >one in powernowd. It's possible that your BIOS starts your system at 800MHz, and >your Gentoo kernel has the cpufreq module built in statically - in that case, it >would probably raise your system to full speed. Yeah, my Gentoo kernel has cpufreq statically, and gives me 2 GHz with no powernowd. Yes, I don't think it's powernowd issue. I belive I have the latest BIOS, it's been updated at least once. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:38:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:38:07 +0100 (BST) Subject: [Bug 16047] New: madwifi deadlock patch available and probably needed Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16047 Ubuntu | linux-restricted-modules Summary: madwifi deadlock patch available and probably needed Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: hegbloom at pdx.edu QAContact: kernel-bugs at lists.ubuntu.com Please see: http://sourceforge.net/mailarchive/forum.php?thread_id=8178193&forum_id=33966 That patch is probably needed for the Madwifi in this package. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 15:52:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 16:52:20 +0100 (BST) Subject: [Bug 16046] Processor sometimes locked at 800 Mhz, random, both with and without powernowd In-Reply-To: Message-ID: <20050922155220.09FB022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16046 Ubuntu | linux-meta ------- Additional Comments From mjg59 at codon.org.uk 2005-09-22 16:52 UTC ------- Ok. What CPU is this? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 16:02:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 17:02:24 +0100 (BST) Subject: [Bug 15796] Wireless on Toshiba Tecra A4 Crashy In-Reply-To: Message-ID: <20050922160224.1FDA222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15796 Ubuntu | linux gtaylor at clemson.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |blocker ------- Additional Comments From gtaylor at clemson.edu 2005-09-22 17:02 UTC ------- Failure of Marvell Yukon fixes and now an even more broken ipw2200 driver have caused this to completely render this laptop cut off from the outside world. The installer no longer detects it and runs it, booting into an existing recently updated install gets me about 5 seconds of connectivity before being dropped, and there's just nothing I can do. Setting status to blocker since I am quite effectively...blocked from doing much right now :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 16:33:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 17:33:03 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050922163303.0A57A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From em36 at columbia.edu 2005-09-22 17:33 UTC ------- No LVM. Just ordinary ATA hard disks. One detail: I use two hard disks, hda (IDE1) has Windows, hdc (IDE2) has Ubuntu and is in the second hard disk adapter (goes in the same slot where the CD normally goes). The system is set to boot from the 2nd hard disk (hdc) if present. After installing grub to /dev/hdc1, I have to revise /boot/grub/menu.lst so that the first line reads: root (hd0,0) instead root (hd1,0). This was not a problem at all with Hoary (hibernation and sleep worked perfectly on the identical setup), but I'm mentioning it in case it affects Breezy in some obscure way. Details here: http://www.columbia.edu/~em36/ubuntuhoarythinkpadt42.html#secondhdd -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 16:35:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 17:35:16 +0100 (BST) Subject: [Bug 13425] [dapper] please add pwcx webcam decompressor In-Reply-To: Message-ID: <20050922163516.EA35B22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13425 Ubuntu | linux-restricted-modules ------- Additional Comments From joerg.unglaub at gmail.com 2005-09-22 17:35 UTC ------- (In reply to comment #5) > Just a note on this bug, as per bug #14964, the pwc driver in the kernel is being updated to 10.0.8. I believe > the binary only decompressor is supposed to work with this version of the pwc module. OK 10.0.8 works somehow only partly gnomemeeting works xawtv nope zapping nope -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 16:43:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 17:43:51 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922164351.1E73E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |scott-bugs at ubuntu.com ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-22 17:43 UTC ------- This should be a 3c59x: syndicate scott% grep v000010B7d00006056 /lib/modules/2.6.12-8-686/modules.alias alias pci:v000010B7d00006056sv*sd*bc*sc*i* 3c59x And that module is being loaded: 3c59x: Donald Becker and others. www.scyld.com/network/vortex.html 0000:00:03.0: 3Com PCI 3c556B Laptop Hurricane at 0x1400. Vers LK1.1.19 PCI: Setting latency timer of device 0000:00:03.0 to 64 *** EEPROM MAC address is invalid. 3c59x: vortex_probe1 fails. Returns -22 3c59x: probe of 0000:00:03.0 failed with error -22 The problem seems to be that the EEPROM on your card has an invalid MAC address. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 17:14:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 18:14:25 +0100 (BST) Subject: [Bug 15988] DVD burner not recognized In-Reply-To: Message-ID: <20050922171425.DCEC722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15988 Ubuntu | UNKNOWN ------- Additional Comments From frederic.riss at gmail.com 2005-09-22 18:14 UTC ------- I initially put the bug under the kernel product because I saw the problem in 2 userland tools. I can see the DVD drive in hal-device-manager. I'll attach the lshal output to this bug. My system is fully up to date and thus running udev 0.060-1ubuntu14. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 17:16:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 18:16:01 +0100 (BST) Subject: [Bug 15988] DVD burner not recognized In-Reply-To: Message-ID: <20050922171601.CD09922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15988 Ubuntu | UNKNOWN ------- Additional Comments From frederic.riss at gmail.com 2005-09-22 18:16 UTC ------- Created an attachment (id=3980) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3980&action=view) Output of lshal -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 17:32:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 18:32:48 +0100 (BST) Subject: [Bug 16060] New: Channel sticks in 5.10 preview Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16060 Ubuntu | linux Summary: Channel sticks in 5.10 preview Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: web250 at optonline.net QAContact: kernel-bugs at lists.ubuntu.com With correct set-up (works in 5.04). Wintv Model 401 tunes a channel, but the channel cannot ne changed. Ruled out program (does same thing in tvtime and xawtv). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 17:51:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 18:51:21 +0100 (BST) Subject: [Bug 16060] Channel sticks in 5.10 preview In-Reply-To: Message-ID: <20050922175121.2E55822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16060 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-22 18:51 UTC ------- Can you provide lspci -vvn and lspci -vv output please? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 17:53:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 18:53:14 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922175314.B7AD622F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From Sajjad_Khaliq at yahoo.com 2005-09-22 18:53 UTC ------- (In reply to comment #3) > *** EEPROM MAC address is invalid. > 3c59x: vortex_probe1 fails. Returns -22 > 3c59x: probe of 0000:00:03.0 failed with error -22 > The problem seems to be that the EEPROM on your card has an invalid MAC address. The laptop was previously running Windows 2000 and also Windows XP, and the internal Ethernet interface worked fine. Why would only Linux detect the MAC address of the internal Ethernet interface, as being invalid? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 18:14:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 19:14:46 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922181446.0CCA922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-22 19:14 UTC ------- Reading the kernel source, the MAC on your network card is either FF:FF:FF:FF:FF:FF or 00:00:00:00:00:00 ... I'd guess that Windows is overwriting it with a valid one. Google suggests that disabling "wake on lan" in your BIOS might solve the issue. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 18:17:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 19:17:21 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922181721.B045B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-22 19:17 UTC ------- If that doesn't solve it (or it's already off) another suggestion is to boot with acpi=off on the kernel command line (in the grub menu, press "e" on the boot option, then "e" on the second line and add acpi=off to the end). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 18:19:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 19:19:31 +0100 (BST) Subject: [Bug 16060] Channel sticks in 5.10 preview In-Reply-To: Message-ID: <20050922181931.B0D03303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16060 Ubuntu | linux ------- Additional Comments From web250 at optonline.net 2005-09-22 19:19 UTC ------- (In reply to comment #0) > With correct set-up (works in 5.04). Wintv Model 401 tunes a channel, but the > channel cannot ne changed. Ruled out program (does same thing in tvtime and xawtv). (In reply to comment #1) > Can you provide lspci -vvn and lspci -vv output please? lspci -vv: 0000:00:00.0 Host bridge: nVidia Corporation nForce2 AGP (different version?) (r ev c1) Subsystem: ABIT Computer Corp.: Unknown device 1c00 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Step ping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- Reset- FastB2B- 0000:00:09.0 IDE interface: nVidia Corporation nForce2 IDE (rev a2) (prog-if 8a [Master SecP PriP]) Subsystem: ABIT Computer Corp.: Unknown device 1c00 Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Step ping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- Reset- FastB2B- 0000:01:09.0 Multimedia video controller: Conexant Winfast TV2000 XP (rev 05) Subsystem: Hauppauge computer works Inc.: Unknown device 3401 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Step ping- SERR- FastB2B- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- Reset- FastB2B- 0000:00:09.0 0101: 10de:0065 (rev a2) (prog-if 8a [Master SecP PriP]) Subsystem: 147b:1c00 Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- SERR- TAbort- SERR- TAbort- SERR- Reset- FastB2B- 0000:01:09.0 0400: 14f1:8800 (rev 05) Subsystem: 0070:3401 Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- Message-ID: <20050922182119.D495422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- URL| |https://bugzilla.redhat.com/ | |bugzilla/show_bug.cgi?id=158 | |725 ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-22 19:21 UTC ------- Added link to equivalent bug in RedHat which has all sorts of juicy information about cards that are still asleep when the machine is booting. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 18:31:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 19:31:32 +0100 (BST) Subject: [Bug 15983] Wired network lost after wake from suspend-to-RAM (ThinkPad T42) In-Reply-To: Message-ID: <20050922183132.72F8122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15983 Ubuntu (laptop) | linux em36 at columbia.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From em36 at columbia.edu 2005-09-22 19:31 UTC ------- (In reply to comment #2) > Broken in what way? Is the interface present? Can you manually reconfigure it? > If not, what does dmesg show? Bug no longer occurs in 22 September daily build. I've marked as fixed. (Still unable to wake from hibernation, but that's a separate bug, 1588. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 18:37:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 19:37:48 +0100 (BST) Subject: [Bug 16005] radeonfb broken on ATI with exotic laptop lcd In-Reply-To: Message-ID: <20050922183748.5601A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16005 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mjg59 at codon.org.uk |ben.collins at ubuntu.com Component|usplash |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Framebuffer broken on ATI |radeonfb broken on ATI with |with exotic laptop lcd |exotic laptop lcd ------- Additional Comments From mdz at ubuntu.com 2005-09-22 19:37 UTC ------- FWIW, radeonfb is known not to work correctly on a variety of hardware, and will also prevent suspend/resume from working correctly. If you want usplash, vga16fb is the only reasonable option at the moment (which is why it uses that by default). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 18:38:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 19:38:01 +0100 (BST) Subject: [Bug 16005] radeonfb broken on ATI with exotic laptop lcd In-Reply-To: Message-ID: <20050922183801.CC08422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16005 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P2 |P5 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 18:58:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 19:58:55 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050922185855.1482222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-22 19:58 UTC ------- (In reply to comment #7) > Sorry, as my system was unusable in that state, I formatted the drive and > installed kubuntu breezy configuring the network manually. Please provide the requested information anyway, at least for the Breezy kernel; there seems to be a bug here and we need details. > I've tried then to configure it by dhcp. The problem is that it takes more than > one minute to get configured so I think that the installation can't be > configured because it only waits a few seconds. In Hoary it answers in less than > 5 seconds but now it takes a lot of time. Please attach /var/log/installer/syslog from your installed system. I assume you did a default install, saw the network configuration timeout, and then entered your parameters manually when prompted? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:02:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:02:19 +0100 (BST) Subject: [Bug 15988] DVD burner not recognized In-Reply-To: Message-ID: <20050922190219.40B3322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15988 Ubuntu | UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-22 20:02 UTC ------- Did you reboot since installing udev 0.060-1ubuntu14? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:10:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:10:27 +0100 (BST) Subject: [Bug 13743] Hang when hotplug tries to load driver for 8139 card In-Reply-To: Message-ID: <20050922191027.CEFF522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13743 Ubuntu | hotplug ------- Additional Comments From mdz at ubuntu.com 2005-09-22 20:10 UTC ------- (In reply to comment #6) > I have this same problem... says card isnt compatible 8319C+, try 8139too instead... > it doesn't hang the boot process, but it does report this problem on boot. > lsmod shows both modules are inserted once finished booting. > That is normal and expected. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:20:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:20:03 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050922192003.A92B222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From getaceres at gmail.com 2005-09-22 20:20 UTC ------- This is the output: jose at ubuntu:~$ sudo mii-diag eth0 Password: Basic registers of MII PHY #24: 1100 182d 0000 0000 0061 0020 c000 0000. Basic mode control register 0x1100: Auto-negotiation enabled. You have link beat, and everything is working OK. Your link partner is generating 10baseT link beat (no autonegotiation). End of basic transceiver information. The /var/log/installer/syslog is attached in the following message. I made some installations: On the first I got the DHCP timeot but in the next screen I selected to retry giving the IP direction of the DHCP server and it worked. The problem is that, after rebooting the network was not configured again. Then I upgraded the system and I got the udev breakage of yesterday. In the next install, I got the timeout again but this time, when prompted, I selected to configure the network manually. This time it worked and after rebooting my configuration was saved and I got connection with the network. Today, that time in the network config dialog, I selected DHCP in the configuration only to prove what happens. The result is that it took more than one minute to reboot the network card with the new configuration, but in the end, it worked. Anyway, due to the delay of DHCP I configured the network again manually and it took a few seconds to reboot the network card. That delay didn't happen in Hoary or Debian Sid, so It's not a server problem, but a client problem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:24:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:24:21 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050922192421.2D7D622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From getaceres at gmail.com 2005-09-22 20:24 UTC ------- Created an attachment (id=3982) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3982&action=view) The /var/log/installer/syslog file -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:28:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:28:36 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050922192836.8EA1722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From getaceres at gmail.com 2005-09-22 20:28 UTC ------- (From update of attachment 3982) In that installation, after the DHCP timeout I configured it manually putting my IP address when prompted by the installer. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:31:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:31:37 +0100 (BST) Subject: [Bug 16011] Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid In-Reply-To: Message-ID: <20050922193137.82F0822F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16011 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:50:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:50:24 +0100 (BST) Subject: [Bug 16023] Unable to mount install CD (isofs errors?) In-Reply-To: Message-ID: <20050922195024.AD51C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16023 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|normal |major Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Live-CD-install of 5.10 |Unable to mount install CD |claims not to find the Live-|(isofs errors?) |CD after Kernel is loaded | ------- Additional Comments From mdz at ubuntu.com 2005-09-22 20:50 UTC ------- Sounds somewhat like bug #14996. Please attach dmesg and /var/log/syslog from the live CD boot -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:54:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:54:08 +0100 (BST) Subject: [Bug 16029] Use later version of acx In-Reply-To: Message-ID: <20050922195408.E6C7722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16029 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |ben.collins at ubuntu.com Severity|normal |enhancement Component|linux-restricted-modules |linux Target Milestone|--- |Ubuntu 6.04 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:56:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:56:54 +0100 (BST) Subject: [Bug 16035] failed to start X on breezy preview liveCD (G5) In-Reply-To: Message-ID: <20050922195654.974C722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16035 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|normal |major Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-22 20:56 UTC ------- Attach /var/log/Xorg.0.log and /etc/X11/xorg.conf from the failed start -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 19:58:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 20:58:03 +0100 (BST) Subject: [Bug 13535] Kernel does not search for DSDT in initramfs In-Reply-To: Message-ID: <20050922195803.8CF0C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13535 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-22 20:58 UTC ------- Is this documented in the release notes yet? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:03:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:03:12 +0100 (BST) Subject: [Bug 15959] error inserting hci-usb on boot In-Reply-To: Message-ID: <20050922200312.5EEF222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15959 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |WORKSFORME ------- Additional Comments From mdz at ubuntu.com 2005-09-22 21:03 UTC ------- (In reply to comment #2) > Created an attachment (id=3975) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3975&action=view) [edit] > log > > Well, this doesn't happen any more. Maybe it got fixed along the way (I update > regularly), but now I get new errors on booting (amixer, will look for that bug > next). > > So this may not be a real bug, but if it helps, the cmd you requested didn't > seem to work. Output is: > > jane at peyton:/boot$ sudo depmod -F /boot/System.map-`uname -r` -e > WARNING: > /lib/modules/2.6.10-2-386/kernel/drivers/media/video/saa7134/saa7134-dvb.ko > needs unknown symbol videobuf_dvb_unregister > WARNING: > /lib/modules/2.6.10-2-386/kernel/drivers/media/video/saa7134/saa7134-dvb.ko > needs unknown symbol videobuf_dvb_register > > I also attached /var/log/dmesg You're running an ancient kernel, older than the one which shipped with Hoary. Install the "linux" package to get the current kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:07:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:07:13 +0100 (BST) Subject: [Bug 16046] Processor sometimes locked at 800 Mhz, random, both with and without powernowd In-Reply-To: Message-ID: <20050922200713.871AB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16046 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|linux-meta |linux ------- Additional Comments From mdz at ubuntu.com 2005-09-22 21:07 UTC ------- (In reply to comment #1) > >If you remove the start link, powernowd is never run. If powernowd is never run, > >powernowd cannot be responsible for setting your CPU frequency to 800MHz. > > Mmmhm, I realize that it's more complicated than that. Furthermore, the Ubuntu kernel itself won't change your CPU frequency, so this isn't a kernel problem either. The only possible bug I see here is that there is a vague problem around the CPU frequency changes initiated by powernowd. Please elaborate on that. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:07:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:07:41 +0100 (BST) Subject: [Bug 16005] radeonfb broken on ATI with exotic laptop lcd In-Reply-To: Message-ID: <20050922200741.6324022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16005 Ubuntu | linux ------- Additional Comments From tolgam at homegnu.net 2005-09-22 21:07 UTC ------- (In reply to comment #2) > FWIW, radeonfb is known not to work correctly on a variety of hardware, and will > also prevent suspend/resume from working correctly. If you want usplash, > vga16fb is the only reasonable option at the moment (which is why it uses that > by default). Actually, vga16fb doesn't work either and this is what i tried to use radeonfb. Forgot two to say two things that may help solving the bug : * Once xorg is started, when going on a terminal (crtl + alt +FX), everything is fine. Maybe thanks to a video ram reset or something ? * radeonfb was ok while using hoary -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:08:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:08:34 +0100 (BST) Subject: [Bug 16047] Potential deadlock when the connection to the AP is lost? In-Reply-To: Message-ID: <20050922200834.DEB4922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16047 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|madwifi deadlock patch |Potential deadlock when the |available and probably |connection to the AP is |needed |lost? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:08:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:08:56 +0100 (BST) Subject: [Bug 15796] Wireless on Toshiba Tecra A4 Crashy In-Reply-To: Message-ID: <20050922200856.0F0AC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15796 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|blocker |major -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:12:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:12:23 +0100 (BST) Subject: [Bug 16060] Channel sticks in 5.10 preview In-Reply-To: Message-ID: <20050922201223.270EC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16060 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-22 21:12 UTC ------- Which tuner module are you using, and do you pass it any parameters? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:16:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:16:37 +0100 (BST) Subject: [Bug 16060] Channel sticks in 5.10 preview In-Reply-To: Message-ID: <20050922201637.A855A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16060 Ubuntu | linux ------- Additional Comments From web250 at optonline.net 2005-09-22 21:16 UTC ------- (In reply to comment #3) > Which tuner module are you using, and do you pass it any parameters? I'm using the cx88xx module (cx88). No parameters are being passed. The same exact setup in hoary works, but it doesnt in breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:16:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:16:41 +0100 (BST) Subject: [Bug 16069] USB keyboard disapears, need to unplug/replug (in breezy) In-Reply-To: Message-ID: <20050922201641.0387A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16069 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-22 21:16 UTC ------- Please attach complete dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:22:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:22:37 +0100 (BST) Subject: [Bug 16069] USB keyboard disapears, need to unplug/replug (in breezy) In-Reply-To: Message-ID: <20050922202237.9AE7422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16069 Ubuntu | linux ------- Additional Comments From marc.poulhies at epfl.ch 2005-09-22 21:22 UTC ------- Created an attachment (id=3985) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3985&action=view) dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:24:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:24:07 +0100 (BST) Subject: [Bug 16069] USB keyboard disapears, need to unplug/replug (in breezy) In-Reply-To: Message-ID: <20050922202407.1807722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16069 Ubuntu | linux ------- Additional Comments From marc.poulhies at epfl.ch 2005-09-22 21:24 UTC ------- Created an attachment (id=3986) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=3986&action=view) syslog attaching syslog output as dmesg is too short and is missing some boot messages. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:31:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:31:22 +0100 (BST) Subject: [Bug 14147] ndiswrapper freezes on boot while searching In-Reply-To: Message-ID: <20050922203122.4B10222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14147 Ubuntu | linux spayne at evolutioncolt.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |critical ------- Additional Comments From spayne at evolutioncolt.com 2005-09-22 21:31 UTC ------- My /var/log/kern.log: Sep 22 21:21:13 amarillo kernel: Inspecting /boot/System.map-2.6.12-8-686 Sep 22 21:21:13 amarillo kernel: Loaded 28222 symbols from /boot/System.map-2.6.12-8-686. Sep 22 21:21:13 amarillo kernel: Symbols match kernel version 2.6.12. Sep 22 21:21:13 amarillo kernel: No module symbols loaded - kernel modules not enabled. Sep 22 21:21:13 amarillo kernel: upt Link [LNK0] (IRQs 5 7 10 *11) Sep 22 21:21:13 amarillo kernel: [4294668.115000] ACPI: PCI Interrupt Link [LNK1] (IRQs 5 7 *10 11) Sep 22 21:21:13 amarillo kernel: [4294668.116000] ACPI: PCI Interrupt Link [LNK2] (IRQs 5 7 10 *11) Sep 22 21:21:13 amarillo kernel: [4294668.116000] ACPI: PCI Interrupt Link [LNK3] (IRQs *5 7 10 11) Sep 22 21:21:13 amarillo kernel: [4294668.117000] ACPI: Embedded Controller [EC0] (gpe 7) Sep 22 21:21:13 amarillo kernel: [4294668.126000] ACPI: Power Resource [PUT2] (on) Sep 22 21:21:13 amarillo kernel: [4294668.126000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P2P_._PRT] Sep 22 21:21:14 amarillo kernel: [4294668.127000] ACPI: Power Resource [PFA1] (off) Sep 22 21:21:14 amarillo kernel: [4294668.127000] Linux Plug and Play Support v0.97 (c) Adam Belay Sep 22 21:21:14 amarillo kernel: [4294668.127000] pnp: PnP ACPI init Sep 22 21:21:14 amarillo kernel: [4294668.130000] pnp: PnP ACPI: found 11 devices Sep 22 21:21:14 amarillo kernel: [4294668.130000] PnPBIOS: Disabled by ACPI PNP Sep 22 21:21:14 amarillo kernel: [4294668.131000] PCI: Using ACPI for IRQ routing Sep 22 21:21:14 amarillo kernel: [4294668.131000] PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report Sep 22 21:21:14 amarillo kernel: [4294668.133000] pnp: 00:06: ioport range 0x200-0x20f has been reserved Sep 22 21:21:14 amarillo kernel: [4294668.133000] pnp: 00:06: ioport range 0x280-0x29f has been reserved Sep 22 21:21:14 amarillo kernel: [4294668.133000] pnp: 00:06: ioport range 0x40b-0x40b has been reserved Sep 22 21:21:14 amarillo kernel: [4294668.133000] Simple Boot Flag at 0x37 set to 0x1 Sep 22 21:21:14 amarillo kernel: [4294668.134000] audit: initializing netlink socket (disabled) Sep 22 21:21:14 amarillo kernel: [4294668.134000] audit: initialized Sep 22 21:21:14 amarillo kernel: [4294668.134000] VFS: Disk quotas dquot_6.5.1 Sep 22 21:21:14 amarillo kernel: [4294668.134000] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) Sep 22 21:21:14 amarillo kernel: [4294668.134000] devfs: 2004-01-31 Richard Gooch (rgooch at atnf.csiro.au) Sep 22 21:21:14 amarillo kernel: [4294668.134000] devfs: boot_options: 0x0 Sep 22 21:21:14 amarillo kernel: [4294668.134000] Initializing Cryptographic API Sep 22 21:21:14 amarillo kernel: [4294668.134000] isapnp: Scanning for PnP cards... Sep 22 21:21:14 amarillo kernel: [4294668.487000] isapnp: No Plug & Play device found Sep 22 21:21:14 amarillo kernel: [4294668.519000] PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 Sep 22 21:21:14 amarillo kernel: [4294668.522000] serio: i8042 AUX port at 0x60,0x64 irq 12 Sep 22 21:21:14 amarillo kernel: [4294668.522000] serio: i8042 KBD port at 0x60,0x64 irq 1 Sep 22 21:21:14 amarillo kernel: [4294668.522000] Serial: 8250/16550 driver $Revision: 1.90 $ 48 ports, IRQ sharing enabled Sep 22 21:21:14 amarillo kernel: [4294668.523000] ttyS2 at I/O 0x3e8 (irq = 4) is a 16550A Sep 22 21:21:14 amarillo kernel: [4294668.526000] ACPI: PCI Interrupt 0000:00:14.6[B] -> GSI 17 (level, low) -> IRQ 17 Sep 22 21:21:14 amarillo kernel: [4294668.526000] ACPI: PCI interrupt for device 0000:00:14.6 disabled Sep 22 21:21:14 amarillo kernel: [4294668.526000] io scheduler noop registered Sep 22 21:21:14 amarillo kernel: [4294668.526000] io scheduler anticipatory registered Sep 22 21:21:14 amarillo kernel: [4294668.526000] io scheduler deadline registered Sep 22 21:21:14 amarillo kernel: [4294668.526000] io scheduler cfq registered Sep 22 21:21:14 amarillo kernel: [4294668.526000] RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize Sep 22 21:21:14 amarillo kernel: [4294668.526000] NET: Registered protocol family 2 Sep 22 21:21:14 amarillo kernel: [4294668.536000] IP: routing cache hash table of 8192 buckets, 64Kbytes Sep 22 21:21:14 amarillo kernel: [4294668.536000] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) Sep 22 21:21:14 amarillo kernel: [4294668.538000] TCP bind hash table entries: 65536 (order: 6, 262144 bytes) Sep 22 21:21:14 amarillo kernel: [4294668.538000] TCP: Hash tables configured (established 131072 bind 65536) Sep 22 21:21:14 amarillo kernel: [4294668.539000] NET: Registered protocol family 8 Sep 22 21:21:14 amarillo kernel: [4294668.539000] NET: Registered protocol family 20 Sep 22 21:21:14 amarillo kernel: [4294668.539000] ACPI wakeup devices: Sep 22 21:21:14 amarillo kernel: [4294668.539000] LID USB0 USB1 USB2 MC97 P2P LAN0 Sep 22 21:21:14 amarillo kernel: [4294668.539000] ACPI: (supports S0 S3 S4 S5) Sep 22 21:21:14 amarillo kernel: [4294668.539000] Freeing unused kernel memory: 168k freed Sep 22 21:21:14 amarillo kernel: [4294668.558000] input: AT Translated Set 2 keyboard on isa0060/serio0 Sep 22 21:21:14 amarillo kernel: [4294668.575000] Capability LSM initialized Sep 22 21:21:14 amarillo kernel: [4294668.592000] NET: Registered protocol family 1 Sep 22 21:21:14 amarillo kernel: [4294668.617000] usbcore: registered new driver usbfs Sep 22 21:21:14 amarillo kernel: [4294668.617000] usbcore: registered new driver hub Sep 22 21:21:14 amarillo kernel: [4294668.618000] ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI) Sep 22 21:21:14 amarillo kernel: [4294668.618000] ACPI: PCI Interrupt 0000:00:13.0[A] -> GSI 19 (level, low) -> IRQ 19 Sep 22 21:21:14 amarillo kernel: [4294668.618000] ohci_hcd 0000:00:13.0: ATI Technologies Inc OHCI USB Controller #1 Sep 22 21:21:14 amarillo kernel: [4294668.618000] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 1 Sep 22 21:21:14 amarillo kernel: [4294668.618000] ohci_hcd 0000:00:13.0: irq 19, io mem 0xf0001000 Sep 22 21:21:14 amarillo kernel: [4294668.633000] hub 1-0:1.0: USB hub found Sep 22 21:21:14 amarillo kernel: [4294668.633000] hub 1-0:1.0: 3 ports detected Sep 22 21:21:14 amarillo kernel: [4294668.638000] ACPI: PCI Interrupt 0000:00:13.1[A] -> GSI 19 (level, low) -> IRQ 19 Sep 22 21:21:14 amarillo kernel: [4294668.638000] ohci_hcd 0000:00:13.1: ATI Technologies Inc OHCI USB Controller #2 Sep 22 21:21:14 amarillo kernel: [4294668.638000] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 2 Sep 22 21:21:14 amarillo kernel: [4294668.638000] ohci_hcd 0000:00:13.1: irq 19, io mem 0xf0002000 Sep 22 21:21:14 amarillo kernel: [4294668.693000] hub 2-0:1.0: USB hub found Sep 22 21:21:14 amarillo kernel: [4294668.693000] hub 2-0:1.0: 3 ports detected Sep 22 21:21:14 amarillo kernel: [4294668.714000] PCI: Enabling device 0000:00:13.2 (0000 -> 0002) Sep 22 21:21:14 amarillo kernel: [4294668.714000] ACPI: PCI Interrupt 0000:00:13.2[A] -> GSI 19 (level, low) -> IRQ 19 Sep 22 21:21:14 amarillo kernel: [4294668.714000] ehci_hcd 0000:00:13.2: ATI Technologies Inc EHCI USB Controller Sep 22 21:21:14 amarillo kernel: [4294668.714000] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 3 Sep 22 21:21:14 amarillo kernel: [4294668.714000] ehci_hcd 0000:00:13.2: irq 19, io mem 0x2c000000 Sep 22 21:21:14 amarillo kernel: [4294668.714000] ehci_hcd 0000:00:13.2: USB 2.0 initialized, EHCI 1.00, driver 10 Dec 2004 Sep 22 21:21:14 amarillo kernel: [4294668.714000] hub 3-0:1.0: USB hub found Sep 22 21:21:14 amarillo kernel: [4294668.714000] hub 3-0:1.0: 6 ports detected Sep 22 21:21:14 amarillo kernel: [4294668.752000] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 Sep 22 21:21:14 amarillo kernel: [4294668.752000] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx Sep 22 21:21:14 amarillo kernel: [4294668.752000] ACPI: bus type ide registered Sep 22 21:21:14 amarillo kernel: [4294668.806000] 8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004) Sep 22 21:21:14 amarillo kernel: [4294668.806000] 8139cp: pci dev 0000:02:07.0 (id 10ec:8139 rev 10) is not an 8139C+ compatible chip Sep 22 21:21:14 amarillo kernel: [4294668.806000] 8139cp: Try the "8139too" driver instead. Sep 22 21:21:14 amarillo kernel: [4294668.808000] 8139too Fast Ethernet driver 0.9.27 Sep 22 21:21:14 amarillo kernel: [4294668.808000] ACPI: PCI Interrupt 0000:02:07.0[A] -> GSI 18 (level, low) -> IRQ 18 Sep 22 21:21:14 amarillo kernel: [4294668.808000] eth0: RealTek RTL8139 at 0xa000, 00:a0:d1:b8:1a:7a, IRQ 18 Sep 22 21:21:14 amarillo kernel: [4294668.808000] eth0: Identified 8139 chip type 'RTL-8100B/8139D' Sep 22 21:21:14 amarillo kernel: [4294668.989000] usb 3-3: new high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294670.852000] ATIIXP: IDE controller at PCI slot 0000:00:14.1 Sep 22 21:21:14 amarillo kernel: [4294670.852000] ACPI: PCI Interrupt 0000:00:14.1[A] -> GSI 16 (level, low) -> IRQ 16 Sep 22 21:21:14 amarillo kernel: [4294670.852000] ATIIXP: chipset revision 0 Sep 22 21:21:14 amarillo kernel: [4294670.852000] ATIIXP: not 100%% native mode: will probe irqs later Sep 22 21:21:14 amarillo kernel: [4294670.852000] ide0: BM-DMA at 0x8070-0x8077, BIOS settings: hda:DMA, hdb:pio Sep 22 21:21:14 amarillo kernel: [4294670.852000] ide1: BM-DMA at 0x8078-0x807f, BIOS settings: hdc:DMA, hdd:pio Sep 22 21:21:14 amarillo kernel: [4294670.852000] Probing IDE interface ide0... Sep 22 21:21:14 amarillo kernel: [4294671.167000] hda: FUJITSU MHT2040AT, ATA DISK drive Sep 22 21:21:14 amarillo kernel: [4294671.780000] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 Sep 22 21:21:14 amarillo kernel: [4294671.780000] Probing IDE interface ide1... Sep 22 21:21:14 amarillo kernel: [4294672.452000] hdc: MATSHITADVD-RAM UJ-820S, ATAPI CD/DVD-ROM drive Sep 22 21:21:14 amarillo kernel: [4294672.758000] ide1 at 0x170-0x177,0x376 on irq 15 Sep 22 21:21:14 amarillo kernel: [4294672.758000] ide2: I/O resource 0x3EE-0x3EE not free. Sep 22 21:21:14 amarillo kernel: [4294672.758000] ide2: ports already in use, skipping probe Sep 22 21:21:14 amarillo kernel: [4294672.758000] Probing IDE interface ide3... Sep 22 21:21:14 amarillo kernel: [4294673.271000] Probing IDE interface ide4... Sep 22 21:21:14 amarillo kernel: [4294673.784000] Probing IDE interface ide5... Sep 22 21:21:14 amarillo kernel: [4294674.300000] hda: max request size: 128KiB Sep 22 21:21:14 amarillo kernel: [4294674.365000] hda: 78140160 sectors (40007 MB) w/2048KiB Cache, CHS=65535/16/63, UDMA(100) Sep 22 21:21:14 amarillo kernel: [4294674.367000] hda: cache flushes supported Sep 22 21:21:14 amarillo kernel: [4294674.367000] /dev/ide/host0/bus0/target0/lun0: p1 p2 < p5 > Sep 22 21:21:14 amarillo kernel: [4294674.410000] hdc: ATAPI 24X DVD-ROM DVD-R-RAM CD-R/RW drive, 2048kB Cache Sep 22 21:21:14 amarillo kernel: [4294674.410000] Uniform CD-ROM driver Revision: 3.20 Sep 22 21:21:14 amarillo kernel: [4294674.962000] ACPI: Fan [FAN1] (off) Sep 22 21:21:14 amarillo kernel: [4294674.965000] ACPI: CPU0 (power states: C1[C1] C2[C2]) Sep 22 21:21:14 amarillo kernel: [4294674.996000] ACPI: Thermal Zone [THZN] (46 C) Sep 22 21:21:14 amarillo kernel: [4294675.108000] Attempting manual resume Sep 22 21:21:14 amarillo kernel: [4294675.135000] swsusp: Suspend partition has wrong signature? Sep 22 21:21:14 amarillo kernel: [4294675.169000] kjournald starting. Commit interval 5 seconds Sep 22 21:21:14 amarillo kernel: [4294675.169000] EXT3-fs: mounted filesystem with ordered data mode. Sep 22 21:21:14 amarillo kernel: [4294677.211000] md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27 Sep 22 21:21:14 amarillo kernel: [4294681.247000] Adding 1622524k swap on /dev/hda5. Priority:-1 extents:1 Sep 22 21:21:14 amarillo kernel: [4294681.472000] EXT3 FS on hda1, internal journal Sep 22 21:21:14 amarillo kernel: [4294690.170000] parport: PnPBIOS parport detected. Sep 22 21:21:14 amarillo kernel: [4294690.170000] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] Sep 22 21:21:14 amarillo kernel: [4294690.255000] lp0: using parport0 (interrupt-driven). Sep 22 21:21:14 amarillo kernel: [4294690.270000] mice: PS/2 mouse device common for all mice Sep 22 21:21:14 amarillo kernel: [4294690.299000] ieee1394: Initialized config rom entry `ip1394' Sep 22 21:21:14 amarillo kernel: [4294690.304000] SCSI subsystem initialized Sep 22 21:21:14 amarillo kernel: [4294690.307000] sbp2: $Rev: 1219 $ Ben Collins Sep 22 21:21:14 amarillo kernel: [4294690.332000] ndiswrapper version 1.1 loaded (preempt=no,smp=no) Sep 22 21:21:14 amarillo kernel: [4294690.413000] ndiswrapper: driver netrtusb (D-Link,04/01/2004, 1.00.00.0000) loaded Sep 22 21:21:14 amarillo kernel: [4294690.586000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294690.844000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294690.982000] Synaptics Touchpad, model: 1, fw: 5.9, id: 0xa56eb1, caps: 0x804713/0x0 Sep 22 21:21:14 amarillo kernel: [4294690.986000] input: SynPS/2 Synaptics TouchPad on isa0060/serio1 Sep 22 21:21:14 amarillo kernel: [4294691.102000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294691.360000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294691.618000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294691.876000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294692.134000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294692.392000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294692.650000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294692.908000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294693.166000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294693.424000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294693.682000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294693.940000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294694.198000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294694.456000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294694.714000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294694.972000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294695.230000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294695.488000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294695.746000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294696.004000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294696.262000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294696.520000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294696.778000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294697.036000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294697.294000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294697.552000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294697.810000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294698.068000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294698.326000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294698.584000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294698.842000] usb 3-3: reset high speed USB device using ehci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294699.242000] ndiswrapper (usb_reset_port:633): usb_reset_device() = -19 Sep 22 21:21:14 amarillo kernel: [4294699.242000] ndiswrapper (usb_reset_port:633): usb_reset_device() = -22 Sep 22 21:21:14 amarillo kernel: [4294699.242000] ndiswrapper (ndiswrapper_add_one_usb_dev:312): Windows driver couldn't initialize the device (C0000001) Sep 22 21:21:14 amarillo kernel: [4294699.242000] ndiswrapper: probe of 3-3:1.0 failed with error -22 Sep 22 21:21:14 amarillo kernel: [4294699.242000] usbcore: registered new driver ndiswrapper Sep 22 21:21:14 amarillo kernel: [4294699.242000] usb 3-3: USB disconnect, address 2 Sep 22 21:21:14 amarillo kernel: [4294700.805000] hub 3-0:1.0: connect-debounce failed, port 3 disabled Sep 22 21:21:14 amarillo kernel: [4294700.805000] hub 3-0:1.0: over-current change on port 2 Sep 22 21:21:14 amarillo kernel: [4294701.003000] usb 1-3: new full speed USB device using ohci_hcd and address 2 Sep 22 21:21:14 amarillo kernel: [4294701.137000] usb 1-3: not running at top speed; connect to a high speed hub Sep 22 21:21:14 amarillo kernel: [4294701.545000] device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel at redhat.com Sep 22 21:21:14 amarillo kernel: [4294702.391000] cdrom: open failed. Sep 22 21:21:14 amarillo kernel: [4294704.807000] Linux agpgart interface v0.101 (c) Dave Jones Sep 22 21:21:14 amarillo kernel: [4294704.820000] agpgart: Detected Ati IGP7000/M chipset Sep 22 21:21:14 amarillo kernel: [4294704.841000] agpgart: AGP aperture is 64M @ 0xb0000000 Sep 22 21:21:14 amarillo kernel: [4294704.954000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 Sep 22 21:21:14 amarillo kernel: [4294704.965000] wlan0: ndiswrapper ethernet device 00:11:95:8d:36:a7 using driver netrtusb, configuration file 2001:3C00.0.conf Sep 22 21:21:14 amarillo kernel: [4294704.969000] shpchp: acpi_shpchprm:\_SB_.PCI0 evaluate _BBN fail=0x5 Sep 22 21:21:14 amarillo kernel: [4294704.969000] shpchp: acpi_shpchprm:get_device PCI ROOT HID fail=0x5 Sep 22 21:21:14 amarillo kernel: [4294705.074000] wlan0: encryption modes supported: WEP, WPA with TKIP, WPA with AES/CCMP Sep 22 21:21:14 amarillo kernel: [4294705.658000] ACPI: PCI Interrupt 0000:00:14.5[B] -> GSI 17 (level, low) -> IRQ 17 Sep 22 21:21:14 amarillo kernel: [4294705.659000] atiixp: codec reset timeout Sep 22 21:21:14 amarillo kernel: [4294706.818000] ACPI: PCI Interrupt 0000:00:14.6[B] -> GSI 17 (level, low) -> IRQ 17 Sep 22 21:21:14 amarillo kernel: [4294707.094000] Linux Kernel Card Services Sep 22 21:21:14 amarillo kernel: [4294707.094000] options: [pci] [cardbus] [pm] Sep 22 21:21:14 amarillo kernel: [4294707.114000] ACPI: PCI Interrupt 0000:02:06.0[A] -> GSI 19 (level, low) -> IRQ 19 Sep 22 21:21:14 amarillo kernel: [4294707.114000] Yenta: CardBus bridge found at 0000:02:06.0 [1179:ff10] Sep 22 21:21:14 amarillo kernel: [4294707.114000] Yenta: Enabling burst memory read transactions Sep 22 21:21:14 amarillo kernel: [4294707.114000] Yenta: Using CSCINT to route CSC interrupts to PCI Sep 22 21:21:14 amarillo kernel: [4294707.114000] Yenta: Routing CardBus interrupts to PCI Sep 22 21:21:14 amarillo kernel: [4294707.114000] Yenta TI: socket 0000:02:06.0, mfunc 0x01111122, devctl 0x64 Sep 22 21:21:14 amarillo kernel: [4294707.335000] Yenta: ISA IRQ mask 0x0c78, PCI irq 19 Sep 22 21:21:14 amarillo kernel: [4294707.335000] Socket status: 30000006 Sep 22 21:21:14 amarillo kernel: [4294707.336000] ndiswrapper (usb_submit_nt_urb:612): usb_reset_pipe() = -110 Sep 22 21:21:14 amarillo kernel: [4294707.542000] ndiswrapper (usb_reset_port:633): usb_reset_device() = -19 Sep 22 21:21:14 amarillo kernel: [4294707.589000] usb 1-3: USB disconnect, address 2 Sep 22 21:21:14 amarillo kernel: [4294707.597000] ndiswrapper: device wlan0 removed Sep 22 21:21:14 amarillo kernel: [4294707.618000] ohci1394: $Rev: 1250 $ Ben Collins Sep 22 21:21:14 amarillo kernel: [4294707.618000] ACPI: PCI Interrupt 0000:02:0a.0[A] -> GSI 19 (level, low) -> IRQ 19 Sep 22 21:21:14 amarillo kernel: [4294707.676000] ohci1394: fw-host0: OHCI-1394 1.1 (PCI): IRQ=[19] MMIO=[d0000000-d00007ff] Max Packet=[2048] Sep 22 21:21:14 amarillo kernel: [4294708.939000] ieee1394: Host added: ID:BUS[0-00:1023] GUID[00080da0d1b81a7a] Sep 22 21:21:14 amarillo kernel: [4294708.985000] hub 3-0:1.0: over-current change on port 2 Sep 22 21:21:14 amarillo kernel: [4294709.154000] Real Time Clock Driver v1.12 Sep 22 21:21:14 amarillo kernel: [4294709.172000] usb 3-3: new high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294709.245000] input: PC Speaker Sep 22 21:21:14 amarillo kernel: [4294709.587000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294709.845000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294709.888000] ts: Compaq touchscreen protocol output Sep 22 21:21:14 amarillo kernel: [4294710.105000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294710.363000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294710.642000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294710.900000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294711.019000] eth0: link down Sep 22 21:21:14 amarillo kernel: [4294711.118000] NET: Registered protocol family 17 Sep 22 21:21:14 amarillo kernel: [4294711.158000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294711.416000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294711.676000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294711.936000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294712.194000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294712.308000] ACPI: AC Adapter [AC] (off-line) Sep 22 21:21:14 amarillo kernel: [4294712.373000] ACPI: Battery Slot [BAT1] (battery present) Sep 22 21:21:14 amarillo kernel: [4294712.399000] ACPI: Power Button (FF) [PWRF] Sep 22 21:21:14 amarillo kernel: [4294712.399000] ACPI: Lid Switch [LID] Sep 22 21:21:14 amarillo kernel: [4294712.399000] ACPI: Power Button (CM) [PWRB] Sep 22 21:21:14 amarillo kernel: [4294712.454000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:21:14 amarillo kernel: [4294712.503000] Using specific hotkey driver Sep 22 21:21:14 amarillo kernel: [4294712.551000] ibm_acpi: ec object not found Sep 22 21:21:16 amarillo kernel: [4294715.815000] wlan0: ndiswrapper ethernet device 00:11:95:8d:36:a7 using driver netrtusb, configuration file 2001:3C00.0.conf Sep 22 21:21:16 amarillo kernel: [4294715.815000] wlan0: encryption modes supported: WEP, WPA with TKIP, WPA with AES/CCMP Sep 22 21:21:19 amarillo kernel: [4294718.830000] [drm] Initialized drm 1.0.0 20040925 Sep 22 21:21:19 amarillo kernel: [4294718.834000] ACPI: PCI Interrupt 0000:01:05.0[A] -> GSI 16 (level, low) -> IRQ 16 Sep 22 21:21:19 amarillo kernel: [4294718.837000] [drm] Initialized radeon 1.16.0 20050311 on minor 0: ATI Technologies Inc Radeon Mobility 7000 IGP Sep 22 21:21:19 amarillo kernel: [4294718.838000] agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0. Sep 22 21:21:19 amarillo kernel: [4294718.838000] agpgart: Putting AGP V2 device at 0000:00:00.0 into 4x mode Sep 22 21:21:19 amarillo kernel: [4294718.838000] agpgart: Putting AGP V2 device at 0000:01:05.0 into 4x mode Sep 22 21:21:24 amarillo kernel: [4294724.264000] apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac) Sep 22 21:21:24 amarillo kernel: [4294724.264000] apm: overridden by ACPI. Sep 22 21:21:25 amarillo kernel: [4294725.170000] cs: IO port probe 0x100-0x4ff: excluding 0x220-0x227 0x300-0x307 0x310-0x317 0x4d0-0x4d7 Sep 22 21:21:25 amarillo kernel: [4294725.172000] cs: IO port probe 0xc00-0xcf7: excluding 0xc00-0xc07 0xc10-0xc17 0xc50-0xc57 0xc68-0xc6f 0xcd0-0xcd7 Sep 22 21:21:25 amarillo kernel: [4294725.173000] cs: IO port probe 0xa00-0xaff: clean. Sep 22 21:21:26 amarillo kernel: [4294725.654000] Bluetooth: Core ver 2.7 Sep 22 21:21:26 amarillo kernel: [4294725.654000] NET: Registered protocol family 31 Sep 22 21:21:26 amarillo kernel: [4294725.654000] Bluetooth: HCI device and connection manager initialized Sep 22 21:21:26 amarillo kernel: [4294725.654000] Bluetooth: HCI socket layer initialized Sep 22 21:21:26 amarillo kernel: [4294725.671000] Bluetooth: L2CAP ver 2.7 Sep 22 21:21:26 amarillo kernel: [4294725.671000] Bluetooth: L2CAP socket layer initialized Sep 22 21:21:26 amarillo kernel: [4294725.741000] Bluetooth: RFCOMM ver 1.5 Sep 22 21:21:26 amarillo kernel: [4294725.741000] Bluetooth: RFCOMM socket layer initialized Sep 22 21:21:26 amarillo kernel: [4294725.741000] Bluetooth: RFCOMM TTY layer initialized Sep 22 21:21:28 amarillo kernel: [4294728.204000] hdc: drive_cmd: status=0x51 { DriveReady SeekComplete Error } Sep 22 21:21:28 amarillo kernel: [4294728.204000] hdc: drive_cmd: error=0x04 { AbortedCommand } Sep 22 21:21:28 amarillo kernel: [4294728.204000] ide: failed opcode was: 0xe3 Sep 22 21:21:33 amarillo kernel: [4294732.420000] NET: Registered protocol family 10 Sep 22 21:21:33 amarillo kernel: [4294732.420000] Disabled Privacy Extensions on device c031eb40(lo) Sep 22 21:21:33 amarillo kernel: [4294732.421000] IPv6 over IPv4 tunneling driver Sep 22 21:21:43 amarillo kernel: [4294743.329000] eth0: no IPv6 routers present Sep 22 21:22:32 amarillo kernel: [4294792.174000] ndiswrapper (usb_submit_nt_urb:612): usb_reset_pipe() = -71 Sep 22 21:22:32 amarillo kernel: [4294792.237000] usb 3-3: reset high speed USB device using ehci_hcd and address 3 Sep 22 21:22:33 amarillo kernel: [4294792.413000] ndiswrapper (usb_submit_nt_urb:612): usb_reset_pipe() = -71 Sep 22 21:22:33 amarillo kernel: [4294792.819000] ndiswrapper (usb_reset_port:633): usb_reset_device() = -19 Sep 22 21:22:33 amarillo kernel: [4294792.819000] usb 3-3: USB disconnect, address 3 Sep 22 21:22:33 amarillo kernel: [4294792.826000] ndiswrapper: device wlan0 removed Sep 22 21:22:35 amarillo kernel: [4294794.447000] hub 3-0:1.0: connect-debounce failed, port 3 disabled Sep 22 21:22:36 amarillo kernel: [4294795.485000] hub 3-0:1.0: over-current change on port 2 Sep 22 21:22:36 amarillo kernel: [4294795.815000] usb 1-3: new full speed USB device using ohci_hcd and address 3 Sep 22 21:22:36 amarillo kernel: [4294795.892000] usb 1-3: device descriptor read/64, error -110 Sep 22 21:22:36 amarillo kernel: [4294796.129000] usb 1-3: not running at top speed; connect to a high speed hub Sep 22 21:22:40 amarillo kernel: [4294799.951000] wlan0: ndiswrapper ethernet device 00:11:95:8d:36:a7 using driver netrtusb, configuration file 2001:3C00.0.conf Sep 22 21:22:40 amarillo kernel: [4294800.060000] wlan0: encryption modes supported: WEP, WPA with TKIP, WPA with AES/CCMP Sep 22 21:23:08 amarillo kernel: [4294827.849000] eth0: link down Sep 22 21:23:13 amarillo kernel: [4294833.388000] wlan0: no IPv6 routers present Sep 22 21:23:18 amarillo kernel: [4294838.271000] eth0: no IPv6 routers present Sep 22 21:25:04 amarillo kernel: [4294943.679000] ndiswrapper (usb_submit_nt_urb:612): usb_reset_pipe() = -110 Sep 22 21:25:05 amarillo kernel: [4294944.419000] usb 1 As you said, I suspect this is a problem with USB and hotplug but I hope this is some help. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:49:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:49:52 +0100 (BST) Subject: [Bug 15988] DVD burner not recognized In-Reply-To: Message-ID: <20050922204952.808CB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15988 Ubuntu | UNKNOWN ------- Additional Comments From frederic.riss at gmail.com 2005-09-22 21:49 UTC ------- Yes, the system has been rebooted. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:51:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:51:54 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922205154.C496522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From Sajjad_Khaliq at yahoo.com 2005-09-22 21:51 UTC ------- (In reply to comment #5) > Reading the kernel source, the MAC on your network card is either > FF:FF:FF:FF:FF:FF or 00:00:00:00:00:00 ... I'd guess that Windows is overwriting > it with a valid one. BIOS shows the MAC on internal network interface as 00 01 03 82 EE 3A Can this actual MAC address be supplied to the OS through a configuration file? > Google suggests that disabling "wake on lan" in your BIOS might solve the issue. Disabled Wake on LAN, as well as other options e.g. Flash over LAN, but internal Network interface is still not detected in Connections, under Network settings. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:55:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:55:17 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922205517.63A6E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-22 21:55 UTC ------- (In reply to comment #8) > (In reply to comment #5) > > > Reading the kernel source, the MAC on your network card is either > > FF:FF:FF:FF:FF:FF or 00:00:00:00:00:00 ... I'd guess that Windows is overwriting > > it with a valid one. > > BIOS shows the MAC on internal network interface as 00 01 03 82 EE 3A > > Can this actual MAC address be supplied to the OS through a configuration file? > That's not the problem; from reading other bug reports elsewhere, your card *does* have a MAC address, just your machine has a busted ACPI configuration that isn't bringing the card up correctly. It works in Windows because they cheat and ignore the BIOS entirely, as they're lucky enough to get test models for every single piece of hardware out there so can just hard-code the fix into the driver. > > Google suggests that disabling "wake on lan" in your BIOS might solve the issue. > > Disabled Wake on LAN, as well as other options e.g. Flash over LAN, but internal Network > interface is still not detected in Connections, under Network settings. > Try booting with acpi=off Cc'ing Matthew Garrett who *loves* this kind of thing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 20:58:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 21:58:56 +0100 (BST) Subject: [Bug 7031] kernel does not properly reactivate LCD panel on lid close/open In-Reply-To: Message-ID: <20050922205856.7A04A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7031 Ubuntu | linux ------- Additional Comments From sh at warma.dk 2005-09-22 21:58 UTC ------- Just wanted to mention that this problem still exists in Breezy. Going into suspend and resuming again fixes it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 21:00:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 22:00:03 +0100 (BST) Subject: [Bug 14147] ndiswrapper freezes on boot while searching In-Reply-To: Message-ID: <20050922210003.E5CE922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14147 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|critical |normal Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From mdz at ubuntu.com 2005-09-22 22:00 UTC ------- Please test with the latest kernel in Breezy (2.6.12-8.13, with -8.14 on the way) and the ndiswrapper driver shipped by Ubuntu, rather than the one you built from source. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 21:04:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 22:04:09 +0100 (BST) Subject: [Bug 14147] ndiswrapper freezes on boot while searching In-Reply-To: Message-ID: <20050922210409.3B86B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14147 Ubuntu | linux ------- Additional Comments From spayne at evolutioncolt.com 2005-09-22 22:04 UTC ------- This is the latest kernel and the normal Ubuntu ndiswrapper-utils package. I have been trying for two months on a vareity of different packages but still no luck. Kernel is 2.6.12-8-686 from 22nd September. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 21:05:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 22:05:09 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922210509.A571D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From Sajjad_Khaliq at yahoo.com 2005-09-22 22:05 UTC ------- (In reply to comment #9) > Try booting with acpi=off Tried Booting with acpi=off, but Internal NIC still not showing in Connections under Network settings. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 21:30:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 22:30:44 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050922213044.2B58B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From pnewnham at yahoo.com 2005-09-22 22:30 UTC ------- I've just tried using 0701 and I got the same error using insmod, but tried "make install" and then "sudo modprobe spca5xx" anyway and it seemed to work... at least, gqcam can see the cam (now that I did "sudo ln /dev/video0 /dev/video") but amsn still doesn't work... back to the amsn webpages to solve that one, I think. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 22:26:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 23:26:08 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050922222608.B845122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-22 23:26 UTC ------- Can you try with the noapic kernel option? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 22:28:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 23:28:45 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050922222845.B176E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Alias| |deb328685 ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-22 23:28 UTC ------- Attach the Debian bug (this might actually work now ) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 22:36:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 23:36:33 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050922223633.71DF722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From debzilla at ubuntu.com 2005-09-22 23:36 UTC ------- Message-ID: <21556.1126900081 at olgas.newt.com> Date: Fri, 16 Sep 2005 12:48:01 -0700 From: Bill Wohler To: md at Linux.IT (Marco d'Itri) cc: 328685 at bugs.debian.org Subject: Re: Bug#328685: udev: main: action, subsystem or devpath missing Marco d'Itri wrote: > > If the problem lies in another package, would you be so kind as to > > refile it for me? > reassign 328685 linux-2.6 Marco, gracie mille. -- Bill Wohler http://www.newt.com/wohler/ GnuPG ID:610BD9AD Maintainer of comp.mail.mh FAQ and MH-E. Vote Libertarian! If you're passed on the right, you're in the wrong lane. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 22:36:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 22 Sep 2005 23:36:32 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050922223632.8A02922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From debzilla at ubuntu.com 2005-09-22 23:36 UTC ------- Message-ID: <18805.1126894922 at olgas.newt.com> Date: Fri, 16 Sep 2005 11:22:02 -0700 From: Bill Wohler To: Debian Bug Tracking System Subject: udev: main: action, subsystem or devpath missing Package: udev Version: 0.068-2 Severity: normal With my recent upgrade from sarge to etch, I began getting the following syslog message: udev[1135]: main: action, subsystem or devpath missing It seems to be related to one of my USB devices--my wireless keyboard/mouse which does have a USB dongle. If the problem lies in another package, would you be so kind as to refile it for me? Here is the syslog output when I unplug my wireless keyboard/mouse USB dongle: Sep 16 11:13:45 olgas kernel: usb 2-1: USB disconnect, address 2 Sep 16 11:13:45 olgas udev[18382]: main: action, subsystem or devpath missing Sep 16 11:13:46 olgas udev[18392]: main: action, subsystem or devpath missing Here is the syslog output when I plug it back in: Sep 16 11:15:17 olgas kernel: usb 2-1: new low speed USB device using uhci_hcd and address 3 Sep 16 11:15:17 olgas kernel: input: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.1-1 Sep 16 11:15:17 olgas udev[18496]: main: action, subsystem or devpath missing Sep 16 11:15:17 olgas kernel: input: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:1d.1-1 Sep 16 11:15:17 olgas udev[18514]: main: action, subsystem or devpath missing Sep 16 11:15:21 olgas usb.agent[18557]: usbhid: already loaded Sep 16 11:15:22 olgas usb.agent[18572]: usbhid: already loaded Sep 16 11:15:23 olgas input.agent[18639]: evdev: already loaded Sep 16 11:15:23 olgas input.agent[18657]: evdev: already loaded Sep 16 11:15:23 olgas input.agent[18651]: evdev: already loaded Sep 16 11:15:23 olgas input.agent[18661]: evdev: already loaded -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (600, 'testing'), (80, 'unstable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.12-1-686 Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) (ignored: LC_ALL set to en_US) Versions of packages udev depends on: ii hotplug 0.0.20040329-25 Linux Hotplug Scripts ii initscripts 2.86.ds1-2 Standard scripts needed for bootin ii libc6 2.3.5-6 GNU C Library: Shared libraries an ii libselinux1 1.24-4 SELinux shared libraries ii lsb-base 3.0-5 Linux Standard Base 3.0 init scrip ii makedev 2.3.1-78 creates device files in /dev ii sed 4.1.4-4 The GNU sed stream editor udev recommends no packages. -- no debconf information -- Bill Wohler http://www.newt.com/wohler/ GnuPG ID:610BD9AD Maintainer of comp.mail.mh FAQ and MH-E. Vote Libertarian! If you're passed on the right, you're in the wrong lane. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 22 23:59:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 00:59:44 +0100 (BST) Subject: [Bug 15801] new restricted modules package in breezy breaks madwifi In-Reply-To: Message-ID: <20050922235944.279D922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15801 Ubuntu | linux-restricted-modules pbeeson at cs.utexas.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From pbeeson at cs.utexas.edu 2005-09-23 00:59 UTC ------- This is fixed. I don't know if it as the updated restricted-modules package, but upon rebotting into the 2.6.12 kernel, madwifi now no longer complains. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 01:33:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 02:33:09 +0100 (BST) Subject: [Bug 15888] Hibernation fails on Thinkpad T42 (Breezy w/latest updates) In-Reply-To: Message-ID: <20050923013309.D87D922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15888 Ubuntu (laptop) | linux ------- Additional Comments From em36 at columbia.edu 2005-09-23 02:33 UTC ------- Still not fixed with kernel 2.6.12-9-386, unfortunately. I did regenerate initramfs as specified above. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 02:01:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 03:01:03 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050923020103.066C322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From Sajjad_Khaliq at yahoo.com 2005-09-23 03:01 UTC ------- (In reply to comment #11) > Can you try with the noapic kernel option? Tried Kernel boot with "boot napic". It did not make a difference. The onboard Ethernet NIC still not detected, -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 02:30:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 03:30:51 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050923023051.4585D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From zulcss at gmail.com 2005-09-23 03:30 UTC ------- Please see this article: http://www.mail-archive.com/linux-kernel at vger.kernel.org/msg78894.html but this patch already made it into 2.6.12 by examining the source. So not sure whats going on. I had to put in my two cents. :) chuck -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 02:50:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 03:50:16 +0100 (BST) Subject: [Bug 11644] Wireless stops working In-Reply-To: Message-ID: <20050923025016.1AECC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11644 Ubuntu | linux ------- Additional Comments From lists at whitehouse.org.nz 2005-09-23 03:50 UTC ------- I believe that the network stopping is a dupe of bug 7782 - the error is an unrelated (but reported) bug, Bug 5248 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 02:52:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 03:52:46 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050923025246.C16EE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From sb73542 at safe-mail.net 2005-09-23 03:52 UTC ------- So ISAPnP is disabled altogether in Ubuntu right now? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 02:54:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 03:54:36 +0100 (BST) Subject: [Bug 9186] ipw2200 not workin In-Reply-To: Message-ID: <20050923025436.8A4E622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9186 Ubuntu | UNKNOWN ------- Additional Comments From lists at whitehouse.org.nz 2005-09-23 03:54 UTC ------- Just FYI, I had difficulties with my Internet after moving to Ubuntu (it worked fine in Windows) because the MTU on the Router was set too high. Windows seemed to manage it but Ubuntu didn't and I had to lower the MTU setting. Hope that helps. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 02:56:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 03:56:15 +0100 (BST) Subject: [Bug 9186] ipw2200 not workin In-Reply-To: Message-ID: <20050923025615.91C6A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9186 Ubuntu | UNKNOWN ------- Additional Comments From lists at whitehouse.org.nz 2005-09-23 03:56 UTC ------- I filed the MTU bug as Bug 12550 a long time ago but there is little in that bug as nobody has confirmed it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 03:15:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 04:15:54 +0100 (BST) Subject: [Bug 15978] Intenal network interface on IBM T22 Thinkpad not being detected In-Reply-To: Message-ID: <20050923031554.21F1622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15978 Ubuntu | linux ------- Additional Comments From Sajjad_Khaliq at yahoo.com 2005-09-23 04:15 UTC ------- (In reply to comment #13) > Please see this article: > > http://www.mail-archive.com/linux-kernel at vger.kernel.org/msg78894.html > > but this patch already made it into 2.6.12 by examining the source. So not sure > whats going on. I had to put in my two cents. :) > I believe Hoary 5.04 which is what I have, is kernel 2.6.10, which would mean it does not have the patch. However, before installing 5.04 I installed 5.10 and it was after the onboard Ethernet was not being detected, that I decided to try 5.04 as it was the current "production" version. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 04:02:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 05:02:39 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050923040239.DEE7622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From crimsun at fungus.sh.nu 2005-09-23 05:02 UTC ------- (In reply to comment #13) > So ISAPnP is disabled altogether in Ubuntu right now? ALSA is not compiled with ISAPNP support, correct. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 04:14:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 05:14:58 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050923041458.4FD4122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From sb73542 at safe-mail.net 2005-09-23 05:14 UTC ------- OK, that explains a lot! :-) Would it break other devices if you were to enable ISAPnP support in ALSA? If it doesn't hurt anybody else, why not enable it? I think it would be great idea to look at MEPIS's kernel config, as well as PCLinuxOS's kernel config- they both do well on obscure ISA cards. Maybe also examine the alsa-base files and other relavant config files. In some Linux distros I have not been able to get modprobe to load snd-cmi8330 unless I hack up the alsa-base files. I might also make the following recommendations: -Always install isapnptools (not just when PCMCIA is discovered), so users can figure out what resources are being assigned to the ISA devices. -Package alsaconf separately. Many users rely on it when autoconfig fails. Thanks for working on this! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 04:47:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 05:47:19 +0100 (BST) Subject: [Bug 14147] ndiswrapper freezes on boot while searching In-Reply-To: Message-ID: <20050923044719.35DA422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14147 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-23 05:47 UTC ------- (In reply to comment #4) > This is the latest kernel and the normal Ubuntu ndiswrapper-utils package. I > have been trying for two months on a vareity of different packages but still no > luck. > > Kernel is 2.6.12-8-686 from 22nd September. You said in comment #1 that you were using ndiswrapper from source. Did you completely remove all traces of this module? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 04:58:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 05:58:10 +0100 (BST) Subject: [Bug 15801] new restricted modules package in breezy breaks madwifi In-Reply-To: Message-ID: <20050923045810.2869622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15801 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From mdz at ubuntu.com 2005-09-23 05:58 UTC ------- Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 07:07:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 08:07:30 +0100 (BST) Subject: [Bug 14147] ndiswrapper freezes on boot while searching In-Reply-To: Message-ID: <20050923070730.53F6E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14147 Ubuntu | linux ------- Additional Comments From spayne at evolutioncolt.com 2005-09-23 08:07 UTC ------- The machine has been formatted several times with fresh installs of Ubuntu Breezy since Comment #1. This was last month :-) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 07:30:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 08:30:56 +0100 (BST) Subject: [Bug 16047] Potential deadlock when the connection to the AP is lost? In-Reply-To: Message-ID: <20050923073056.7900D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16047 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |debzilla at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 07:31:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 08:31:03 +0100 (BST) Subject: [Bug 15968] battery status only with 2.6.10 kernel on acer aspire 5020 series laptops In-Reply-To: Message-ID: <20050923073103.176AE22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15968 Ubuntu | linux ------- Additional Comments From bdaw at o2.pl 2005-09-23 08:31 UTC ------- (In reply to comment #2) > Does a patched DSDT fix the problem? > > File a separate bug about the hibernation issue. I haven't found any.... But... dist-upgrade yesterday and with 2.6.12-9-amd64-k8 Battery status started working!!!! Now I need hibernation which still hangs (APIC errors) and I will be happy ubuntu user :) THANK YOU! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 07:31:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 08:31:04 +0100 (BST) Subject: [Bug 15698] Restricted modules not available during installation In-Reply-To: Message-ID: <20050923073104.5567022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15698 Ubuntu | linux-restricted-modules daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |debzilla at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 07:49:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 08:49:50 +0100 (BST) Subject: [Bug 11644] Wireless stops working In-Reply-To: Message-ID: <20050923074950.A0D2122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11644 Ubuntu | linux ------- Additional Comments From debian at oursours.net 2005-09-23 08:49 UTC ------- (In reply to comment #4) > I've just seen this on two Dell laptops, an inspiron 9200 and a latitude d810, > buth running hoary and using the ipw2200 driver. When the wireless signal drops > for a second the actual device dissapears. doing an rmmod and then modprobe on > the ipw2200 module brings it back up, then I can ifup the interface and its back > to normal. I experienced it on a Dell Latitude X300 running Breezy like 3 or 4 times. I haven't used the wifi enough these times to confirm or deny it is fixed, though. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 07:53:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 08:53:48 +0100 (BST) Subject: [Bug 15828] nvidia-glx-legacy package has missing files In-Reply-To: Message-ID: <20050923075348.4E41322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15828 Ubuntu | linux-restricted-modules ------- Additional Comments From david.wooffindin at tele2.fr 2005-09-23 08:53 UTC ------- cannot update to latest kernel package properly, due to unmet dependencies (breezy) apt-get install linux-restricted-modules-686: The following packages have unmet dependencies: linux-restricted-modules-686: Depends: linux-restricted-modules-2.6.12-9-686 but it is not installable E: Broken packages -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 08:13:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 09:13:42 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050923081342.C4D9F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux ------- Additional Comments From andrew.waldram at siemens.com 2005-09-23 09:13 UTC ------- just uploaded 2.6.12-9 it doesn't improve Alps middle button behaviour -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 09:14:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 10:14:34 +0100 (BST) Subject: [Bug 16110] New: CD-drive fails randomly (causes freeze) Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16110 Ubuntu | linux Summary: CD-drive fails randomly (causes freeze) Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: olal at onemanarmy.net QAContact: kernel-bugs at lists.ubuntu.com My CD Drive fails sometimes (randomly) I get the following output (fills the screen): [somenumber.someothernumbers] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) and the computer sometimes locks up. My computer is a Compaq Evo N800v with the following output from dmesg rom_pc_intr: The drive appears confused (ireason = 0x01) [4296775.238000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296777.290000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296800.167000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296802.209000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296804.271000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296818.658000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296830.963000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296841.271000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296863.971000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296872.179000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296905.074000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296911.273000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296960.857000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296969.075000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296973.179000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296975.221000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296977.273000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296991.647000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296997.803000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4296999.845000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297003.959000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297006.011000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297032.677000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297034.729000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297059.401000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297065.547000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297069.661000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297071.713000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297077.869000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297090.187000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297098.459000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297104.615000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297147.760000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297151.864000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297158.036000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297166.244000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297168.286000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297178.580000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297195.069000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297197.111000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297201.225000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297217.863000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297224.019000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297228.133000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297246.658000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297267.290000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297285.784000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297298.164000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297310.524000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297314.638000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297318.981000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297321.033000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297325.137000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297329.241000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297368.307000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297380.636000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297386.782000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297392.958000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297395.031000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297401.171000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297440.700000] usb 1-1: new low speed USB device using ohci_hcd and address 2 [4297442.000000] usbcore: registered new driver hiddev [4297442.023000] input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:02:0e.0-1 [4297442.023000] usbcore: registered new driver usbhid [4297442.023000] drivers/usb/input/hid-core.c: v2.01:USB HID core driver [4297473.514000] hdc: irq timeout: status=0xd0 { Busy } [4297473.514000] ide: failed opcode was: unknown [4297473.564000] hdc: ATAPI reset complete [4297498.241000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297502.345000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297504.407000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297508.511000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297520.852000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297527.008000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297531.112000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297541.432000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297551.692000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297553.764000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297578.761000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297586.979000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297591.084000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297597.240000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297625.989000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297634.207000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297644.467000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297654.758000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297656.810000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297662.966000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297667.070000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297681.435000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297691.750000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297727.038000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297737.319000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297749.985000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297778.954000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297783.063000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297813.956000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297828.321000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297834.543000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297848.982000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297871.629000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297885.993000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297888.076000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297890.130000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297904.623000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297964.748000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297973.077000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4297985.399000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298026.781000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298032.935000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298037.039000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298051.413000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298055.517000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298084.336000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298086.388000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298150.081000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298152.153000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298166.518000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298195.292000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298197.364000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298205.562000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298218.131000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298248.979000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298263.350000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298267.464000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298304.412000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298306.447000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298331.129000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298376.350000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298392.796000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298401.035000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298403.087000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298409.243000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298438.195000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298446.444000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298473.182000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298483.434000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298497.849000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298504.013000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298508.107000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298518.394000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298528.678000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298551.291000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298565.685000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298571.831000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298578.203000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298586.593000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298646.763000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298665.401000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298752.917000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298767.423000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298775.633000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298787.935000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298796.143000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298812.560000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298835.223000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298880.596000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298909.341000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298938.298000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4298998.445000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299008.745000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299083.589000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299118.791000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299166.609000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299180.983000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299199.552000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299255.119000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299267.442000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299279.784000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299288.353000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299288.383000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299321.268000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299325.364000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299329.481000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299331.544000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299387.238000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299389.310000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299401.639000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299414.046000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299422.264000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299428.413000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299446.957000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299453.126000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299471.857000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299480.058000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299488.327000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299511.124000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299519.397000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299554.311000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299556.373000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299562.519000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299580.995000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299591.292000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299611.789000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299615.911000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) [4299675.459000] hdc: cdrom_pc_intr: The drive appears confused (ireason = 0x01) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 09:19:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 10:19:20 +0100 (BST) Subject: [Bug 14039] PCMCIA/Cardbus cards not detected In-Reply-To: Message-ID: <20050923091920.E0A1722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14039 Ubuntu (laptop) | linux ------- Additional Comments From jani.monoses at gmail.com 2005-09-23 10:19 UTC ------- Indeed it works now,thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 09:20:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 10:20:31 +0100 (BST) Subject: [Bug 16110] CD-drive fails randomly (causes freeze) In-Reply-To: Message-ID: <20050923092031.DBDAE303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16110 Ubuntu | linux ------- Additional Comments From olal at onemanarmy.net 2005-09-23 10:20 UTC ------- Here is the dmesg when booting without the CD-drive: 00] ACPI: Interpreter enabled [4294670.038000] ACPI: Using PIC for interrupt routing [4294670.038000] ACPI: PCI Root Bridge [C046] (0000:00) [4294670.038000] PCI: Probing PCI hardware (bus 00) [4294670.038000] ACPI: Assume root bridge [\_SB_.C046] segment is 0 [4294670.038000] ACPI: Assume root bridge [\_SB_.C046] bus is 0 [4294670.049000] PCI: Ignoring BAR0-3 of IDE controller 0000:00:1f.1 [4294670.050000] Boot video device is 0000:01:00.0 [4294670.050000] PCI: Transparent bridge - 0000:00:1e.0 [4294670.060000] ACPI: PCI Interrupt Routing Table [\_SB_.C046._PRT] [4294670.060000] ACPI: PCI Interrupt Routing Table [\_SB_.C046.C047._PRT] [4294670.060000] ACPI: PCI Interrupt Routing Table [\_SB_.C046.C058._PRT] [4294670.062000] burst-mode-ec-10-Aug [4294670.062000] ACPI: Embedded Controller [C0E4] (gpe 29) [4294670.065000] ACPI: Power Resource [C155] (off) [4294670.067000] ACPI: Power Resource [C169] (off) [4294670.069000] ACPI: Power Resource [C16D] (off) [4294670.071000] ACPI: Power Resource [C171] (off) [4294670.071000] ACPI: Power Resource [C17A] (on) [4294670.073000] ACPI: PCI Interrupt Link [C0C0] (IRQs 5 10 *11) [4294670.074000] ACPI: PCI Interrupt Link [C0C1] (IRQs *5 10 11) [4294670.075000] ACPI: PCI Interrupt Link [C0C2] (IRQs 5 10 11) *0, disabled. [4294670.075000] ACPI: PCI Interrupt Link [C0C3] (IRQs 5 10 *11) [4294670.076000] ACPI: PCI Interrupt Link [C0C4] (IRQs 5 *10 11) [4294670.077000] ACPI: PCI Interrupt Link [C0C5] (IRQs) *0, disabled. [4294670.078000] ACPI: PCI Interrupt Link [C0C6] (IRQs) *0, disabled. [4294670.079000] ACPI: PCI Interrupt Link [C0C7] (IRQs) *0, disabled. [4294670.079000] ACPI: Power Resource [C0E3] (on) [4294670.081000] ACPI: Power Resource [C1EB] (off) [4294670.082000] ACPI: Power Resource [C1EC] (off) [4294670.082000] ACPI: Power Resource [C1ED] (off) [4294670.082000] ACPI: Power Resource [C1EE] (off) [4294670.082000] Linux Plug and Play Support v0.97 (c) Adam Belay [4294670.082000] pnp: PnP ACPI init [4294670.097000] pnp: PnP ACPI: found 15 devices [4294670.097000] PnPBIOS: Disabled by ACPI PNP [4294670.097000] PCI: Using ACPI for IRQ routing [4294670.097000] PCI: If a device doesn't work, try "pci=routeirq". If it helps, post a report [4294670.144000] pnp: 00:0d: ioport range 0x4d0-0x4d1 has been reserved [4294670.144000] pnp: 00:0d: ioport range 0x1000-0x107f could not be reserved [4294670.144000] pnp: 00:0d: ioport range 0x1100-0x113f has been reserved [4294670.145000] pnp: 00:0d: ioport range 0x1200-0x121f has been reserved [4294670.145000] audit: initializing netlink socket (disabled) [4294670.145000] audit: initialized [4294670.145000] VFS: Disk quotas dquot_6.5.1 [4294670.145000] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [4294670.145000] devfs: 2004-01-31 Richard Gooch (rgooch at atnf.csiro.au) [4294670.145000] devfs: boot_options: 0x0 [4294670.146000] Initializing Cryptographic API [4294670.146000] isapnp: Scanning for PnP cards... [4294670.499000] isapnp: No Plug & Play device found [4294670.526000] PNP: PS/2 Controller [PNP0303:C177,PNP0f13:C178] at 0x60,0x64 irq 1,12 [4294670.529000] i8042.c: Detected active multiplexing controller, rev 1.1. [4294670.530000] serio: i8042 AUX0 port at 0x60,0x64 irq 12 [4294670.530000] serio: i8042 AUX1 port at 0x60,0x64 irq 12 [4294670.530000] serio: i8042 AUX2 port at 0x60,0x64 irq 12 [4294670.530000] serio: i8042 AUX3 port at 0x60,0x64 irq 12 [4294670.530000] serio: i8042 KBD port at 0x60,0x64 irq 1 [4294670.530000] Serial: 8250/16550 driver $Revision: 1.90 $ 48 ports, IRQ sharing enabled [4294670.530000] ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [4294670.531000] ttyS2 at I/O 0x3e8 (irq = 4) is a NS16550A [4294670.533000] ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [4294670.533000] io scheduler noop registered [4294670.533000] io scheduler anticipatory registered [4294670.534000] io scheduler deadline registered [4294670.534000] io scheduler cfq registered [4294670.534000] RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blocksize [4294670.534000] NET: Registered protocol family 2 [4294670.544000] IP: routing cache hash table of 8192 buckets, 64Kbytes [4294670.544000] TCP established hash table entries: 131072 (order: 8, 1048576 bytes) [4294670.545000] TCP bind hash table entries: 65536 (order: 6, 262144 bytes) [4294670.546000] TCP: Hash tables configured (established 131072 bind 65536) [4294670.546000] NET: Registered protocol family 8 [4294670.546000] NET: Registered protocol family 20 [4294670.546000] ACPI wakeup devices: [4294670.546000] C058 C0AA C0B0 C0B3 C181 C177 C178 C190 C134 [4294670.546000] ACPI: (supports S0 S3 S4 S5) [4294670.546000] Freeing unused kernel memory: 168k freed [4294670.611000] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 [4294670.611000] ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx [4294670.611000] ACPI: bus type ide registered [4294670.622000] ICH3M: IDE controller at PCI slot 0000:00:1f.1 [4294670.622000] PCI: Enabling device 0000:00:1f.1 (0005 -> 0007) [4294670.623000] ACPI: PCI Interrupt Link [C0C2] enabled at IRQ 11 [4294670.623000] PCI: setting IRQ 11 as level-triggered [4294670.623000] ACPI: PCI Interrupt 0000:00:1f.1[A] -> Link [C0C2] -> GSI 11 (level, low) -> IRQ 11 [4294670.623000] ICH3M: chipset revision 2 [4294670.623000] ICH3M: not 100% native mode: will probe irqs later [4294670.623000] ide0: BM-DMA at 0x4440-0x4447, BIOS settings: hda:DMA, hdb:pio [4294670.623000] ide1: BM-DMA at 0x4448-0x444f, BIOS settings: hdc:pio, hdd:pio [4294670.623000] Probing IDE interface ide0... [4294670.693000] input: AT Translated Set 2 keyboard on isa0060/serio0 [4294670.887000] hda: HTS548040M9AT00, ATA DISK drive [4294671.499000] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 [4294671.499000] Probing IDE interface ide1... [4294672.018000] Probing IDE interface ide1... [4294672.536000] ide2: I/O resource 0x3EE-0x3EE not free. [4294672.536000] ide2: ports already in use, skipping probe [4294672.536000] Probing IDE interface ide3... [4294673.049000] Probing IDE interface ide4... [4294673.562000] Probing IDE interface ide5... [4294674.080000] hda: max request size: 1024KiB [4294674.098000] hda: 78140160 sectors (40007 MB) w/7877KiB Cache, CHS=16383/255/63, UDMA(100) [4294674.099000] hda: cache flushes supported [4294674.099000] /dev/ide/host0/bus0/target0/lun0: p1 p2 p3 p4 < p5 > [4294674.487000] Attempting manual resume [4294674.511000] swsusp: Suspend partition has wrong signature? [4294674.639000] e100: Intel(R) PRO/100 Network Driver, 3.4.8-k2-NAPI [4294674.639000] e100: Copyright(c) 1999-2005 Intel Corporation [4294674.640000] ACPI: PCI Interrupt Link [C0C4] enabled at IRQ 10 [4294674.640000] PCI: setting IRQ 10 as level-triggered [4294674.640000] ACPI: PCI Interrupt 0000:02:08.0[A] -> Link [C0C4] -> GSI 10 (level, low) -> IRQ 10 [4294674.664000] e100: eth0: e100_probe: addr 0x40100000, irq 10, MAC addr 00:08:02:64:FF:F1 [4294674.679000] usbcore: registered new driver usbfs [4294674.679000] usbcore: registered new driver hub [4294674.680000] ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Driver (PCI) [4294674.680000] ACPI: PCI Interrupt 0000:02:0e.0[A] -> Link [C0C4] -> GSI 10 (level, low) -> IRQ 10 [4294674.680000] ohci_hcd 0000:02:0e.0: NEC Corporation USB [4294674.680000] ohci_hcd 0000:02:0e.0: new USB bus registered, assigned bus number 1 [4294674.680000] ohci_hcd 0000:02:0e.0: irq 10, io mem 0x40180000 [4294675.241000] hub 1-0:1.0: USB hub found [4294675.241000] hub 1-0:1.0: 3 ports detected [4294675.752000] ACPI: PCI Interrupt 0000:02:0e.1[B] -> Link [C0C4] -> GSI 10 (level, low) -> IRQ 10 [4294675.752000] ohci_hcd 0000:02:0e.1: NEC Corporation USB (#2) [4294675.752000] ohci_hcd 0000:02:0e.1: new USB bus registered, assigned bus number 2 [4294675.752000] ohci_hcd 0000:02:0e.1: irq 10, io mem 0x40200000 [4294676.313000] hub 2-0:1.0: USB hub found [4294676.313000] hub 2-0:1.0: 2 ports detected [4294676.438000] usb 1-1: new low speed USB device using ohci_hcd and address 2 [4294676.847000] ACPI: PCI Interrupt 0000:02:0e.2[C] -> Link [C0C4] -> GSI 10 (level, low) -> IRQ 10 [4294676.847000] ehci_hcd 0000:02:0e.2: NEC Corporation USB 2.0 [4294676.868000] ehci_hcd 0000:02:0e.2: new USB bus registered, assigned bus number 3 [4294676.868000] ehci_hcd 0000:02:0e.2: irq 10, io mem 0x40280000 [4294676.868000] ehci_hcd 0000:02:0e.2: USB 2.0 initialized, EHCI 0.95, driver 10 Dec 2004 [4294676.868000] hub 3-0:1.0: USB hub found [4294676.868000] hub 3-0:1.0: 5 ports detected [4294677.044000] usb 1-1: USB disconnect, address 2 [4294677.221000] usb 1-1: new low speed USB device using ohci_hcd and address 3 [4294678.914000] usbcore: registered new driver hiddev [4294678.922000] input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:02:0e.0-1 [4294678.922000] usbcore: registered new driver usbhid [4294678.922000] drivers/usb/input/hid-core.c: v2.01:USB HID core driver [4294679.330000] vga16fb: initializing [4294679.330000] vga16fb: mapped to 0xc00a0000 [4294679.479000] Console: switching to colour frame buffer device 80x30 [4294679.479000] fb0: VGA16 VGA frame buffer device [4294679.784000] Attempting manual resume [4294679.804000] swsusp: Suspend partition has wrong signature? [4294679.870000] kjournald starting. Commit interval 5 seconds [4294679.870000] EXT3-fs: mounted filesystem with ordered data mode. [4294680.987000] NET: Registered protocol family 1 [4294681.867000] md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27 [4294685.840000] Adding 417648k swap on /dev/hda5. Priority:-1 extents:1 [4294686.176000] EXT3 FS on hda3, internal journal [4294689.142000] parport: PnPBIOS parport detected. [4294689.142000] parport0: PC-style at 0x378 (0x778), irq 7, dma 1 [PCSPP,TRISTATE,COMPAT,EPP,ECP,DMA] [4294689.226000] lp0: using parport0 (interrupt-driven). [4294689.254000] mice: PS/2 mouse device common for all mice [4294690.021000] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x336ab1, caps: 0x984713/0x4000 [4294690.024000] input: SynPS/2 Synaptics TouchPad on isa0060/serio4 [4294692.314000] device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel at redhat.com [4294696.543000] Linux agpgart interface v0.101 (c) Dave Jones [4294696.631000] agpgart: Detected an Intel i845 Chipset. [4294696.671000] agpgart: AGP aperture is 256M @ 0x60000000 [4294697.065000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [4294697.514000] shpchp: acpi_shpchprm:\_SB_.C046 evaluate _BBN fail=0x5 [4294697.514000] shpchp: acpi_shpchprm:get_device PCI ROOT HID fail=0x5 [4294697.651000] shpchp: acpi_shpchprm:\_SB_.C046 evaluate _BBN fail=0x5 [4294697.651000] shpchp: acpi_shpchprm:get_device PCI ROOT HID fail=0x5 [4294697.759000] hw_random: RNG not detected [4294698.542000] ACPI: PCI Interrupt Link [C0C1] enabled at IRQ 5 [4294698.542000] PCI: setting IRQ 5 as level-triggered [4294698.542000] ACPI: PCI Interrupt 0000:00:1f.5[B] -> Link [C0C1] -> GSI 5 (level, low) -> IRQ 5 [4294698.542000] PCI: Setting latency timer of device 0000:00:1f.5 to 64 [4294698.851000] intel8x0_measure_ac97_clock: measured 49328 usecs [4294698.851000] intel8x0: clocking to 48000 [4294700.055000] Linux Kernel Card Services [4294700.055000] options: [pci] [cardbus] [pm] [4294700.320000] ACPI: PCI Interrupt Link [C0C3] enabled at IRQ 11 [4294700.320000] ACPI: PCI Interrupt 0000:02:06.0[A] -> Link [C0C3] -> GSI 11 (level, low) -> IRQ 11 [4294700.320000] Yenta: CardBus bridge found at 0000:02:06.0 [0e11:004a] [4294700.320000] Yenta: Enabling burst memory read transactions [4294700.320000] Yenta: Using CSCINT to route CSC interrupts to PCI [4294700.320000] Yenta: Routing CardBus interrupts to PCI [4294700.320000] Yenta TI: socket 0000:02:06.0, mfunc 0x012c1202, devctl 0x64 [4294700.541000] Yenta: ISA IRQ mask 0x0018, PCI irq 11 [4294700.541000] Socket status: 30000020 [4294701.488000] Loaded prism54 driver, version 1.2 [4294701.495000] PCI: Enabling device 0000:03:00.0 (0000 -> 0002) [4294701.495000] ACPI: PCI Interrupt 0000:03:00.0[A] -> Link [C0C3] -> GSI 11 (level, low) -> IRQ 11 [4294702.831000] Floppy drive(s): fd0 is 1.44M [4294702.846000] FDC 0 is a National Semiconductor PC87306 [4294703.142000] irda_init() [4294703.142000] NET: Registered protocol family 23 [4294703.793000] input: PC Speaker [4294703.904000] Real Time Clock Driver v1.12 [4294704.595000] ts: Compaq touchscreen protocol output [4294708.574000] ACPI: AC Adapter [C130] (on-line) [4294708.653000] ACPI: Battery Slot [C132] (battery present) [4294708.653000] ACPI: Battery Slot [C131] (battery absent) [4294708.685000] ACPI: Power Button (FF) [PWRF] [4294708.685000] ACPI: Power Button (CM) [C190] [4294708.685000] ACPI: Sleep Button (CM) [C134] [4294708.685000] ACPI: Lid Switch [C133] [4294708.836000] ACPI: Fan [C1EF] (off) [4294708.836000] ACPI: Fan [C1F0] (off) [4294708.837000] ACPI: Fan [C1F1] (off) [4294708.837000] ACPI: Fan [C1F2] (off) [4294708.901000] ACPI: CPU0 (power states: C1[C1] C2[C2] C3[C3]) [4294708.901000] ACPI: Processor [C000] (supports 8 throttling states) [4294708.933000] ibm_acpi: ec object not found [4294709.038000] wmi_add device=dfb1b800 [4294709.038000] calling WQBA [4294709.085000] ACPI: Thermal Zone [TZ1] (51 C) [4294709.097000] ACPI: Thermal Zone [TZ2] (46 C) [4294709.099000] ACPI: Thermal Zone [TZ3] (16 C) [4294709.176000] ACPI: Video Device [C0CE] (multi-head: yes rom: no post: no) [4294711.872000] Capability LSM initialized [4294712.278000] eth1: resetting device... [4294712.278000] eth1: uploading firmware... [4294712.648000] eth1: firmware version: 1.0.4.3 [4294712.648000] eth1: firmware upload complete [4294712.886000] eth1: interface reset complete [4294715.288000] NET: Registered protocol family 10 [4294715.288000] Disabled Privacy Extensions on device c031eb40(lo) [4294715.289000] IPv6 over IPv4 tunneling driver [4294718.371000] [drm] Initialized drm 1.0.0 20040925 [4294718.418000] ACPI: PCI Interrupt Link [C0C0] enabled at IRQ 11 [4294718.418000] ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [C0C0] -> GSI 11 (level, low) -> IRQ 11 [4294718.422000] [drm] Initialized radeon 1.16.0 20050311 on minor 0: ATI Technologies Inc Radeon Mobility M7 LW [Radeon Mobility 7500] [4294718.423000] agpgart: Found an AGP 2.0 compliant device at 0000:00:00.0. [4294718.423000] agpgart: Putting AGP V2 device at 0000:00:00.0 into 4x mode [4294718.423000] agpgart: Putting AGP V2 device at 0000:01:00.0 into 4x mode [4294725.495000] apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac) [4294725.495000] apm: overridden by ACPI. [4294725.911000] eth1: no IPv6 routers present [4294726.268000] cs: IO port probe 0x100-0x4ff: excluding 0x170-0x177 0x370-0x37f [4294726.272000] cs: IO port probe 0xc00-0xcf7: clean. [4294726.273000] cs: IO port probe 0xa00-0xaff: clean. [4294727.381000] Bluetooth: Core ver 2.7 [4294727.381000] NET: Registered protocol family 31 [4294727.381000] Bluetooth: HCI device and connection manager initialized [4294727.381000] Bluetooth: HCI socket layer initialized [4294727.431000] Bluetooth: L2CAP ver 2.7 [4294727.431000] Bluetooth: L2CAP socket layer initialized [4294727.474000] Bluetooth: RFCOMM ver 1.5 [4294727.474000] Bluetooth: RFCOMM socket layer initialized [4294727.474000] Bluetooth: RFCOMM TTY layer initialized [4294757.892000] eth1: islpci_close () [4294757.949000] eth1: resetting device... [4294757.949000] eth1: uploading firmware... [4294758.192000] eth1: firmware version: 1.0.4.3 [4294758.192000] eth1: firmware upload complete [4294758.430000] eth1: interface reset complete [4294763.601000] NET: Registered protocol family 17 [4294776.687000] eth1: no IPv6 routers present -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 09:40:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 10:40:40 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050923094040.F0B2022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux ------- Additional Comments From ralf at mail.ralf-saalmueller.de 2005-09-23 10:40 UTC ------- I'm not quit shure if you found the solution to this boring bug before or after finishing colony-4. So I just want to confirm that it's still there on the colony-4 powerpc install cd. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 09:52:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 10:52:38 +0100 (BST) Subject: [Bug 16029] Use later version of acx In-Reply-To: Message-ID: <20050923095238.D372422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16029 Ubuntu | linux ------- Additional Comments From bersace03 at free.fr 2005-09-23 10:52 UTC ------- Hello, Okay, i understand your choice. I wish the driver will be included in the kernel tree. Thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:06:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:06:20 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050923100620.024C922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux ------- Additional Comments From cjwatson at ubuntu.com 2005-09-23 11:06 UTC ------- After. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:22:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:22:46 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050923102246.E21EE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 11:22 UTC ------- New kernel is uploaded. If you're on anything other than a brand new install, you'll need to go to the volume control, edit preferences, enable "headphone jack sense", go to the switches pane and switch that on. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:24:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:24:17 +0100 (BST) Subject: [Bug 15828] nvidia-glx-legacy package has missing files In-Reply-To: Message-ID: <20050923102417.9E25522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15828 Ubuntu | linux-restricted-modules adconrad at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From adconrad at ubuntu.com 2005-09-23 11:24 UTC ------- This should be fixed with the most recent updates to linux-restricted-modules / nvidia-glx. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:30:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:30:37 +0100 (BST) Subject: [Bug 15105] Scan mode not supported by orinoco/hermes In-Reply-To: Message-ID: <20050923103037.ACA4D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15105 Ubuntu | linux siretart at tauware.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |siretart at tauware.de -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:34:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:34:06 +0100 (BST) Subject: [Bug 2711] acpi does not give correct battery status In-Reply-To: Message-ID: <20050923103406.29BAB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2711 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 11:34 UTC ------- This should be working out of the box with the latest kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:43:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:43:08 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923104308.7F1EC22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 11:43 UTC ------- Can you give it a go with the latest (ie, 2.6.12-9) kernel? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:46:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:46:53 +0100 (BST) Subject: [Bug 16118] New: No video output in console Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16118 Ubuntu | kernel-package Summary: No video output in console Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: thesaltydog at gmail.com QAContact: kernel-bugs at lists.ubuntu.com With latest kernel update in Breezy (2.6.12-9-386), I lost my console video output. Nothing is displayed in console during boot or shutdown, not even in a single-user session. I don't use usplash. This is my cat /proc/cmdline: root=/dev/hda6 ro console=tty0 vga=791 quiet splash If I remove vga=791, I get the video output with usplach, but I need small characters, so I get rid of usplash. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:51:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:51:06 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050923105106.B9ADE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 11:51 UTC ------- If you boot with the ec_burst=1 kernel option, does it improve things? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 10:54:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 11:54:35 +0100 (BST) Subject: [Bug 10306] i2c_i801 breaks suspend on hp compaq nc6000 In-Reply-To: Message-ID: <20050923105435.DF44C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10306 Ubuntu | hotplug mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 11:54 UTC ------- Does this still happen in Breezy, and if so does unloading the module before suspend prove adequate? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:02:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:02:35 +0100 (BST) Subject: [Bug 11524] Installation fails on an Compaq Presario M2000 In-Reply-To: Message-ID: <20050923110235.5F22422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11524 Ubuntu | xserver-xorg mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 12:02 UTC ------- This should all be fixed in Breezy now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:04:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:04:58 +0100 (BST) Subject: [Bug 11798] Battery not found.... In-Reply-To: Message-ID: <20050923110458.DA8E922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11798 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 12:04 UTC ------- Can you try with the latest kernel in Breezy (2.6.12-9)? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:09:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:09:48 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050923110948.BD4F222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 12:09 UTC ------- Done now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:14:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:14:13 +0100 (BST) Subject: [Bug 14149] Acer Aspire 5024 WLMi Laptop In-Reply-To: Message-ID: <20050923111413.8817422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14149 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 12:14 UTC ------- Can you try with 2.6.12-9? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:18:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:18:00 +0100 (BST) Subject: [Bug 14716] Trackstick failure - Dell Latitude D410 In-Reply-To: Message-ID: <20050923111800.7966822F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14716 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 12:18 UTC ------- 2.6.12-9 should fix this. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:18:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:18:28 +0100 (BST) Subject: [Bug 14741] Hibernate doesn't work on Dell Latitude D410 (Colony 4) In-Reply-To: Message-ID: <20050923111828.2A50C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14741 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 12:18 UTC ------- Is this still a problem? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:21:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:21:59 +0100 (BST) Subject: [Bug 15083] PCMCIA NIC not getting initialized and powered on In-Reply-To: Message-ID: <20050923112159.8C86122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15083 Ubuntu (laptop) | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 12:21 UTC ------- Fixed in the latest kernel (2.6.12-9) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:26:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:26:39 +0100 (BST) Subject: [Bug 15332] 'ibm_acpi' is not loaded on ThinkPad R31 In-Reply-To: Message-ID: <20050923112639.8C47022F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15332 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|mjg59 at codon.org.uk |ben.collins at ubuntu.com Component|acpi-support |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 11:46:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 12:46:50 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050923114650.133F522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From dan at theidiots.org 2005-09-23 12:46 UTC ------- No sky2 or sk98lin... only skge -- which doesn't detect my card (Marvell 88E8053) [07:43] dan at dan:~$ sudo modprobe sk98lin FATAL: Module sk98lin not found. [07:43] dan at dan:~$ sudo modprobe sky2 FATAL: Module sky2 not found. [07:43] dan at dan:~$ lspci 0000:00:07.0 Ethernet controller: Marvell Technology Group Ltd.: Unknown device 1fa7 (rev 07) 0000:05:00.0 Ethernet controller: Marvell Technology Group Ltd.: Unknown device 4362 (rev 15) [07:43] dan at dan:~$ uname -a Linux dan.theidiots.org 2.6.12-9-amd64-generic #1 Thu Sep 22 22:00:40 BST 2005 x86_64 GNU/Linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 12:04:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 13:04:51 +0100 (BST) Subject: [Bug 10306] i2c_i801 breaks suspend on hp compaq nc6000 In-Reply-To: Message-ID: <20050923120451.1A75922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10306 Ubuntu | hotplug ------- Additional Comments From andrew at canonical.com 2005-09-23 13:04 UTC ------- It still happens exactly the same as with Hoary, and unloading the module beforehand does not help. Tested with linux-image-2.6.12-8-686 version 2.6.12-8.13. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 12:12:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 13:12:15 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050923121215.33BAF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux kleeman at cims.nyu.edu changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From kleeman at cims.nyu.edu 2005-09-23 13:12 UTC ------- Confirming Dan Berger's report. the sk98lin driver appears absent still. I have reopened the bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 12:33:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 13:33:36 +0100 (BST) Subject: [Bug 14039] PCMCIA/Cardbus cards not detected In-Reply-To: Message-ID: <20050923123336.1A20222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14039 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-23 13:33 UTC ------- Fixed in 2.6.12-9 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 12:40:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 13:40:57 +0100 (BST) Subject: [Bug 16134] New: Fn-key patch outdated for kernels 2.6.12-rc4 and later. Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16134 Ubuntu | linux Summary: Fn-key patch outdated for kernels 2.6.12-rc4 and later. Product: Ubuntu Version: unspecified Platform: powerpc URL: http://lists.debian.org/debian- powerpc/2005/07/msg00370.html OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: joh at deworks.net QAContact: kernel-bugs at lists.ubuntu.com The Fn-key patch external-drivers-usb-input-powerbook-fn-quirk.dpatch for the Apple PowerBook is outdated and doesn't work for kernels 2.6.12-rc4 and later. I made a post about this on the debian-powerpc mailinglist (http://lists.debian.org/debian-powerpc/2005/06/msg00125.html) in June. After some testing, Stelian Pop got it working and posted a working patch (http://lists.debian.org/debian-powerpc/2005/07/msg00370.html). I have made a dpatch out of Stelians patch and applied it to linux-source-2.6.12. After building and installing, the Fn-key now works perfectly. The current external-drivers-usb-input-powerbook-fn-quirk.dpatch should be replaced by my attached one, external-drivers-usb-input-powerbook-fn-quirk-2.6.12.dpatch. Thank you, Johannes H. Jensen -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 12:42:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 13:42:27 +0100 (BST) Subject: [Bug 16134] Fn-key patch outdated for kernels 2.6.12-rc4 and later. In-Reply-To: Message-ID: <20050923124227.175F022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16134 Ubuntu | linux ------- Additional Comments From joh at deworks.net 2005-09-23 13:42 UTC ------- Created an attachment (id=4007) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4007&action=view) Working fn-key patch for kernels 2.6.12-rc4 and later -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 12:52:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 13:52:46 +0100 (BST) Subject: [Bug 16134] Fn-key patch outdated for kernels 2.6.12-rc4 and later. In-Reply-To: Message-ID: <20050923125246.0AE5922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16134 Ubuntu | linux ------- Additional Comments From joh at deworks.net 2005-09-23 13:52 UTC ------- Created an attachment (id=4008) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4008&action=view) Working fn-key patch for kernels 2.6.12-rc4 and later Noticed that the credits were wrong (I didn't write the actual patch). Fixed it by adding Stelian Pop as the patch author and me as the dpatcher. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 13:16:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 14:16:53 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923131653.7DD3922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From johan at gnome.org 2005-09-23 14:16 UTC ------- Yes, it is still present. with 2.6.12-8 and 2.6.12-9. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 13:24:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 14:24:53 +0100 (BST) Subject: [Bug 13834] ndiswrapper.ko missing in linux-image-2.6.12-7-amd64-k8 In-Reply-To: Message-ID: <20050923132453.EA80D22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13834 Ubuntu | linux ------- Additional Comments From MarkMueller86 at compuserve.de 2005-09-23 14:24 UTC ------- The ndiwswrapper module contained in linux-image-2.6.12-9-amd64-k8 does not load correctly: $ sudo modprobe ndiswrapper FATAL: Error inserting ndiswrapper (/lib/modules/2.6.12-9-amd64-k8/kernel/drivers/net/ndiswrapper/ndiswrapper.ko): Unknown symbol in module, or unknown parameter (see dmesg) See dmesg output (attachment dmesg.log) for details. A self-compiled version of the module works without problems. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 13:26:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 14:26:07 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923132607.9207822F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 14:26 UTC ------- Can you attach the contents of /proc/acpi/dsdt (you'll need to copy the file first) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 13:27:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 14:27:24 +0100 (BST) Subject: [Bug 13834] ndiswrapper.ko missing in linux-image-2.6.12-7-amd64-k8 In-Reply-To: Message-ID: <20050923132724.59A0922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13834 Ubuntu | linux ------- Additional Comments From MarkMueller86 at compuserve.de 2005-09-23 14:27 UTC ------- Created an attachment (id=4010) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4010&action=view) dmesg output after failed modprobe for ndiswrapper.ko -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 13:31:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 14:31:01 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923133101.76C3F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From johan at gnome.org 2005-09-23 14:31 UTC ------- Would you like the raw, decompiled or a decompiled which is compilable? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 13:34:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 14:34:59 +0100 (BST) Subject: [Bug 16134] Fn-key patch outdated for kernels 2.6.12-rc4 and later. In-Reply-To: Message-ID: <20050923133459.0458C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16134 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-23 14:34 UTC ------- New patch is in 2.6.12-9.15, uploaded just a few minutes ago. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 13:35:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 14:35:23 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923133523.EDD6722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 14:35 UTC ------- raw is fine. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 13:48:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 14:48:27 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923134827.67B8422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From johan at gnome.org 2005-09-23 14:48 UTC ------- Created an attachment (id=4012) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4012&action=view) DSDT -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 14:00:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 15:00:13 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923140013.DA35C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |NOTABUG ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 15:00 UTC ------- Your DSDT has the following: Name (BFB0, Package (0x04) { Zero, Zero, 0x1034, 0x2A30 } which is an object returned by the _BST ACPI method (which gives battery status). According to the ACPI spec, the second of these members is the current rate. There's nothing in your DSDT that ever writes anything to that offset, so it stays at 0. The other members are populated by the _BST call, so return correct information. I'm afraid that your system is working as designed, it's just been badly designed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 14:00:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 15:00:59 +0100 (BST) Subject: [Bug 13834] ndiswrapper.ko missing in linux-image-2.6.12-7-amd64-k8 In-Reply-To: Message-ID: <20050923140059.BD97F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13834 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-23 15:00 UTC ------- I'm surprised that ndiswrapper was even in the package, since it wasn't even listed in the config to compile. I fixed that in the 9.15 version just uploaded, so give that a try when it is availalable (next 12-24 hours). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 14:03:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 15:03:08 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923140308.B5E8F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 15:03 UTC ------- (Though, oddly, it looks like there may be support there - perhaps it didn't work properly and was disabled? If you'd like to give it a go, try changing your _BST method to read Method (_BST, 0, NotSerialized) { Store ("BST Start", Debug) If (LEqual (OSFL (), Zero)) { Store (^^SBRG.EC0.XST0, Index (BFB0, Zero)) Store (^^SBRG.EC0.XST1, Index (BFB0, 0x01)) Store (^^SBRG.EC0.XST2, Index (BFB0, 0x02)) Store (^^SBRG.EC0.XST3, Index (BFB0, 0x03)) } Else { Store (0xCA, SSMI) Store (BST0, Index (BFB0, Zero)) Store (BST1, Index (BFB0, 0x01)) Store (BST2, Index (BFB0, 0x02)) Store (BST3, Index (BFB0, 0x03)) } Store ("BST End", Debug) Return (BFB0) } compile it and put it in /etc/mkinitramfs/DSDT.aml, then regenerate your initramfs (sudo dpkg-reconfigure linux-image-`uname -r`) and see what happens. That might work, or it might do extremely odd things. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 14:06:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 15:06:48 +0100 (BST) Subject: [Bug 16139] New: Software RAID Boot fails if array active, but out of sync Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16139 Ubuntu | linux Summary: Software RAID Boot fails if array active, but out of sync Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: finley at anl.gov QAContact: kernel-bugs at lists.ubuntu.com md: syncing RAID array md1 md: minimum _guaranteed_ reconstruction speed: 1000 KB/sec/dis md: using maximum available idle IO bandwith (but not more than 2000000 KB/sec) for reconstruction md: using 128k window over a total of 151115520 blocks. Stopping tasks: === [ there is a short pause ] stopping tasks failed (1 tasks remaining) then, the system hangs. That is, it still accepts keyboard input ( moves the cursor down a line, etc.), but does not provide any indication of activity. Please reference this other bug: http://bugzilla.ubuntu.com/show_bug.cgi?id=10916 Bug #10916 above is currently listed as "Not a Bug", presumably because of the "probably due to overheating" guess at the bottom, which I can dispell. But it has lots of other info that may prove relevant and useful. I am experiencing this same issue on a new Sun Fire V40z Server in a well cooled machine room. Hardware: - Quad CPU amd64 -- AMD Opteron(tm) Processor 852 - 32G memory - 2x SCSI disks RAID config: - /dev/md0 RAID1 Mount point: /boot Partitions: /dev/sda1, /dev/sdb1 - /dev/md1 RAID1 Physical device for LVM vg0 $ mount | grep vg0 /dev/mapper/vg0-root on / type ext3 (rw,errors=remount-ro) /dev/mapper/vg0-tmp on /tmp type ext3 (rw) /dev/mapper/vg0-var on /var type ext3 (rw) I didn't try the "acpi=off" option, but was able to temporarily resolve the situation in this way: - multiple boots failed with hoary 2.6.10-5-amd64-k8-smp in the way described below - normal, just hit boot failed - append "init=/bin/bash" boot boot failed - append "single" boot failed - boot from "live" CD, then "watch cat /proc/mdstat" showed /dev/md1 re-syncing - after the re-sync was complete, I was able to reboot with kernel 2.6.12.2-bef without incident (smp kernel) - then tried booting again from 2.6.10-5-amd64-k8-smp, and also had success Another point of potential interest is the file "/script" on the initrd, as this is where the RAID arrays are assembled. It contains the following for my system: mdadm -A /devfs/md/1 -R -u 55f3a23c:a0ef4950:a0a11bfe:250e3f63 /dev/sda2 /dev/sdb2 mkdir /devfs/vg0 mount_tmpfs /var if [ -f /etc/lvm/lvm.conf ]; then cat /etc/lvm/lvm.conf > /var/lvm.conf fi mount_tmpfs /etc/lvm if [ -f /var/lvm.conf ]; then cat /var/lvm.conf > /etc/lvm/lvm.conf fi mount -nt devfs devfs /dev vgchange -a y vg0 umount /dev umount -n /var umount -n /etc/lvm ROOT=/dev/mapper/vg0-root mdadm -A /devfs/md/1 -R -u 55f3a23c:a0ef4950:a0a11bfe:250e3f63 /dev/sda2 /dev/sdb2 The machine is in use now, and I am unable to perform further tests on it. However, I will be receiving another one soon, and will be able to re-create this problem and do further testing on it. Please let me know if there are tests you would like me to perform. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 14:22:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 15:22:05 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923142205.233DC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From johan at gnome.org 2005-09-23 15:22 UTC ------- That didn't change anything at all. Still constantly 0 mA. I also tried to uncomment, to see if the other branch worked (second one seems to be default, OSV is 0x01 if not NT/Me), without luck. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 14:24:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 15:24:49 +0100 (BST) Subject: [Bug 6628] Querying battery status is incomplete In-Reply-To: Message-ID: <20050923142449.26FF522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6628 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 15:24 UTC ------- Ok. I'm afraid that your hardware just doesn't seem to report it, then. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 15:23:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 16:23:00 +0100 (BST) Subject: [Bug 16118] No video output in console In-Reply-To: Message-ID: <20050923152300.A28A022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16118 Ubuntu | kernel-package thesaltydog at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major ------- Additional Comments From thesaltydog at gmail.com 2005-09-23 16:23 UTC ------- I have also tried on another machine with this /proc/cmdline: root=/dev/hdb6 ro vga=791 Same result. The screen is completely black during boot and if I go single-user (telinit 1) I can't see anything. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 15:24:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 16:24:28 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050923152428.8E2BE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From bricem13 at yahoo.com 2005-09-23 16:24 UTC ------- No changes at all! I recently recompiled mu kernel with acpi_debug enabled and when I unplug the battery I see it in dmesg. So this is an acpid bug definitively! Running acpid -d gives me the same output as before! Regards, Brice -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 15:29:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 16:29:20 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050923152920.E1BE022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 16:29 UTC ------- It really isn't an acpid bug. Could you please attach the contents of /proc/acpi/dsdt ? You'll need to do cat /proc/acpi/dsdt >/tmp/dsdt and then attach /tmp/dsdt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 15:52:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 16:52:12 +0100 (BST) Subject: [Bug 15986] acx_111 pcmcia not working In-Reply-To: Message-ID: <20050923155212.66AF322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15986 Ubuntu | linux ------- Additional Comments From mdke at ubuntu.com 2005-09-23 16:52 UTC ------- (In reply to comment #3) > (In reply to comment #2) > > FWIW I've tried putting the firmware from the card's CD in /lib/hotplug/firmware > > and naming it: > > > > 1. FwRadio16.bin (original name) > > 2. RADIO16.BIN > > 3. TIACX111.BIN > > Does the firmware actually differ from the firmware we supply in > /lib/hotplug/firmware by default? It's already there under those names, so > you've probably clobbered the packaged versions (reinstall > linux-restricted-modules to fix it) Just to be clear: this problem was occurring BEFORE I copyed the firmware to the hotplug directory from the CD. I don't think Ubuntu is shipping the firmware for this particular card. AFAICS it is NOT there under those names: I can see RADIO15* but not RADIO16*. In any case, even with the firmware copied to the directory, the card is not working. Matt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 15:56:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 16:56:53 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050923155653.E85E722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From bricem13 at yahoo.com 2005-09-23 16:56 UTC ------- Please consider this : http://bugzilla.kernel.org/show_bug.cgi?id=4588 This is an acpi bug I reported and is now closed. You'll find there my dsdt table also. As I told you no acpi bug! Regards, Brice -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 16:44:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 17:44:36 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050923164436.2832522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 17:44 UTC ------- Acpid is not being sent a signal when you remove the power adapter. That means that the bug is either in your laptop or in the kernel. Not acpid. By the looks of it, AC notifications are sent under three circumstances 1) By the CHAC method 2) By the FLPA method 3) By the _Q20 method CHAC and FLPA don't appear to be called anywhere, so I'm inclined to think that _Q20 is what ought to be calling it. Based on your discussion in kernel bugzilla 4588, there are some kernel acpi issues surrounding features of that function. If you're using the patch from there, do you get AC events? If so, then we'll probably integrate it shortly after our next release (we're in kernel freeze right now) - if not, then your best bet is going to be to open an upstream bug on it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:03:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:03:15 +0100 (BST) Subject: [Bug 16110] cdrom_pc_intr: The drive appears confused (ireason = 0x01) In-Reply-To: Message-ID: <20050923180315.040B022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16110 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mdz at ubuntu.com Summary|CD-drive fails randomly |cdrom_pc_intr: The drive |(causes freeze) |appears confused (ireason = | |0x01) ------- Additional Comments From mdz at ubuntu.com 2005-09-23 19:03 UTC ------- I get this message constantly (every 30 seconds or so, perhaps when HAL polls the CD-ROM drive). I don't know whether the drive works reliably though, because I don't use it (I use a USB drive instead of the internal ATAPI). Certainly the system does not lock up as a result, though, at least not when not using the drive -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:04:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:04:40 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050923180440.BA8B322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From bricem13 at yahoo.com 2005-09-23 19:04 UTC ------- I use the provided patch PLease tell me how I can see if I get AC power events. For info when I see always the right AC status with acpi -V REgards, Brice -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:18:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:18:41 +0100 (BST) Subject: [Bug 16118] Blank console with vga=791 In-Reply-To: Message-ID: <20050923181841.6D6D722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16118 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux Summary|No video output in console |Blank console with vga=791 ------- Additional Comments From mdz at ubuntu.com 2005-09-23 19:18 UTC ------- If you select the previous kernel in GRUB, does it work? Do you have usplash enabled in that kernel? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:20:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:20:22 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050923182022.1DDAC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 19:20 UTC ------- sudo /etc/init.d/acpid stop sudo cat /proc/acpi/event plug in/unplug your AC adapter. Do any lines with the word ACAD in them appear? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:21:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:21:33 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050923182133.3C2F722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux martijn at foodfight.org changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From martijn at foodfight.org 2005-09-23 19:21 UTC ------- "Headphone Jack Sense" is an option, default off, with the new kernel -- I think it should be turned on by default (if it's on, plugging in a headphone will turn off the main speakers, if it's off/muted main speakers will stay on) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:22:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:22:54 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050923182254.8E3E022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux ------- Additional Comments From martijn at foodfight.org 2005-09-23 19:22 UTC ------- Oh, this option is in the ALSA mixer programs: Simple mixer control 'Headphone Jack Sense',0 Capabilities: pswitch pswitch-joined Playback channels: Mono Mono: Playback [on] -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:24:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:24:10 +0100 (BST) Subject: [Bug 14533] Main volume doesn't mute on headphone insertion In-Reply-To: Message-ID: <20050923182410.32C2D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14533 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 19:24 UTC ------- It's not default off in the new kernel. However, if you have an existing installation, it will have been switched off by default and those settings then saved. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:26:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:26:41 +0100 (BST) Subject: [Bug 16162] New: After wake from hibernation on Thinkpad T42, blank screen and lockup Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16162 Ubuntu | linux Summary: After wake from hibernation on Thinkpad T42, blank screen and lockup Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: em36 at columbia.edu QAContact: kernel-bugs at lists.ubuntu.com After hibernating apparently successfully on ThinkPad T42, restart proceeds normally, reads data from memory, two lines of "GTM Info" appear on the console, and then the screen turns bluish-gray and goes blank with a blinking cursor. No keystrokes have any effect; hard powerdown required. Fresh install of 23 Sept daily ISO on main hard disk (no LVM) of a ThinkPad T42; standard install with manual partitioning, including swap drive 2X size of memory. Problem is absolutely reproducable; same problem observed on dailies with this machine for the past week. (This replaces bug 15888, which got too cluttered with irrelevant detail.) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:27:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:27:32 +0100 (BST) Subject: [Bug 16162] After wake from hibernation on Thinkpad T42, blank screen and lockup In-Reply-To: Message-ID: <20050923182732.C589722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16162 Ubuntu | linux ------- Additional Comments From em36 at columbia.edu 2005-09-23 19:27 UTC ------- *** Bug 15888 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:31:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:31:18 +0100 (BST) Subject: [Bug 16136] USB problems after resume from hibernate (Inspiron 8600) In-Reply-To: Message-ID: <20050923183118.5899A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16136 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|libgphoto2 |linux Keywords| |laptop QAContact| |kernel-bugs at lists.ubuntu.com Summary|Importing pictures fails |USB problems after resume |after hibernate |from hibernate (Inspiron | |8600) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:31:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:31:28 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050923183128.A2FD822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From debzilla at ubuntu.com 2005-09-23 19:31 UTC ------- Message-ID: Date: Fri, 23 Sep 2005 18:50:27 +0100 From: David Hugh-Jones To: 328685 at bugs.debian.org Subject: I get this when attaching a microsoft USB mouse, and the mouse movement doesn't work. To reproduce: plug in a USB mouse. /var/log/syslog gives: Sep 23 18:48:12 portege kernel: usb 1-1: new low speed USB device using uhci_hcd and address 5 Sep 23 18:48:12 portege kernel: input: USB HID v1.00 Mouse [Microsoft Micro= soft Wheel Mouse Optical(r)] on usb-0000:00:05.2-1 Sep 23 18:48:12 portege udev[8152]: main: action, subsystem or devpath miss= ing Sep 23 18:48:15 portege usb.agent[8165]: usbhid: already loaded Sep 23 18:48:15 portege usb.agent[8165]: usbmouse: already loaded Sep 23 18:48:17 portege input.agent[8211]: evdev: already loaded Sep 23 18:48:17 portege input.agent[8219]: evdev: already loaded Sep 23 18:48:17 portege input.agent[8225]: evdev: already loaded Thereafter, my mouse buttons work fine but mouse movement doesn't - I cannot move the pointer around. David -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:38:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:38:14 +0100 (BST) Subject: [Bug 16136] USB problems after resume from hibernate (Inspiron 8600) In-Reply-To: Message-ID: <20050923183814.4C35722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16136 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-23 19:38 UTC ------- This should be fixed with the latest initramfs-tools. Can you make sure you have them installed and then do sudo dpkg-reconfigure linux-image-`uname -r` and see if that helps? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 18:39:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 19:39:09 +0100 (BST) Subject: [Bug 16118] Blank console with vga=791 In-Reply-To: Message-ID: <20050923183909.378DA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16118 Ubuntu | linux ------- Additional Comments From thesaltydog at gmail.com 2005-09-23 19:39 UTC ------- If I select previous kernel (-8) it DOES work. I was not using usplash either with the old kernel. Always vga=791. But booting kernel -8 I have the booting sequence on screen. Booting -9 I don't see anything. Just black. And it keeps black also in single-user mode or while shutting down. Can't be a kernel flag change before building the new image? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 19:11:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 20:11:19 +0100 (BST) Subject: [Bug 16118] Blank console with vga=791 In-Reply-To: Message-ID: <20050923191119.1A53B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16118 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-23 20:11 UTC ------- Does it work with any other video mode? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 19:15:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 20:15:58 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050923191558.ADC6422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-23 20:15 UTC ------- (In reply to comment #5) > More information: > 1. HedgeHog live cd really does reboot. But it uses differrent kernel > (2.6.10-something) Which kernel are you using on the installed system? Use a live CD which corresponds to the release of Ubuntu you have installed. If you're tracking Breezy, use the daily live CD: http://cdimage.ubuntu.com/daily-live/current/ > 2. When I see this root prompt, the root filesystem is mounted readonly (cannot > write anything - getting the "readonly filesystem" errors). > 3. strace shows the reboot syscall being performed - but still returns back to shell You say that it "returns back"...are you saying that this is the same shell from which you ran the reboot command, rather than a newly spawned shell? Check with "echo $$" before and after the reboot command. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 19:20:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 20:20:23 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050923192023.893DB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |torrb at musiker.nu ------- Additional Comments From mdz at ubuntu.com 2005-09-23 20:20 UTC ------- *** Bug 16018 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 19:21:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 20:21:43 +0100 (BST) Subject: [Bug 16118] Blank console with vga=791 In-Reply-To: Message-ID: <20050923192143.9D91C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16118 Ubuntu | linux ------- Additional Comments From adconrad at ubuntu.com 2005-09-23 20:21 UTC ------- Can you upgrade initramfs-tools to version 0.29, then "sudo dpkg-reconfigure linux-image-2.6.12-9-386", reboot and see if that clears up your problems? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 19:51:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 20:51:37 +0100 (BST) Subject: [Bug 11237] VMware BusLogic scsi device not detected In-Reply-To: Message-ID: <20050923195137.7820422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11237 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-23 20:51 UTC ------- BusLogic should work in 2.6.12-9.14 uploaded yesterday. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 19:52:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 20:52:08 +0100 (BST) Subject: [Bug 14458] more upstream inotify goodness In-Reply-To: Message-ID: <20050923195208.ECC4122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14458 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-23 20:52 UTC ------- Patch applied in 2.6.12-9.14 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 19:52:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 20:52:35 +0100 (BST) Subject: [Bug 14967] gnome menu is missing items In-Reply-To: Message-ID: <20050923195235.7F4F922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14967 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-23 20:52 UTC ------- Patch applied in 2.6.12-9.14 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 19:55:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 20:55:15 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050923195515.A9D9A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-23 20:55 UTC ------- Will be fixed in 2.6.12-9.18 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 20:54:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 21:54:50 +0100 (BST) Subject: [Bug 16118] Blank console with vga=791 In-Reply-To: Message-ID: <20050923205450.B00D022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16118 Ubuntu | linux thesaltydog at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From thesaltydog at gmail.com 2005-09-23 21:54 UTC ------- OK! New initramfs-tools has fixed the problem. Now I have my console back. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 22:08:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 23:08:54 +0100 (BST) Subject: [Bug 16178] New: capability module is not loaded, breaking apps Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16178 Ubuntu | linux Summary: capability module is not loaded, breaking apps Product: Ubuntu Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: brandon at smarterits.com QAContact: kernel-bugs at lists.ubuntu.com The capability module is no longer loaded at boottime since the last kernel update. This causes ethereal, tethereal, and any other applications that try to drop capabilities to fail. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 22:50:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 23 Sep 2005 23:50:25 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050923225025.C1A9622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-23 23:50 UTC ------- i386 users, could you try: http://people.ubuntu.com/~scott/udev_0.060-1ubuntu15_i386.deb before I upload it. I've tested it here and it solves the problem -- can you confirm whether it does or not for you too. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 23 23:46:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 00:46:29 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050923234629.ED339303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug ------- Additional Comments From debzilla at ubuntu.com 2005-09-24 00:46 UTC ------- Message-Id: <1127517187.28927.22.camel at localhost.localdomain> Date: Sat, 24 Sep 2005 00:13:07 +0100 From: Scott James Remnant To: 328685 at bugs.debian.org, Debian Kernel Team , Marco d'Itri Subject: udev: main: action, subsystem or devpath missing --=-zi1zEZaOeXx0Q2S2xJcF Content-Type: multipart/mixed; boundary="=-HS/xhRS6lqwUixJxEXED" --=-HS/xhRS6lqwUixJxEXED Content-Type: text/plain Content-Transfer-Encoding: quoted-printable This is simultaneously caused by the kernel input subsystem not using the new driver core, and the changes to udev to obsolete the /etc/dev.d and /etc/hotplug.d directories. With the new driver core the driver has an opportunity to add environment to the uevent[0] generated along with the sysfs information before the event is sent to userspace via the netlink socket and, for backwards compatibility, the /proc/sys/kernel/hotplug interface. However the input subsystem isn't yet doing this, so the sysfs-generated event doesn't carry any of the PRODUCT, EV, KEY, etc. environment variables describing the input device. Instead the input subsystem has its own function to generate the environment for a call to the /proc/sys/kernel/hotplug helper. This is done in drivers/input.c input_call_hotplug(). Because this isn't related to the sysfs event, there's no way for it to include the DEVPATH variable that points to the path in the sysfs filesystem. There are patches starting to float around now to update the kernel to use the new driver core; at this point udev will be able to drop /proc/sys/kernel/hotplug compatibility completely as all events will come from the netlink socket and be well-formed. udev *used* to handle this; when it received an event without the required variables it would skip any udev.rules processing and just run the old /etc/hotplug.d/ scripts. udev-0.059 dropped direct support for these scripts, and instead included a "udev_run_hotplugd" helper that distributions could chose to ship alongside and add a udev.rules entry to run it. This also meant that support for the "malformed" uevents was dropped at the same time, as there's no way to perform udev.rules checking with them. The right solution, long-term, is for the kernel to use the new driver core for the input subsystem. This will mean all sorts of hacks will go away, and bring us one step closer to world peace and stuff. The short term solution we've adopted in Ubuntu is the attached patch that handles input subsystem events that are missing a devpath by directly execing udev_run_hotplugd and letting that deal with it. Scott [0] the new name for what used to be hotplug events. --=20 Scott James Remnant scott at ubuntu.com --=-HS/xhRS6lqwUixJxEXED Content-Description: Content-Disposition: inline; filename=hotplug_input_events Content-Type: text/x-patch; charset=UTF-8 Content-Transfer-Encoding: base64 ZGlmZiAtcnVOcCB1ZGV2LTA2MC5vcmlnL3VkZXYuYyB1ZGV2LTA2MC91ZGV2LmMNCi0tLSB1ZGV2 LTA2MC5vcmlnL3VkZXYuYwkyMDA1LTA5LTIzIDIzOjA4OjI1LjM3NDg4MzAwMCArMDEwMA0KKysr IHVkZXYtMDYwL3VkZXYuYwkyMDA1LTA5LTIzIDIzOjIyOjQ1LjAzNDE5NTg2NCArMDEwMA0KQEAg LTExNCwxMSArMTE0LDI1IEBAIGludCBtYWluKGludCBhcmdjLCBjaGFyICphcmd2W10sIGNoYXIg KmUNCiAJaWYgKCFzdWJzeXN0ZW0gJiYgYXJnYyA9PSAyKQ0KIAkJc3Vic3lzdGVtID0gYXJndlsx XTsNCiANCi0JaWYgKCFhY3Rpb24gfHwgIXN1YnN5c3RlbSB8fCAhZGV2cGF0aCkgew0KLQkJZXJy KCJhY3Rpb24sIHN1YnN5c3RlbSBvciBkZXZwYXRoIG1pc3NpbmciKTsNCisJaWYgKCFhY3Rpb24g fHwgIXN1YnN5c3RlbSkgew0KKwkJZXJyKCJhY3Rpb24gb3Igc3Vic3lzdGVtIG1pc3NpbmciKTsN CiAJCWdvdG8gZXhpdDsNCiAJfQ0KIA0KKwlpZiAoIWRldnBhdGgpIHsNCisJCWlmICghc3RyY21w KHN1YnN5c3RlbSwgImlucHV0IikpIHsNCisJCQlkYmcoImlucHV0IGV2ZW50IHdpdGhvdXQgZGV2 cGF0aCIpOw0KKwkJCWxvZ2dpbmdfY2xvc2UoKTsNCisNCisJCQlleGVjdigiL3NiaW4vdWRldl9y dW5faG90cGx1Z2QiLCBhcmd2KTsNCisJCQllcnIoImV4ZWMgb2YgY2hpbGQgZmFpbGVkIik7DQor CQkJX2V4aXQoMSk7DQorCQl9IGVsc2Ugew0KKwkJCWVycigiZGV2cGF0aCBtaXNzaW5nIik7DQor CQkJZ290byBleGl0Ow0KKwkJfQ0KKwl9DQorDQogCS8qIGV4cG9ydCBsb2dfcHJpb3JpdHkgLCBh cyBjYWxsZWQgcHJvZ3JhbXMgbWF5IHdhbnQgdG8gZG8gdGhlIHNhbWUgYXMgdWRldiAqLw0KIAlp ZiAodWRldl9sb2dfcHJpb3JpdHkpIHsNCiAJCWNoYXIgcHJpb3JpdHlbMzJdOw0K --=-HS/xhRS6lqwUixJxEXED-- --=-zi1zEZaOeXx0Q2S2xJcF Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQBDNIwDSnQiFMl4yK4RAhKOAJwPHCWelljZT0EE1qNl8uFoKFx10QCbBT2C irWEYokp/LsjLX3BsGU4Sv0= =qIgA -----END PGP SIGNATURE----- --=-zi1zEZaOeXx0Q2S2xJcF-- -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 00:34:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 01:34:57 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050924003457.90FEA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux ------- Additional Comments From joerg.unglaub at gmail.com 2005-09-24 01:34 UTC ------- (In reply to comment #11) > just uploaded 2.6.12-9 it doesn't improve Alps middle button behaviour Thanks, The touchpad movement speed is as it should be now with the synaptics driver but the tap'n'drag doesn't work yet. My Xorg.log to verify the synaptics driver is loaded by the way I tried qsynaptics to configure the pad but the settings had no effect on the pad behaviour :-( -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 00:38:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 01:38:24 +0100 (BST) Subject: [Bug 13404] kernel 2.6.12 breaks touchpad behaviour In-Reply-To: Message-ID: <20050924003824.0329022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13404 Ubuntu | linux ------- Additional Comments From joerg.unglaub at gmail.com 2005-09-24 01:38 UTC ------- Oh i forgot to paste it in but here it is. (II) Synaptics touchpad driver version 0.13.6 (--) Synaptics Touchpad auto-dev sets device to /dev/input/event1 (**) Option "Device" "/dev/input/event1" (**) Option "SHMConfig" "on" (**) Option "FingerLow" "25" (**) Option "FingerHigh" "30" (**) Option "MaxTapTime" "180" (**) Option "MaxTapMove" "220" (**) Option "VertScrollDelta" "200" (**) Option "HorizScrollDelta" "200" (--) Synaptics Touchpad ALPS touchpad found (**) Option "SendCoreEvents" "true" (**) Synaptics Touchpad: always reports core events (WW) : No Device specified, looking for one... (II) : Setting Device option to "/dev/psaux" (--) : Device: "/dev/psaux" (==) : Protocol: "Auto" (**) Option "CorePointer" (**) : Core Pointer (==) : Emulate3Buttons, Emulate3Timeout: 50 (==) : Buttons: 3 (II) XINPUT: Adding extended input device "" (type: MOUSE) (II) XINPUT: Adding extended input device "Synaptics Touchpad" (type: MOUSE) (II) XINPUT: Adding extended input device "Generic Keyboard" (type: KEYBOARD) Synaptics DeviceInit called SynapticsCtrl called. Synaptics DeviceOn called (--) Synaptics Touchpad ALPS touchpad found (--) : PnP-detected protocol: "ExplorerPS/2" (II) : ps2EnableDataReporting: succeeded -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 01:24:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 02:24:42 +0100 (BST) Subject: [Bug 8358] No sound on ThinkPad 600E In-Reply-To: Message-ID: <20050924012442.8264C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8358 Ubuntu | linux ------- Additional Comments From sb73542 at safe-mail.net 2005-09-24 02:24 UTC ------- The soundcard in Thinkpad 600 and 600E is *NOT* PnP. It is just plain ISA. It is well supported by ALSA driver snd-cs4236. This card is a major hassle to get working with Ubuntu Warty and Hoary. I haven't tried it with Breezy preview. I have found that on Mandrake-based distros, I can use alsaconf to probe for non- PnP cards, and it finds and configure this card without a problem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 01:27:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 02:27:21 +0100 (BST) Subject: [Bug 15346] Wireless device requires wlanctl-ng commands in order to work properly In-Reply-To: Message-ID: <20050924012721.AF90D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15346 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-24 02:27 UTC ------- I am up-to-date with the current packages and it still does not work. Should I add some debugging code to linux-wlan-ng-pre-up, send it to you and we can compare notes? I am also up for mailing the thing to you. Also, I do not understand how the installer can use this device as a network interface when I cannot find the wlanctl-ng executable when in the installer's shell. Perhaps I misunderstood something. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 05:02:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 06:02:00 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot : unhappy with NIC In-Reply-To: Message-ID: <20050924050200.6038F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From vincent.trouilliez at modulonet.fr 2005-09-24 06:02 UTC ------- Update: just installed Colony 5 with the brand new 2.6.12-9 kernel, and things seem to have changed a bit: Now it hangs for 20+ seconds right from the start, then only, does it print the usual cp/too messages on the screen. Seems trivial, but if that wasn't done on purpose, then maybe that can give a clue of some sort ?? I really would like to sort this out, because it used to work fine and also, it completely ruins the benefit and effect, of the otherwise very nice "usplash" thing... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 05:56:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 06:56:03 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050924055603.B176822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From ubugs.20.kohler at xoxy.net 2005-09-24 06:56 UTC ------- I'm curious if anyone can reproduce this problem on a Breezy system that has been updated in the last day or two. As far as I can tell, there are now two things going on in Breezy that will keep people from seeing this problem. First, there is a problem with the current acpi-support script /usr/share/acpi-support/power-funcs. The getXuser function will exit with an error, and that will prevent laptop mode from starting. I worked around that bug by replacing "gnome-session" with "x-session-man", and that allowed laptop-mode to start when I unplugged the power. However, even once I had laptop-mode running again. I still don't see the hangs. This nang used to be reproducible in 10-20 minutes for me. I've tried several session where I left the laptop running on battery power for 30 minutes or more, and I don't see any hangs. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 06:54:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 07:54:42 +0100 (BST) Subject: [Bug 11599] usb flash memory hangs after copying few MB In-Reply-To: Message-ID: <20050924065442.3A1E622F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11599 Ubuntu | linux ------- Additional Comments From rwilliams at water.ci.portland.or.us 2005-09-24 07:54 UTC ------- Similar problem using the kubuntu live dvd. Flash drives (both memorex and sandisk) work okay a time or two and then rapidly decay until they lock up on retrievals. When I do "e2fsck -cckpv /dev/sdb1" under knoppix, it fixes it. I don't believe I have lost data, though I can't be sure. I have an asus k8v se deluxe motherboard with an amd64 3200+. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 09:14:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 10:14:51 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050924091451.A1BF222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From bricem13 at yahoo.com 2005-09-24 10:14 UTC ------- Here it is: [brice at TuxBox:~]$ sudo cat /proc/acpi/event processor CPU0 00000080 00000000 processor CPU0 00000080 00000000 processor CPU0 00000080 00000000 processor CPU0 00000080 00000000 processor CPU0 00000080 00000000 the first 2 lines appear when I unplugg the ACAD, the others when I plug it back in. Regards, Brice -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 09:20:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 10:20:35 +0100 (BST) Subject: [Bug 16178] capability module is not loaded, breaking apps In-Reply-To: Message-ID: <20050924092035.ED0A222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16178 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com Severity|normal |critical Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From mdz at ubuntu.com 2005-09-24 10:20 UTC ------- I can confirm that it doesn't seem to be loading; perhaps an initramfs issue? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 09:28:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 10:28:18 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050924092818.5C6D822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mjuliuss at online.no 2005-09-24 10:28 UTC ------- (In reply to comment #80) > I'm curious if anyone can reproduce this problem on a Breezy system that has > been updated in the last day or two. As far as I can tell, there are now two > things going on in Breezy that will keep people from seeing this problem. My Acer TravelMate 620 (which got this problem) just hung. Last time I updated it was maybe an hour ago. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 12:30:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 13:30:09 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050924123009.C6E0E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-24 13:30 UTC ------- If it were sending AC events to acpid, it would look like ac_adapter ACAD 00000000 00000000 so your system isn't sending the correct event on AC insertion/removal. This looks like a Linux kernel bug, since your DSDT looks like it should do so. Are you happy filing a bug about this in bugzilla.kernel.org? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 12:55:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 13:55:37 +0100 (BST) Subject: [Bug 13885] USB mouse freezing under Xorg with linux-image-2.6.12 In-Reply-To: Message-ID: <20050924125537.1F67222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13885 Ubuntu | linux ------- Additional Comments From ubuntubug at curo.dk 2005-09-24 13:55 UTC ------- This issue is not solved for me. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 14:05:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 15:05:03 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050924140503.2045F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From cyrille.lebeaupin at gmail.com 2005-09-24 15:05 UTC ------- All is good with the last kernel version 2.6.12-9. What are the changes ? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 14:19:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 15:19:51 +0100 (BST) Subject: [Bug 9857] Missing power events on nondescript Sony laptop? In-Reply-To: Message-ID: <20050924141951.0C68D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9857 Ubuntu (laptop) | linux ------- Additional Comments From bricem13 at yahoo.com 2005-09-24 15:19 UTC ------- done: http://bugzilla.kernel.org/show_bug.cgi?id=5305 regards, Brice -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 14:31:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 15:31:15 +0100 (BST) Subject: [Bug 16162] After wake from hibernation on Thinkpad T42, blank screen and lockup In-Reply-To: Message-ID: <20050924143115.3E0CA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16162 Ubuntu | linux stansdad at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From stansdad at gmail.com 2005-09-24 15:31 UTC ------- I can confirm this exact problem with another ThinkPad T42. Hibernate the ThinkPad. Turn on the ThinkPad. Everything seems to go right until the two lines that start GTM Info. Then a blank screen with a cursor blink. Nothing to do then but powerdown. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 14:36:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 15:36:40 +0100 (BST) Subject: [Bug 10662] cs: pcmcia_socket0: unable to apply power In-Reply-To: Message-ID: <20050924143640.9A97C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10662 Ubuntu (laptop) | linux nacho.exr at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 15:03:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 16:03:46 +0100 (BST) Subject: [Bug 10662] cs: pcmcia_socket0: unable to apply power In-Reply-To: Message-ID: <20050924150346.64D7222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10662 Ubuntu (laptop) | linux ------- Additional Comments From nacho.exr at gmail.com 2005-09-24 16:03 UTC ------- Created an attachment (id=4047) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4047&action=view) lspci (with and without the pcmcia card) & lsmod This are the 'lspci' and the 'lsmod' outputs of my Compaq Evo N600c laptop with the same bug. The bug appears if the pcmcia is inserted while Ubuntu is running. More information about the bug can be found at: http://kernel.org/pub/linux/utils/kernel/pcmcia/powerbugs.html#1 Laptop: Compaq Evo n600c PCMCIA Card: Conceptronic USB 2.0 card (pcmcia type II) But yesterday I've found that with the Ubuntu Hoary Live the pcmcia card support its ok, and the acpi power management, intel speedstep, etc... supported too but with the Ubuntu installed doesn't work, nothing works, nor acpi/speedstep nor pcmcia card. I'll submit my dmesg output too. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 15:05:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 16:05:53 +0100 (BST) Subject: [Bug 10662] cs: pcmcia_socket0: unable to apply power In-Reply-To: Message-ID: <20050924150553.8E12A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10662 Ubuntu (laptop) | linux ------- Additional Comments From nacho.exr at gmail.com 2005-09-24 16:05 UTC ------- Created an attachment (id=4048) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4048&action=view) dmesg output dmesg output in Compaq Evo N600c with ubuntu completely loaded and connecting the pcmcia card after login with an user. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 16:24:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 17:24:58 +0100 (BST) Subject: [Bug 8426] No ethernet, nor sata-disks with AMD64/K8S-MX In-Reply-To: Message-ID: <20050924162458.61F9D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8426 Ubuntu (installer) | linux ------- Additional Comments From p3d_desti at planet64bit.de 2005-09-24 17:24 UTC ------- I tried the ubuntu-5.10-preview-install-amd64.iso and it still doesn't work. Mandriva is working on the sata patch, see this bug: http://bugzilla.kernel.org/show_bug.cgi?id=4192 The second is the SIS965L NIC, the sis900 driver is the wrong one. This chip needs the sis190 driver, which could be found at http://www.sis.com/download/agreement.php?id=155884 Mandriva had also added a sis190 patch into their kernel ( http://www.mandrivalinux.com/en/mandrivalinux-2006-beta.php3 # kernel 2.6.12-12mdk * 2.6.12.6 * Added sata_sil24 module, SiS182? minimal support, SiS190? driver, support of the IDE chipset of the SiS965L? boards.) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 16:27:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 17:27:02 +0100 (BST) Subject: [Bug 8426] No ethernet, nor sata-disks with AMD64/K8S-MX In-Reply-To: Message-ID: <20050924162702.1719022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8426 Ubuntu (installer) | linux ------- Additional Comments From p3d_desti at planet64bit.de 2005-09-24 17:27 UTC ------- Created an attachment (id=4049) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4049&action=view) Mandriva_sis190_patch -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 17:15:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 18:15:42 +0100 (BST) Subject: [Bug 16185] System Freezes on me randomly In-Reply-To: Message-ID: <20050924171542.4455522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16185 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-24 18:15 UTC ------- You can start with https://wiki.ubuntu.com/DebuggingSystemCrash Also try running without any VMWare drivers or other third-party code and check whether the crash still occurs. Attach your /var/log/dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 17:27:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 18:27:50 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050924172750.27E0E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-24 18:27 UTC ------- Ben, any idea what could have happened here? We know that vga16fb fails on some hardware, but this case is interesting because Hoary is reported to work. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:07:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:07:51 +0100 (BST) Subject: [Bug 16235] New: ndiswrapper module fails to load Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16235 Ubuntu | linux-restricted-modules Summary: ndiswrapper module fails to load Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: amp at singingwizard.org QAContact: kernel-bugs at lists.ubuntu.com After installing Daily 092305 I tried to setup ndiswrappers. modprobe'ing the module causes unknown symbols (see below). this happen whether or not the NDIS driver is installed. amp at chrome:~/bcmwl5a$ sudo modprobe ndiswrapper FATAL: Error inserting ndiswrapper (/lib/modules/2.6.12-9-amd64-generic/kernel/drivers/net/ndiswrapper/ndiswrapper.ko): Unknown symbol in module, or unknown parameter (see dmesg) amp at chrome:~/bcmwl5a$ dmesg symbol x86_64_RtlAnsiStringToUnicodeString [ 3666.339561] ndiswrapper: Unknown symbol x86_64_NdisInitializeReadWriteLock [ 3666.339634] ndiswrapper: Unknown symbol x86_64_KeAcquireSpinLockRaiseToDpc [ 3666.339743] ndiswrapper: Unknown symbol x86_64_KeAcquireSpinLockAtDpcLevel [ 3666.339816] ndiswrapper: Unknown symbol x86_64_NdisFreeMemory [ 3666.339889] ndiswrapper: Unknown symbol x86_64_ExQueryDepthSList [ 3666.339961] ndiswrapper: Unknown symbol x86_64_NdisDprAcquireSpinLock [ 3666.340040] ndiswrapper: Unknown symbol x86_64_NdisUnchainBufferAtBack [ 3666.340119] ndiswrapper: Unknown symbol x86_64_NdisInitializeTimer [ 3666.340192] ndiswrapper: Unknown symbol x86_64_NdisQueryBuffer [ 3666.340264] ndiswrapper: Unknown symbol x86_64_rand [ 3666.340336] ndiswrapper: Unknown symbol x86_64_InterlockedPushEntrySList [ 3666.340441] ndiswrapper: Unknown symbol x86_64_KeLowerIrql [ 3666.340564] ndiswrapper: Unknown symbol x86_64_NdisInterlockedInsertTailList [ 3666.340637] ndiswrapper: Unknown symbol x86_64_NdisQueryBufferOffset [ 3666.340710] ndiswrapper: Unknown symbol x86_64_ObfDereferenceObject [ 3666.340783] ndiswrapper: Unknown symbol x86_64_NdisReadConfiguration [ 3666.340856] ndiswrapper: Unknown symbol x86_64_RtlWriteRegistryValue [ 3666.340929] ndiswrapper: Unknown symbol x86_64_USBD_ParseConfigurationDescriptor [ 3666.341003] ndiswrapper: Unknown symbol x86_64_RtlFreeAnsiString [ 3666.341075] ndiswrapper: Unknown symbol x86_64_IoDeleteSymbolicLink [ 3666.341154] ndiswrapper: Unknown symbol x86_64_NdisMUnmapIoSpace [ 3666.341226] ndiswrapper: Unknown symbol x86_64_NdisUnmapFile [ 3666.341302] ndiswrapper: Unknown symbol x86_64_KefReleaseSpinLockFromDpcLevel[ 3666.341376] ndiswrapper: Unknown symbol x86_64_NdisMSendComplete [ 3666.341448] ndiswrapper: Unknown symbol x86_64_NdisInitializeEvent [ 3666.341521] ndiswrapper: Unknown symbol x86_64_KeWaitForSingleObject [ 3666.341594] ndiswrapper: Unknown symbol x86_64_KeQueryPriorityThread [ 3666.341668] ndiswrapper: Unknown symbol x86_64_NdisOpenProtocolConfiguration [ 3666.341751] ndiswrapper: Unknown symbol x86_64_NdisUnicodeStringToAnsiString [ 3666.341855] ndiswrapper: Unknown symbol x86_64_NdisFreePacket [ 3666.341932] ndiswrapper: Unknown symbol x86_64_MmIsAddressValid [ 3666.342005] ndiswrapper: Unknown symbol x86_64_RtlIntegerToUnicodeString [ 3666.342078] ndiswrapper: Unknown symbol x86_64_NdisAnsiStringToUnicodeString [ 3666.342158] ndiswrapper: Unknown symbol x86_64_KeClearEvent [ 3666.342266] ndiswrapper: Unknown symbol x86_64__allshl [ 3666.342338] ndiswrapper: Unknown symbol x86_64_InterlockedExchange [ 3666.342411] ndiswrapper: Unknown symbol x86_64__allshr [ 3666.342483] ndiswrapper: Unknown symbol x86_64_READ_PORT_BUFFER_USHORT [ 3666.342556] ndiswrapper: Unknown symbol x86_64_IofCallDriver [ 3666.342628] ndiswrapper: Unknown symbol x86_64__win_memchr [ 3666.342701] ndiswrapper: Unknown symbol x86_64__aullshl [ 3666.342773] ndiswrapper: Unknown symbol x86_64_PoCallDriver [ 3666.342845] ndiswrapper: Unknown symbol lin_to_win3 [ 3666.342917] ndiswrapper: Unknown symbol x86_64_NdisScheduleWorkItem [ 3666.342990] ndiswrapper: Unknown symbol lin_to_win1 [ 3666.343062] ndiswrapper: Unknown symbol x86_64_DbgPrint [ 3666.343140] ndiswrapper: Unknown symbol x86_64_NdisAllocatePacket [ 3666.343212] ndiswrapper: Unknown symbol x86_64_NdisMRegisterIoPortRange [ 3666.343285] ndiswrapper: Unknown symbol x86_64__allmul [ 3666.343357] ndiswrapper: Unknown symbol x86_64_KfReleaseSpinLock [ 3666.343430] ndiswrapper: Unknown symbol x86_64_NdisMFreeMapRegisters [ 3666.343502] ndiswrapper: Unknown symbol x86_64__win_strlen [ 3666.343579] ndiswrapper: Unknown symbol x86_64_NdisBufferVirtualAddress [ 3666.343653] ndiswrapper: Unknown symbol x86_64_KeInitializeSpinLock [ 3666.343726] ndiswrapper: Unknown symbol x86_64_NdisInterlockedInsertHeadList [ 3666.343799] ndiswrapper: Unknown symbol x86_64_IoAllocateMdl [ 3666.343872] ndiswrapper: Unknown symbol x86_64_NdisMInitializeTimer [ 3666.343944] ndiswrapper: Unknown symbol x86_64__win_vsprintf [ 3666.344017] ndiswrapper: Unknown symbol x86_64_NdisReadPcmciaAttributeMemory [ 3666.344097] ndiswrapper: Unknown symbol x86_64_WRITE_PORT_UCHAR [ 3666.344175] ndiswrapper: Unknown symbol x86_64_NdisWaitEvent [ 3666.344248] ndiswrapper: Unknown symbol x86_64_MmMapLockedPages [ 3666.344320] ndiswrapper: Unknown symbol x86_64_RtlCopyUnicodeString [ 3666.344393] ndiswrapper: Unknown symbol x86_64_NdisMAllocateSharedMemory [ 3666.344466] ndiswrapper: Unknown symbol x86_64_ExpInterlockedPopEntrySList [ 3666.344540] ndiswrapper: Unknown symbol x86_64_ExfInterlockedRemoveHeadList [ 3666.344613] ndiswrapper: Unknown symbol x86_64_USBD_CreateConfigurationRequestEx [ 3666.344700] ndiswrapper: Unknown symbol x86_64_IoFreeMdl [ 3666.344776] ndiswrapper: Unknown symbol x86_64_RtlEqualString [ 3666.344849] ndiswrapper: Unknown symbol x86_64__aullmul [ 3666.344925] ndiswrapper: Unknown symbol x86_64_RtlUnicodeStringToInteger [ 3666.344998] ndiswrapper: Unknown symbol x86_64_IoWMIRegistrationControl [ 3666.345071] ndiswrapper: Unknown symbol x86_64_READ_PORT_ULONG [ 3666.345162] ndiswrapper: Unknown symbol x86_64_KeBugCheckEx [ 3666.345235] ndiswrapper: Unknown symbol x86_64_IoCancelIrp [ 3666.345343] ndiswrapper: Unknown symbol x86_64_NdisCloseConfiguration [ 3666.345451] ndiswrapper: Unknown symbol x86_64__win__vsnprintf [ 3666.345532] ndiswrapper: Unknown symbol x86_64_NdisInterlockedDecrement [ 3666.345606] ndiswrapper: Unknown symbol x86_64_WRITE_REGISTER_ULONG [ 3666.345679] ndiswrapper: Unknown symbol x86_64_NdisMGetDeviceProperty [ 3666.345752] ndiswrapper: Unknown symbol x86_64_KfAcquireSpinLock [ 3666.345825] ndiswrapper: Unknown symbol x86_64_NdisMRemoveMiniport [ 3666.345897] ndiswrapper: Unknown symbol x86_64_KeReleaseSpinLock [ 3666.345970] ndiswrapper: Unknown symbol x86_64_NdisMDeregisterIoPortRange [ 3666.346043] ndiswrapper: Unknown symbol x86_64_ZwClose [ 3666.346153] ndiswrapper: Unknown symbol x86_64_IoIsWdmVersionAvailable [ 3666.346226] ndiswrapper: Unknown symbol x86_64_NdisWriteErrorLogEntry [ 3666.346299] ndiswrapper: Unknown symbol lin_to_win6 [ 3666.346402] ndiswrapper: Unknown symbol x86_64_KeReleaseMutex [ 3666.346474] ndiswrapper: Unknown symbol x86_64__win_strcmp [ 3666.346547] ndiswrapper: Unknown symbol x86_64__win_vsnprintf [ 3666.346639] ndiswrapper: Unknown symbol x86_64__win_memmove [ 3666.346712] ndiswrapper: Unknown symbol x86_64_KeSetEvent [ 3666.346806] ndiswrapper: Unknown symbol x86_64__win_strncmp [ 3666.346885] ndiswrapper: Unknown symbol x86_64_NdisAllocateMemory [ 3666.346988] ndiswrapper: Unknown symbol x86_64_USBD_CreateConfigurationRequest [ 3666.347061] ndiswrapper: Unknown symbol x86_64_NdisMRegisterMiniport [ 3666.347181] ndiswrapper: Unknown symbol x86_64_InterlockedDecrement [ 3666.347254] ndiswrapper: Unknown symbol x86_64_NdisCopyFromPacketToPacket [ 3666.347347] ndiswrapper: Unknown symbol x86_64_NdisBufferLength [ 3666.347419] ndiswrapper: Unknown symbol x86_64__win_strcpy [ 3666.347491] ndiswrapper: Unknown symbol x86_64_EthFilterDprIndicateReceive [ 3666.347565] ndiswrapper: Unknown symbol x86_64_WRITE_PORT_BUFFER_USHORT [ 3666.347661] ndiswrapper: Unknown symbol x86_64_NdisMTransferDataComplete [ 3666.347737] ndiswrapper: Unknown symbol x86_64_NdisInterlockedIncrement [ 3666.347810] ndiswrapper: Unknown symbol x86_64_KeAcquireSpinLock [ 3666.347883] ndiswrapper: Unknown symbol x86_64_NdisOpenConfigurationKeyByName[ 3666.347956] ndiswrapper: Unknown symbol x86_64_InterlockedCompareExchange [ 3666.348029] ndiswrapper: Unknown symbol x86_64_NdisQueryBufferSafe [ 3666.348133] ndiswrapper: Unknown symbol x86_64_READ_PORT_USHORT [ 3666.348206] ndiswrapper: Unknown symbol x86_64_ObReferenceObjectByHandle [ 3666.348279] ndiswrapper: Unknown symbol x86_64_EthRxIndicateHandler [ 3666.348375] ndiswrapper: Unknown symbol x86_64_WRITE_REGISTER_USHORT [ 3666.348448] ndiswrapper: Unknown symbol x86_64_IoInitializeIrp [ 3666.348521] ndiswrapper: Unknown symbol x86_64_NdisMRegisterDevice [ 3666.348602] ndiswrapper: Unknown symbol x86_64_IoCreateDevice [ 3666.348706] ndiswrapper: Unknown symbol lin_to_win5 [ 3666.348778] ndiswrapper: Unknown symbol x86_64_NdisMCompleteBufferPhysicalMapping [ 3666.348851] ndiswrapper: Unknown symbol x86_64_ObDereferenceObject [ 3666.348924] ndiswrapper: Unknown symbol x86_64_ExDeleteNPagedLookasideList [ 3666.348997] ndiswrapper: Unknown symbol x86_64_KfRaiseIrql [ 3666.349069] ndiswrapper: Unknown symbol x86_64_IoDeleteDevice [ 3666.349148] ndiswrapper: Unknown symbol x86_64_NdisAllocateMemoryWithTag [ 3666.349256] ndiswrapper: Unknown symbol x86_64_RtlEqualUnicodeString [ 3666.349328] ndiswrapper: Unknown symbol x86_64__win_snprintf [ 3666.349401] ndiswrapper: Unknown symbol x86_64_EthRxComplete [ 3666.349473] ndiswrapper: Unknown symbol x86_64__aullshr [ 3666.349545] ndiswrapper: Unknown symbol x86_64_NdisMCoActivateVcComplete [ 3666.349618] ndiswrapper: Unknown symbol x86_64_MmMapLockedPagesSpecifyCache [ 3666.349692] ndiswrapper: Unknown symbol x86_64_NdisMQueryAdapterInstanceName [ 3666.349766] ndiswrapper: Unknown symbol x86_64__alldiv [ 3666.349864] ndiswrapper: Unknown symbol x86_64_NdisAllocateBufferPool [ 3666.349937] ndiswrapper: Unknown symbol x86_64_NdisMAllocateMapRegisters [ 3666.350010] ndiswrapper: Unknown symbol x86_64_NdisAllocatePacketPool [ 3666.350083] ndiswrapper: Unknown symbol x86_64_NdisPacketPoolUsage [ 3666.350162] ndiswrapper: Unknown symbol x86_64_KefAcquireSpinLockAtDpcLevel [ 3666.350235] ndiswrapper: Unknown symbol x86_64_NdisCancelTimer [ 3666.350339] ndiswrapper: Unknown symbol x86_64_NdisInitAnsiString [ 3666.350411] ndiswrapper: Unknown symbol x86_64_NdisMFreeSharedMemory [ 3666.350484] ndiswrapper: Unknown symbol x86_64_NdisInitializeString [ 3666.350557] ndiswrapper: Unknown symbol x86_64_NdisMIndicateStatusComplete [ 3666.350669] ndiswrapper: Unknown symbol x86_64_InterlockedPopEntrySList [ 3666.350742] ndiswrapper: Unknown symbol x86_64_NdisMSleep [ 3666.350815] ndiswrapper: Unknown symbol x86_64_NdisMIndicateReceivePacket [ 3666.350896] ndiswrapper: Unknown symbol x86_64_NdisSetEvent [ 3666.350977] ndiswrapper: Unknown symbol x86_64_IoAllocateWorkItem [ 3666.351055] ndiswrapper: Unknown symbol x86_64_NdisMRegisterInterrupt [ 3666.351134] ndiswrapper: Unknown symbol x86_64_NdisMDeregisterAdapterShutdownHandler [ 3666.351207] ndiswrapper: Unknown symbol x86_64_KeGetCurrentThread [ 3666.351280] ndiswrapper: Unknown symbol x86_64_NdisUnchainBufferAtFront [ 3666.351353] ndiswrapper: Unknown symbol x86_64_IoFreeWorkItem [ 3666.351457] ndiswrapper: Unknown symbol x86_64_NdisInitializeWrapper [ 3666.351553] ndiswrapper: Unknown symbol x86_64_NdisMGetDmaAlignment [ 3666.351626] ndiswrapper: Unknown symbol x86_64_NdisMCoDeactivateVcComplete [ 3666.351724] ndiswrapper: Unknown symbol x86_64__win_atoi [ 3666.351797] ndiswrapper: Unknown symbol x86_64_NdisOpenConfigurationKeyByIndex [ 3666.351870] ndiswrapper: Unknown symbol x86_64_MmMapIoSpace [ 3666.351942] ndiswrapper: Unknown symbol x86_64_NdisFreeBufferPool [ 3666.352014] ndiswrapper: Unknown symbol x86_64_KeQueryTimeIncrement [ 3666.352140] ndiswrapper: Unknown symbol x86_64_NdisDprAllocatePacket [ 3666.352213] ndiswrapper: Unknown symbol x86_64_RtlCompareUnicodeString [ 3666.352286] ndiswrapper: Unknown symbol x86_64_NdisCopyFromPacketToPacketSafe[ 3666.352366] ndiswrapper: Unknown symbol x86_64_KeSetTimer [ 3666.352438] ndiswrapper: Unknown symbol x86_64_IoGetDeviceProperty [ 3666.352511] ndiswrapper: Unknown symbol x86_64_PsTerminateSystemThread [ 3666.352583] ndiswrapper: Unknown symbol x86_64_NdisReleaseSpinLock [ 3666.352692] ndiswrapper: Unknown symbol x86_64_MmBuildMdlForNonPagedPool [ 3666.352788] ndiswrapper: Unknown symbol x86_64_PsCreateSystemThread [ 3666.352860] ndiswrapper: Unknown symbol x86_64___C_specific_handler [ 3666.352933] ndiswrapper: Unknown symbol x86_64_NdisInitString [ 3666.353005] ndiswrapper: Unknown symbol x86_64_MmUnlockPages [ 3666.353087] ndiswrapper: Unknown symbol x86_64_NdisMPciAssignResources [ 3666.353165] ndiswrapper: Unknown symbol x86_64_NdisMSynchronizeWithInterrupt [ 3666.353239] ndiswrapper: Unknown symbol x86_64_NdisInterlockedRemoveHeadList [ 3666.353312] ndiswrapper: Unknown symbol x86_64_IoCreateUnprotectedSymbolicLink [ 3666.353410] ndiswrapper: Unknown symbol x86_64_WmiQueryTraceInformation [ 3666.353483] ndiswrapper: Unknown symbol x86_64_NdisGetSystemUpTime [ 3666.353555] ndiswrapper: Unknown symbol x86_64__allrem [ 3666.353627] ndiswrapper: Unknown symbol x86_64_RtlUnwind [ 3666.353700] ndiswrapper: Unknown symbol x86_64__win_strstr [ 3666.353772] ndiswrapper: Unknown symbol x86_64_NdisMRegisterAdapterShutdownHandler [ 3666.353852] ndiswrapper: Unknown symbol x86_64_NdisAllocateSpinLock [ 3666.353924] ndiswrapper: Unknown symbol x86_64_KeCancelTimer [ 3666.353996] ndiswrapper: Unknown symbol x86_64__win_toupper [ 3666.354068] ndiswrapper: Unknown symbol x86_64_IofCompleteRequest [ 3666.354147] ndiswrapper: Unknown symbol x86_64__aullrem [ 3666.354219] ndiswrapper: Unknown symbol x86_64_RtlInitString [ 3666.354291] ndiswrapper: Unknown symbol x86_64_KeWaitForMultipleObjects [ 3666.354364] ndiswrapper: Unknown symbol x86_64_NdisMRegisterUnloadHandler [ 3666.354437] ndiswrapper: Unknown symbol x86_64__win_sprintf [ 3666.354510] ndiswrapper: Unknown symbol x86_64_NdisAdjustBufferLength [ 3666.354582] ndiswrapper: Unknown symbol lin_to_win2 [ 3666.354654] ndiswrapper: Unknown symbol lin_to_win4 [ 3666.354727] ndiswrapper: Unknown symbol x86_64_NdisCloseFile [ 3666.354799] ndiswrapper: Unknown symbol x86_64_NdisMCancelTimer [ 3666.354872] ndiswrapper: Unknown symbol x86_64_NdisGetBufferPhysicalArraySize[ 3666.354950] ndiswrapper: Unknown symbol x86_64_KeGetCurrentIrql [ 3666.355023] ndiswrapper: Unknown symbol x86_64_NdisTerminateWrapper [ 3666.355136] ndiswrapper: Unknown symbol x86_64_KeQueryInterruptTime [ 3666.355216] ndiswrapper: Unknown symbol x86_64_NdisWritePciSlotInformation [ 3666.355289] ndiswrapper: Unknown symbol x86_64_MmSizeOfMdl [ 3666.355372] ndiswrapper: Unknown symbol x86_64_RtlZeroMemory [ 3666.355444] ndiswrapper: Unknown symbol x86_64_IoReleaseCancelSpinLock [ 3666.355517] ndiswrapper: Unknown symbol x86_64_NdisOpenConfiguration [ 3666.355589] ndiswrapper: Unknown symbol x86_64_KeInitializeDpc [ 3666.355662] ndiswrapper: Unknown symbol x86_64_NdisFreeBuffer [ 3666.355735] ndiswrapper: Unknown symbol x86_64_NdisInitUnicodeString [ 3666.355807] ndiswrapper: Unknown symbol x86_64__win_srand [ 3666.355879] ndiswrapper: Unknown symbol x86_64_NdisAllocateBuffer [ 3666.355952] ndiswrapper: Unknown symbol x86_64__win_memset [ 3666.356024] ndiswrapper: Unknown symbol x86_64_KfLowerIrql [ 3666.356139] ndiswrapper: Unknown symbol x86_64_NdisFreePacketPool [ 3666.356211] ndiswrapper: Unknown symbol x86_64_KeQueryPerformanceCounter [ 3666.356284] ndiswrapper: Unknown symbol x86_64_ExInterlockedPopEntrySList [ 3666.356357] ndiswrapper: Unknown symbol x86_64_InterlockedIncrement [ 3666.356445] ndiswrapper: Unknown symbol x86_64_NdisMStartBufferPhysicalMapping [ 3666.356518] ndiswrapper: Unknown symbol x86_64_DbgBreakPoint [ 3666.356590] ndiswrapper: Unknown symbol x86_64_NdisMIndicateStatus [ 3666.356685] ndiswrapper: Unknown symbol x86_64_IoAllocateIrp [ 3666.356766] ndiswrapper: Unknown symbol x86_64_ExInterlockedAddLargeStatistic[ 3666.356839] ndiswrapper: Unknown symbol x86_64_NdisMSetAttributesEx [ 3666.356911] ndiswrapper: Unknown symbol x86_64_ExInitializeNPagedLookasideList [ 3666.356985] ndiswrapper: Unknown symbol x86_64_NdisMSetInformationComplete [ 3666.357058] ndiswrapper: Unknown symbol x86_64_NdisResetEvent -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:11:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:11:39 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050924181139.9011422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-24 19:11 UTC ------- Colony 5 - No worky. It hadn't woorkd with a few daily build, either. Not only does the i82365 not load by itself, but orinocco_cs is not loaded by itself, either. And when I load both modules by hand, I still do not get a wireless device to configure ifconfig and iwconfig only show lo. lsmod: Module Size Used by nls_iso8859_1 4224 1 nls_cp437 5888 1 vfat 12288 1 fat 46492 1 vfat sd_mod 17424 2 usb_storage 64704 1 scsi_mod 125384 2 sd_mod,usb_storage i82365 19548 3 rsrc_nonstatic 12032 1 i82365 orinoco_cs 8456 0 pcmcia 24584 1 orinoco_cs orinoco 33932 1 orinoco_cs hermes 6912 2 orinoco_cs,orinoco pcmcia_core 44932 4 i82365,rsrc_nonstatic,orinoco_cs,pcmcia tsdev 7616 0 irtty_sir 7808 0 sir_dev 17324 1 irtty_sir irda 159804 2 irtty_sir,sir_dev crc_ccitt 2176 1 irda floppy 52692 0 rtc 11832 0 pcspkr 3652 0 dm_mod 50364 1 evdev 9088 0 psmouse 26116 0 mousedev 10912 0 parport_pc 31812 1 lp 11460 0 parport 32072 2 parport_pc,lp md 40656 0 unix 24624 8 ext3 115976 1 jbd 48536 1 ext3 ohci_hcd 18564 0 usbcore 104188 3 usb_storage,ohci_hcd ide_cd 36996 0 cdrom 33952 1 ide_cd ide_disk 16128 3 ide_generic 1664 0 ide_core 125268 4 usb_storage,ide_cd,ide_disk,ide_generic -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:13:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:13:46 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050924181346.E03A522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-24 19:13 UTC ------- What happens if you run sudo /etc/init.d/pcmcia start -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:23:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:23:56 +0100 (BST) Subject: [Bug 16235] amd64 ndiswrapper module fails to load In-Reply-To: Message-ID: <20050924182356.B2F4322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16235 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |ben.collins at ubuntu.com Component|linux-restricted-modules |linux Summary|ndiswrapper module fails to |amd64 ndiswrapper module |load |fails to load -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:24:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:24:45 +0100 (BST) Subject: [Bug 13834] ndiswrapper.ko missing in linux-image-2.6.12-7-amd64-k8 In-Reply-To: Message-ID: <20050924182445.92A1D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13834 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED ------- Additional Comments From mdz at ubuntu.com 2005-09-24 19:24 UTC ------- It definitely has the file now, though bug #16235 claims it won't load -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:39:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:39:26 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050924183926.0BD9522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-24 19:39 UTC ------- * PCMCIA not present If I load the module i83265 by hand, I can then start PCMCIA successfully and get the eth0 device. The same goes for putting i83265 in /etc/modules. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:43:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:43:24 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050924184324.E747122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[Breezy] hangs at boot : |[Breezy] hangs at boot |unhappy with NIC | ------- Additional Comments From ben.collins at ubuntu.com 2005-09-24 19:43 UTC ------- Sounds like to me that this has nothing to do with the NIC then. More than likely something else in the kernel is initializing, and hanging for that long. Can you send the full dmesg output please? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:43:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:43:23 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050924184323.68F3722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-24 19:43 UTC ------- Is this on a laptop? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 18:56:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 19:56:29 +0100 (BST) Subject: [Bug 5544] USB mouse not working after suspend to disk In-Reply-To: Message-ID: <20050924185629.189B122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5544 Ubuntu | linux mlord at pobox.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mlord at pobox.com ------- Additional Comments From mlord at pobox.com 2005-09-24 19:56 UTC ------- Similar problem here with Breezy: USB mouse vanishes after suspend-to-RAM and subsequent resume. Unplugging/replugging has no effect -- not recognized, not even powered again. Full reboot "fixes" it until the next suspend. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 19:05:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 20:05:04 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050924190504.3E01C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-24 20:05 UTC ------- Yup. Toshiba Satellite Pro 460CDT. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 19:11:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 20:11:01 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050924191101.A7DDF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From mjg59 at codon.org.uk 2005-09-24 20:11 UTC ------- Ok. Looks like this isn't fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 19:12:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 20:12:54 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050924191254.CB3B322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-24 20:12 UTC ------- Ugh. Apologies, guys. I just now retested with the Ubuntu Hoary Install-CD and it does have the same problem. So not a regression. Still pretty scarey to look at, though. Like the screen is melting. :) Cheers -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 20:50:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 21:50:25 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050924205025.32FC222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux StempUbuntu at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 20:51:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 21:51:39 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050924205139.24D4922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From StempUbuntu at gmail.com 2005-09-24 21:51 UTC ------- Same here -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 20:52:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 21:52:01 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050924205201.273CD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux StempUbuntu at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |StempUbuntu at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 21:24:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 22:24:02 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050924212402.52C1D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-24 22:24 UTC ------- So this is an LCD screen? I've seen the same affect before, bad mode. What resolution does vga=771 put the framebuffer in? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 21:39:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 22:39:22 +0100 (BST) Subject: [Bug 16243] New: Sis 190 network driver missing Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16243 Ubuntu | linux-restricted-modules Summary: Sis 190 network driver missing Product: Ubuntu Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: rafael at rps.eng.br QAContact: kernel-bugs at lists.ubuntu.com Hi All, I have a onboard sis190 network adapter on my Asus k8s-mx motherboard. Unfortunatelly a driver for this adapter is missing on 5.10 preview. Then I downloaded the driver from http://www.sis.com/download/ and compiled it as a module using linux-headers package and it worked fine. The only problem was: in order to compile a module for the kernel comming with 5.10 preview requires gcc-3.4 but this version of gcc is missing on install CD (I have to download gcc-3.4 packages from another machine). Is there a way to add this driver for another users and future releases? Is there a way to help? Best regards. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 21:59:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 22:59:03 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050924215903.2AE3322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-24 22:59 UTC ------- Yes, as reported, it is a notebook computer. The vga=771 gives what *appears* to be a text mode console for the installer. Dunno what the resolution is, though (any way to find out from the installer?). The screen is 1920x1200 native. And leaving vga=771 is no good after installation, as it prevents use of the Linux VGA console screens. Cheers -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 22:04:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sat, 24 Sep 2005 23:04:16 +0100 (BST) Subject: [Bug 14563] Wireless firmware errors from ipw2x00 In-Reply-To: Message-ID: <20050924220416.6981C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14563 Ubuntu | linux ------- Additional Comments From mwh at sysrq.dk 2005-09-24 23:04 UTC ------- As of daily build 20050924, I do not get this error anymore. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 23:19:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 00:19:02 +0100 (BST) Subject: [Bug 16178] capability module is not loaded, breaking apps In-Reply-To: Message-ID: <20050924231902.C73D622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16178 Ubuntu | linux jbailey at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |jbailey at ubuntu.com Status|NEW |ASSIGNED ------- Additional Comments From jbailey at ubuntu.com 2005-09-25 00:19 UTC ------- initramfs-tools 0.29 should fix this. The script that copies this wasn't chmod +x in 0.28. Can you please try reconfiguring your kernel like so: dpkg-reconfigure linux-image-$(uname -r) And see if that solves the problem? Thanks! Tks, Jeff Bailey -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 23:36:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 00:36:46 +0100 (BST) Subject: [Bug 10155] sound still comes out of speakers when PCM volume is set to 0 In-Reply-To: Message-ID: <20050924233646.6253B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10155 Ubuntu | linux dufresnj at lafayette.edu changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dufresnj at lafayette.edu ------- Additional Comments From dufresnj at lafayette.edu 2005-09-25 00:36 UTC ------- I am having the same problem but for me this occurs when when "Master" is set to zero. This occurs on powerbook (tibook series) so this seems like this isn't related to the hardware. This is with breezy updated on 9/23 $ cat /proc/asound/cards 0 [Screamer ]: PMac Screamer - PowerMac Screamer PowerMac Screamer Rev 0 $ amixer Simple mixer control 'Master',0 Capabilities: pvolume pswitch pswitch-joined cswitch cswitch-joined Playback channels: Front Left - Front Right Capture channels: Mono Limits: Playback 0 - 15 Mono: Capture [off] Front Left: Playback 0 [0%] [on] Front Right: Playback 0 [0%] [on] Simple mixer control 'Headphone Detection',0 Capabilities: pswitch pswitch-joined Playback channels: Mono Mono: Playback [on] Simple mixer control 'Line',0 Capabilities: cswitch cswitch-joined Capture channels: Mono Mono: Capture [off] Simple mixer control 'CD',0 Capabilities: cswitch cswitch-joined Capture channels: Mono Mono: Capture [off] Simple mixer control 'Mic',0 Capabilities: cswitch cswitch-joined Capture channels: Mono Mono: Capture [on] Simple mixer control 'Mic Boost',0 Capabilities: volume volume-joined Playback channels: Mono Limits: 0 - 2 Mono: 2 [100%] Simple mixer control 'PC Speaker',0 Capabilities: pvolume pswitch pswitch-joined Playback channels: Front Left - Front Right Limits: Playback 0 - 15 Front Left: Playback 4 [27%] [off] Front Right: Playback 4 [27%] [off] Simple mixer control 'Capture',0 Capabilities: cvolume Capture channels: Front Left - Front Right Limits: Capture 0 - 15 Front Left: Capture 15 [100%] Front Right: Capture 15 [100%] Simple mixer control 'Auto Mute',0 Capabilities: pswitch pswitch-joined Playback channels: Mono Mono: Playback [on] Simple mixer control 'Beep',0 Capabilities: pvolume pvolume-joined Playback channels: Mono Limits: Playback 0 - 100 Mono: Playback 15 [15%] -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sat Sep 24 23:47:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 00:47:48 +0100 (BST) Subject: [Bug 13535] Kernel does not search for DSDT in initramfs In-Reply-To: Message-ID: <20050924234748.7FBD422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13535 Ubuntu | linux ------- Additional Comments From jbailey at ubuntu.com 2005-09-25 00:47 UTC ------- (In reply to comment #6) > Is this documented in the release notes yet? Done. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 00:05:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 01:05:35 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050925000535.665D922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From vincent.trouilliez at modulonet.fr 2005-09-25 01:05 UTC ------- Created an attachment (id=4053) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4053&action=view) Complete /var/log/dmesg output Sure, here it is... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 00:10:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 01:10:26 +0100 (BST) Subject: [Bug 1891] open()ing invalid devices freezes a process In-Reply-To: Message-ID: <20050925001026.C08AD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1891 Ubuntu | linux sandisn at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sandisn at gmail.com ------- Additional Comments From sandisn at gmail.com 2005-09-25 01:10 UTC ------- *** Bug 13098 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 00:18:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 01:18:36 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050925001836.2DC1E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From mateusz at loskot.net 2005-09-25 01:18 UTC ------- About 2 hours ago I updated my Breezy installation and compiled/installed spca5xx in order to use my Creative Notebook Webcam. I report the problem still exists: mloskot at dog:~$ cat /var/log/messages|grep spca Sep 25 01:13:04 localhost kernel: [ 7664.585128] spca5xx: module license 'unspecified' taints kernel. I have module loaded but seems unused: mloskot at dog:~$ lsmod | grep video videodev 11904 0 mloskot at dog:~$ lsmod | grep spca spca5xx 86192 0 mloskot at dog:~$ lsusb Bus 003 Device 002: ID 0402:5642 ALi Corp. Bus 003 Device 001: ID 0000:0000 Bus 002 Device 002: ID 062a:0001 Creative Labs Notebook Optical Mouse Bus 002 Device 001: ID 0000:0000 Bus 001 Device 002: ID 041e:401f Creative Technology, Ltd Webcam Notebook Bus 001 Device 001: ID 0000:0000 When I try to run camorama, webcam or other webcam software I got message below: mloskot at dog:~$ webcam reading config file: /home/mloskot/.webcamrc v4l2: open /dev/video0: No such file or directory v4l2: open /dev/video0: No such file or directory v4l: open /dev/video0: No such file or directory no grabber device available As I understand, inspite of comments to this bug, the bug is still unresolved right? mloskot at dog:~$ uname -a Linux dog 2.6.12-9-amd64-generic #1 Thu Sep 22 22:00:40 BST 2005 x86_64 GNU/Linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 00:27:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 01:27:07 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050925002707.D652A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From mateusz at loskot.net 2005-09-25 01:27 UTC ------- I've just tried to create /dev/video* by hand. Certainly, seems I tried to do something stupid, but you know...the faith :-) sudo mknod /dev/video0 c 81 0 sudo mknod /dev/video1 c 81 1 sudo chmod a+rw /dev/video0 sudo ln -s /dev/video0 /dev/vide Then I see those nodes: mloskot at dog:~$ ls -l /dev/video* lrwxrwxrwx 1 root root 11 2005-09-25 02:22 /dev/video -> /dev/video0 crw-rw-rw- 1 root root 81, 0 2005-09-25 02:21 /dev/video0 crw-r--r-- 1 root root 81, 1 2005-09-25 02:21 /dev/video1 but no cam client works. I get the same error message: mloskot at dog:~$ webcam reading config file: /home/mloskot/.webcamrc v4l2: open /dev/video0: No such device v4l2: open /dev/video0: No such device v4l: open /dev/video0: No such device no grabber device available -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 01:24:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 02:24:41 +0100 (BST) Subject: [Bug 16185] System Freezes on me randomly In-Reply-To: Message-ID: <20050925012441.670A722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16185 Ubuntu | linux ------- Additional Comments From esac.ubuntu at mailnull.com 2005-09-25 02:24 UTC ------- Created an attachment (id=4055) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4055&action=view) dmesg output this is my dmesg output as requested. This is while the system is running (obviously) but will continue to use my computer until it freezes again. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 01:25:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 02:25:52 +0100 (BST) Subject: [Bug 16185] System Freezes on me randomly In-Reply-To: Message-ID: <20050925012552.629DB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16185 Ubuntu | linux ------- Additional Comments From esac.ubuntu at mailnull.com 2005-09-25 02:25 UTC ------- This repros after uninstalling vmware completely. I also downloaded the 2.6.13.2 kernel (compiled myself) and it repros with this kernel as well. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 01:55:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 02:55:47 +0100 (BST) Subject: [Bug 16263] New: ACPI Battery misread, keystrokes dropped unless 'ec_polling' on kernel boot command line Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16263 Ubuntu | linux-meta Summary: ACPI Battery misread, keystrokes dropped unless 'ec_polling' on kernel boot command line Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-meta AssignedTo: debzilla at ubuntu.com ReportedBy: hegbloom at pdx.edu QAContact: kernel-bugs at lists.ubuntu.com Unless I boot linux-image-2.6.12-9-686 with 'ec_polling', the battery state is misread, and keystrokes are dropped. Apparently burst mode doesn't work right on this computer. It's a Uniwill 244II0. The linux-image-2.6.12-8-686 worked just fine. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 01:57:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 02:57:22 +0100 (BST) Subject: [Bug 16263] ACPI Battery misread, keystrokes dropped unless 'ec_polling' on kernel boot command line In-Reply-To: Message-ID: <20050925015722.6AF9922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16263 Ubuntu | linux-meta ------- Additional Comments From hegbloom at pdx.edu 2005-09-25 02:57 UTC ------- 15410 is probably due to the similar problem? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 02:16:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 03:16:37 +0100 (BST) Subject: [Bug 16185] System Freezes on me randomly In-Reply-To: Message-ID: <20050925021637.0EFEC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16185 Ubuntu | linux ------- Additional Comments From esac.ubuntu at mailnull.com 2005-09-25 03:16 UTC ------- Created an attachment (id=4057) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4057&action=view) /var/log/kern.log -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 02:18:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 03:18:22 +0100 (BST) Subject: [Bug 16185] System Freezes on me randomly In-Reply-To: Message-ID: <20050925021822.7CC5822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16185 Ubuntu | linux ------- Additional Comments From esac.ubuntu at mailnull.com 2005-09-25 03:18 UTC ------- Also noting that I ran memtest, and had 0 errors. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 03:18:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 04:18:40 +0100 (BST) Subject: [Bug 15678] DriveReady SeekComplete Error after recent upgrade In-Reply-To: Message-ID: <20050925031840.D907E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux ------- Additional Comments From hez at truegeek.net 2005-09-25 04:18 UTC ------- This is the full error message: [4295313.598000] hdc: drive_cmd: status=0x51 { DriveReady SeekComplete Error } Does this offer any more information? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 04:28:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 05:28:07 +0100 (BST) Subject: [Bug 16235] amd64 ndiswrapper module fails to load In-Reply-To: Message-ID: <20050925042807.E21E122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16235 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 05:28 UTC ------- The ndiswrapper was just totally being miscompiled on amd64. I've rediffed for the next kernel upload, and confirmed that it compiles without missing symbols. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 04:29:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 05:29:29 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050925042929.2919222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 05:29 UTC ------- What's the last line showing in this dmesg where the hang occurs? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 04:49:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 05:49:32 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050925044932.6A55D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From vincent.trouilliez at modulonet.fr 2005-09-25 05:49 UTC ------- > What's the last line showing in this dmesg where the hang occurs? Sorry I don't understand what you mean ? Are you asking about the very last line at the bottom of the log ? The one that says "[4294723.752000] NET: Registered protocol family 17" ? I don't know what it means... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 10:14:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 11:14:09 +0100 (BST) Subject: [Bug 13941] [psmouse] synaptics touchpad occasionally loses it In-Reply-To: Message-ID: <20050925101409.A2A6E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13941 Ubuntu | linux ------- Additional Comments From cass at skynet.be 2005-09-25 11:14 UTC ------- I still have this very disturbing bug with 2.6.12-9.14 kernel :( -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 10:20:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 11:20:46 +0100 (BST) Subject: [Bug 8358] No sound on ThinkPad 600E In-Reply-To: Message-ID: <20050925102046.F17C622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8358 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-25 11:20 UTC ------- (In reply to comment #10) > I have found that on Mandrake-based distros, I can use alsaconf to probe for non- > PnP cards, and it finds and configure this card without a problem. To get this working in Debian and Ubuntu someone would have to volunteer to be the maintainer of the poorly written alsaconf program. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 10:26:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 11:26:17 +0100 (BST) Subject: [Bug 10116] powernowd causes mouse to become erratic on high I/O load In-Reply-To: Message-ID: <20050925102617.6BEA522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10116 Ubuntu | linux ------- Additional Comments From chareos at hotmail.com 2005-09-25 11:26 UTC ------- In my case problem occour when cpu scales down. To reproduce, open glxgears. Cpu climbs up clock. Then close glxgears. When cpu scales down clock (in seconds) the whole system (so the mouse) will freeze for a second. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 10:34:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 11:34:47 +0100 (BST) Subject: [Bug 10116] powernowd causes mouse to become erratic on high I/O load In-Reply-To: Message-ID: <20050925103447.7003B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10116 Ubuntu | linux ------- Additional Comments From chareos at hotmail.com 2005-09-25 11:34 UTC ------- (In reply to comment #7) > In my case problem occour when cpu scales down. > To reproduce, open glxgears. Cpu climbs up clock. Then close glxgears. When cpu > scales down clock (in seconds) the whole system (so the mouse) will freeze for a > second. Sorry, forgot to mention: Intel PIII-M on Dell Inspiron 8100 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 11:41:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 12:41:10 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050925114110.571EC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From mota at april.org 2005-09-25 12:41 UTC ------- Created an attachment (id=4060) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4060&action=view) Breezy dmesg There's been some kind of error with my cd, but I wonder why it can't mount the hard disk. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 11:43:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 12:43:07 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050925114307.24DA822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From mota at april.org 2005-09-25 12:43 UTC ------- (In reply to comment #1) > Is there any Linux system which you have been able to use successfully on this > hardware? We need more information about the devices it contains For the record, it's one of the "computer in the flat panel" series -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 13:38:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 14:38:50 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050925133850.BA6A222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From felix.rommel at web.de 2005-09-25 14:38 UTC ------- Same problems here on an Acer Aspire 1353 notebook with VIA KN400. I had to pass vga=771 to the installer. I haven't tried the newest Colony 5 CD install but the problem is independent of that: If I remove the vga=771 from the Grub boot line I only get a screwed up screen. I can imagine hardly a usplash coming up but it's all but a clear boot screen. Nevertheless X comes up correctly. But the screwed screens are still there if I switch to the virtual terminals tty1-tty7. Xorg runs with the Vesa driver because if I use the Xorg VIA driver I cannot use the terminals tty1-tty7 even if I pass vga=771 to the boot prompt. I have already reported the problem with the VIA driver and the KN400 in my notebook. I will never buy a VIA graphics card again. I only have problems with it - 1 year ago when I bought the notebook I thought there will be a native driver available for it instead of the sooo slow Vesa driver... But even after that year I'm not able to use the optimized VIA driver - not to speak about 3D support which is not there. I tried many hours to compile the unichrome.sf.net driver but the beast of graphic card refused to work with it. I attach a lspci output for my card. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 13:41:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 14:41:19 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050925134119.D807B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From felix.rommel at web.de 2005-09-25 14:41 UTC ------- Created an attachment (id=4062) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4062&action=view) Via KM400 lspci -v -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 13:51:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 14:51:24 +0100 (BST) Subject: [Bug 16298] New: Marvell 88E8053 isn't recognized Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16298 Ubuntu | linux Summary: Marvell 88E8053 isn't recognized Product: Ubuntu Version: unspecified Platform: All OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: karvonen at gmail.com QAContact: kernel-bugs at lists.ubuntu.com I have an Asus a8v-e Deluxe motherboard, which comes with an integrated gigabit ethernet controller; the Marvell 88E8053. The driver for this is included in the official ubuntu linux-image-2.6.12-9-amd64-k8, but it doesnt work. The driver is called skge, or sk98lin (the later one being an older driver and the skge one being a driver which should support the whole marvell gigabit ethernet controller family.) I had to compile an external module into the kernel in order to get it working. The driver I found here : http://www.syskonnect.com/syskonnect/support/driver/zip/linux/install-8_23.tar.bz2 'The sk98lin driver installation script supports the SysKonnect SK-9Exx and SK-9Sxx adapters on Linux 2.6.x, 2.4.13 and above.' I hope this will be solved in the near future.. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 13:55:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 14:55:32 +0100 (BST) Subject: [Bug 16298] Marvell 88E8053 isn't recognized In-Reply-To: Message-ID: <20050925135532.B957E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16298 Ubuntu | linux karvonen at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |critical -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 15:01:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 16:01:02 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050925150102.DC33122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-25 16:01 UTC ------- I think I had to remove *all* of the "vga=771 quiet splash" options in order to prevent Ubuntu from messing up the Linux VGA text consoles. Maybe that will also work for the chap with the VIA card. Cheers -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 16:22:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 17:22:46 +0100 (BST) Subject: [Bug 16310] New: Some directories do not get removed on purge Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16310 Ubuntu | linux Summary: Some directories do not get removed on purge Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: chipzz at ulyssis.org QAContact: kernel-bugs at lists.ubuntu.com root at Vertex:~ # uname -a Linux Vertex 2.6.12-8-686 #1 Thu Sep 15 21:32:25 UTC 2005 i686 GNU/Linux root at Vertex:~ # apt-get --purge remove linux-image-2.6.12-7-686 ... The following packages will be REMOVED: linux-image-2.6.12-7-686* linux-restricted-modules-2.6.12-7-686* ... Removing linux-restricted-modules-2.6.12-7-686 ... Removing linux-image-2.6.12-7-686 ... Searching for GRUB installation directory ... found: /boot/grub . ... Purging configuration files for linux-image-2.6.12-7-686 ... Searching for GRUB installation directory ... found: /boot/grub . Testing for an existing GRUB menu.list file... found: /boot/grub/menu.lst . Searching for splash image... none found, skipping... Found kernel: /boot/vmlinuz-2.6.12-8-686 Found kernel: /boot/memtest86+.bin Updating /boot/grub/menu.lst ... done rmdir: `/lib/modules/2.6.12-7-686': Directory not empty dpkg - warning: while removing linux-image-2.6.12-7-686, directory `/lib/modules/2.6.12-7-686' not empty so not removed. root at Vertex:~ # find /lib/modules/2.6.12-7-686 /lib/modules/2.6.12-7-686 /lib/modules/2.6.12-7-686/volatile When upgrading a running kernel, the situation is even worse (iirc). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 16:52:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 17:52:41 +0100 (BST) Subject: [Bug 15678] DriveReady SeekComplete Error after recent upgrade In-Reply-To: Message-ID: <20050925165241.01C6F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux ------- Additional Comments From hez at truegeek.net 2005-09-25 17:52 UTC ------- Sorry that I didn't notice this earlier... the error is being reported for my DVD/CDRW drive, not my harddrive. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 17:02:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 18:02:26 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050925170226.E553922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 18:02 UTC ------- No, I mean, during the hang what is the current line you see on the screen? Or is there none? Do you still have "quiet" in your /boot/grub/menu.lst? If so, remove it so we can see everything coming out. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 17:10:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 18:10:43 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050925171043.50ED822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 17:13:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 18:13:33 +0100 (BST) Subject: [Bug 6194] unregister_netdevice: waiting for eth1 (ipw2100, Intel PRO/Wireless LAN 2100 3B Mini PCI) In-Reply-To: Message-ID: <20050925171333.F07D922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6194 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P1 |P2 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 18:13 UTC ------- As of right now, I've no solid evidence as to the cause of this problem, and no way to reproduce it. The system scripts have been modified to avoid the problem with standard usage. I'm lowering the priority of this bug, and I'll revisit it post-breezy when we start working with 2.6.14-rc's. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 17:15:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 18:15:34 +0100 (BST) Subject: [Bug 7213] Live and Install hangs after SCSI initialization In-Reply-To: Message-ID: <20050925171534.89E4922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7213 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P1 |P2 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 18:15 UTC ------- No response about this bug for a few months. I'd like to close it, but I'm just going to lower the priority for awhile first. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 17:18:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 18:18:11 +0100 (BST) Subject: [Bug 9064] System powers off unexpectedly In-Reply-To: Message-ID: <20050925171811.49EBC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9064 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P1 |P5 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 17:32:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 18:32:00 +0100 (BST) Subject: [Bug 16315] New: Upgrade from breezy 2.6.12-8 to -9 broke resume after suspend-to-ram Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16315 Ubuntu | kernel-package Summary: Upgrade from breezy 2.6.12-8 to -9 broke resume after suspend-to-ram Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: sjsbug at rtr.ca QAContact: kernel-bugs at lists.ubuntu.com I upgraded from Breezy kernel 2.6.12-8 to 2.6.12-9 yesterday and resume failed to return properly after suspend-to-ram. The display was complete with the exception of a band of pixels along the top and everything was hung -- no mouse, no keyboard, nothing. I have gone back to running 2.6.12-8 and resume works once more. Other info: I have a Dell Inspiron 9300 notebook and am using the standard, open source, ATI driver, not fglrx (obviously). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 18:18:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 19:18:46 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050925181846.722DA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 19:18 UTC ------- The driver in our kernel is being seriously miscompiled. Fixing it for the next upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 18:34:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 19:34:46 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050925183446.6C27522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 18:45:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 19:45:35 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050925184535.F37F122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 19:45 UTC ------- Looks like an ok boot to me. Your DVD driver is detected as hda, and your 160gig SATA disk is seen as sda. What problem is left? I believe this bug is fixed. The installer (or something) seems to be attempting to mount filesystems, or atleast look for filesystem types. Not sure what that's about (isofs should even be attempted on sda, but it is). Anything beyond this would be an installer bug. I know the breezy live-cd boots on my G5 (when booting with linux-powerpc64). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 18:49:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 19:49:06 +0100 (BST) Subject: [Bug 10116] powernowd causes mouse to become erratic on high I/O load In-Reply-To: Message-ID: <20050925184906.33E2522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10116 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 19:49 UTC ------- There was a p4 errata dealing with cpu scaling that was fixed in recent (2.6.12-9.X) kernels. Can you try one of these and let me know if that fixes the problem? Basically it prevents scaling down below 2Ghz. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 18:55:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 19:55:46 +0100 (BST) Subject: [Bug 15678] DriveReady SeekComplete Error after recent upgrade In-Reply-To: Message-ID: <20050925185546.6367422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 19:55 UTC ------- Is there a cd in your drive? Could also be because some desktop app is trying to scan your cd. I don't think this can be considered a bug anymore, especially if your dvd drive works with a good cd/dvd in it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 19:05:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 20:05:14 +0100 (BST) Subject: [Bug 15678] DriveReady SeekComplete Error after recent upgrade In-Reply-To: Message-ID: <20050925190514.BEE6A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15678 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTABUG ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 20:05 UTC ------- Not a bug in the kernel -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 19:06:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 20:06:34 +0100 (BST) Subject: [Bug 13941] [psmouse] synaptics touchpad occasionally loses it In-Reply-To: Message-ID: <20050925190634.52FCC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13941 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 20:06 UTC ------- Is the appletouch module loaded? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 19:07:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 20:07:33 +0100 (BST) Subject: [Bug 16298] Marvell 88E8053 isn't recognized In-Reply-To: Message-ID: <20050925190733.C729022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16298 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 20:07 UTC ------- sk98lin will be in the next upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 19:23:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 20:23:53 +0100 (BST) Subject: [Bug 16310] Some directories do not get removed on purge In-Reply-To: Message-ID: <20050925192353.13BF022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16310 Ubuntu | linux-restricted-modules ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |daniel.stone at ubuntu.com Component|linux |linux-restricted-modules -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 19:28:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 20:28:04 +0100 (BST) Subject: [Bug 13941] [psmouse] synaptics touchpad occasionally loses it In-Reply-To: Message-ID: <20050925192804.9965622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13941 Ubuntu | linux ------- Additional Comments From cass at skynet.be 2005-09-25 20:28 UTC ------- No, it isn't. I made a colony CD 5 fresh install and have not yet crash since. Hope it's fixed... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 19:48:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 20:48:09 +0100 (BST) Subject: [Bug 13941] [psmouse] synaptics touchpad occasionally loses it In-Reply-To: Message-ID: <20050925194809.8C33222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13941 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 20:48 UTC ------- Colony 5 has 2.6.12-9.14, so I'm not sure what your difference is. Is the appletouch module loaded with Colony 5? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 19:58:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 20:58:19 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050925195819.0F96622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From mike at hingston.demon.co.uk 2005-09-25 20:58 UTC ------- Note: unlike Christian, I don't see it on my ThinkPad T41 at all. Standard 5.10 preview install. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 20:17:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 21:17:04 +0100 (BST) Subject: [Bug 16327] New: hibernate resume fails to bring back network card Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16327 Ubuntu | kernel-package Summary: hibernate resume fails to bring back network card Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: rngadam at yahoo.com QAContact: kernel-bugs at lists.ubuntu.com [breezy colony 5] -Hibernate works ok -The system comes back up ok except for warning messages related to network card -Network does not work -/etc/init.d/network restart does not help -I'll attach dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 20:19:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 21:19:17 +0100 (BST) Subject: [Bug 16327] hibernate resume fails to bring back network card In-Reply-To: Message-ID: <20050925201917.43CF322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16327 Ubuntu | kernel-package ------- Additional Comments From rngadam at yahoo.com 2005-09-25 21:19 UTC ------- Created an attachment (id=4065) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4065&action=view) dmesg output after resume from hibernate -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 20:19:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 21:19:50 +0100 (BST) Subject: [Bug 16327] hibernate resume fails to bring back network card In-Reply-To: Message-ID: <20050925201950.73CA622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16327 Ubuntu | kernel-package ------- Additional Comments From rngadam at yahoo.com 2005-09-25 21:19 UTC ------- To save you from opening the dmesg file: [4299808.769000] ACPI: PCI Interrupt 0000:00:0a.0[A] -> Link [LNKC] -> GSI 10 (level, low) -> IRQ 10 [4299808.769000] 3c59x: Donald Becker and others. www.scyld.com/network/vortex.html [4299808.769000] 0000:00:0a.0: 3Com PCI 3c905B Cyclone 100baseTx at 0xbc00. Vers LK1.1.19 [4299808.884000] *** EEPROM MAC address is invalid. [4299808.884000] 3c59x: vortex_probe1 fails. Returns -22 [4299808.885000] ACPI: PCI interrupt for device 0000:00:0a.0 disabled [4299808.885000] 3c59x: probe of 0000:00:0a.0 failed with error -22 [4299809.875000] e100: Intel(R) PRO/100 Network Driver, 3.4.8-k2-NAPI [4299809.875000] e100: Copyright(c) 1999-2005 Intel Corporation -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 20:20:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 21:20:55 +0100 (BST) Subject: [Bug 16327] hibernate resume fails to bring back network card In-Reply-To: Message-ID: <20050925202055.7098C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16327 Ubuntu | kernel-package ------- Additional Comments From rngadam at yahoo.com 2005-09-25 21:20 UTC ------- Created an attachment (id=4066) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4066&action=view) lspci output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 20:55:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 21:55:51 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050925205551.3B24822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From c.elkjaer at gmail.com 2005-09-25 21:55 UTC ------- (In reply to comment #82) > Note: unlike Christian, I don't see it on my ThinkPad T41 at all. Standard 5.10 > preview install. My advice would be: Give it a little time because I once thought it was solved and some days later turned out not to be. However, if it is the case that you cannot reproduce this bug then I would be very interested in finding out more about your setup since we share the same laptop model. Everything from hdparm output, bios upgrades etc. By the way, my install gets updated daily. Last time I had this bug was last night. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:08:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:08:49 +0100 (BST) Subject: [Bug 16331] New: ipod nano fs is automounted read-only Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16331 Ubuntu | linux Summary: ipod nano fs is automounted read-only Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: lydickaw at ruffledpenguin.org QAContact: kernel-bugs at lists.ubuntu.com I hotplugged my ipod nano. It was mounted ok, but the filesystem is flagged as read-only, although mount reports it as rw. lydickaw at rohan:~ $ cd /media/ipod/ lydickaw at rohan:/media/ipod $ ls Calendars Contacts iPod_Control Notes lydickaw at rohan:/media/ipod $ cd Notes/ lydickaw at rohan:/media/ipod/Notes $ ls -al total 4 drwxr-xr-x 1 lydickaw lydickaw 3 2005-09-04 04:05 . drwxr-xr-x 1 lydickaw lydickaw 15 2005-09-08 20:46 .. -rw-r--r-- 1 lydickaw lydickaw 14 2005-09-04 04:05 Instructions lydickaw at rohan:/media/ipod/Notes $ touch test.txt touch: cannot touch `test.txt': Read-only file system lydickaw at rohan:/media/ipod/Notes $ mount /dev/hda1 on / type ext3 (rw,errors=remount-ro,user_xattr) proc on /proc type proc (rw) sysfs on /sys type sysfs (rw) devpts on /dev/pts type devpts (rw,gid=5,mode=620) tmpfs on /dev/shm type tmpfs (rw) usbfs on /proc/bus/usb type usbfs (rw) tmpfs on /lib/modules/2.6.12-9-386/volatile type tmpfs (rw) /dev/md0 on /var/storage type ext2 (rw) tmpfs on /dev type tmpfs (rw,size=10M,mode=0755) none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw) /dev/sda3 on /media/ipod type hfsplus (rw,noexec,nosuid,nodev,uid=1000,gid=1000) lydickaw at rohan:/media/ipod/Notes $ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:43:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:43:16 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050925214316.A2A4622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From kaaloo at gmail.com 2005-09-25 22:43 UTC ------- I'm still experiencing no wireless ethernet. I've tested with the 2.6.12-9-686 to no avail. I still have the 8139cp and 8139too message at startup. 2.6.10-5-686 is still working. This bug should not be marked as resolved. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:48:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:48:02 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050925214802.5848E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 22:48 UTC ------- The message from 8139cp about 8139too is not an error, nor does it show anything that would cause an error. That message is expected when you have an 8139 card that is not an 8139C+. So, does "ifconfig -a" show any ethernet devices? The wifi card not working will need more information, and likely a new bug report. Attach lspci -vv and lspci -vvn output with the wifi card attached. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:48:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:48:36 +0100 (BST) Subject: [Bug 16181] ipw2200 not loaded automatically on Toshiba M45-355s In-Reply-To: Message-ID: <20050925214836.5B3A522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16181 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Toshiba M45-355s wireless |ipw2200 not loaded |problem (Intel 2200) (in |automatically on Toshiba |5.04 preview) |M45-355s ------- Additional Comments From mdz at ubuntu.com 2005-09-25 22:48 UTC ------- Surely you don't really mean the 5.04 preview, but the 5.10 preview? Please send "lspci", "lspci -n" and "dmesg" output. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:49:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:49:55 +0100 (BST) Subject: [Bug 16011] Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid In-Reply-To: Message-ID: <20050925214955.0AADA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16011 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 22:49 UTC ------- I still need the actual kernel panic for this bug. Without it, I can't do much to fix it. Also, attaching lspci -vv and lspci -vvn output would be appreciated. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:50:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:50:24 +0100 (BST) Subject: [Bug 16011] Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid In-Reply-To: Message-ID: <20050925215024.5A9F822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16011 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P1 |P2 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:52:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:52:08 +0100 (BST) Subject: [Bug 1267] Award BIOS system requires pci=noacpi In-Reply-To: Message-ID: <20050925215208.BF8A922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1267 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 22:52 UTC ------- Lack of response, closing due to inactivity. Assuming fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:54:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:54:10 +0100 (BST) Subject: [Bug 1334] Starting up the partitioner gets stuck at 41%... SiS180/SiS964 issue (sata_sis) In-Reply-To: Message-ID: <20050925215410.811AC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1334 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 22:54 UTC ------- Lots of SATA fixes since this report. I'm going to assume that Colony 5 will work. Please feel free to reopen the bug if not. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:56:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:56:04 +0100 (BST) Subject: [Bug 1379] Boot fails early and intermittently on some G4 systems with >1GB RAM In-Reply-To: Message-ID: <20050925215604.F362822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1379 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 22:56 UTC ------- I'm currently running Breezy (installed without problem) on a G4 with 1.5Gigs of ram. Assuming fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:56:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:56:39 +0100 (BST) Subject: [Bug 16023] Unable to mount install CD (isofs errors?) In-Reply-To: Message-ID: <20050925215639.9DF5E22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16023 Ubuntu | linux radic at fbihome.de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |INVALID ------- Additional Comments From radic at fbihome.de 2005-09-25 22:56 UTC ------- ISO was burned with errors. Burned it again, and it worked. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:58:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:58:56 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050925215856.472B922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-25 22:58 UTC ------- (In reply to comment #17) > No, I mean, during the hang what is the current line you see on the screen? Or is there none? > > Do you still have "quiet" in your /boot/grub/menu.lst? If so, remove it so we can see everything coming out. You can use the "recovery mode" boot to cause the verbose messages to be displayed -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 21:59:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 22:59:08 +0100 (BST) Subject: [Bug 13941] [psmouse] synaptics touchpad occasionally loses it In-Reply-To: Message-ID: <20050925215908.BE28F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13941 Ubuntu | linux ------- Additional Comments From cass at skynet.be 2005-09-25 22:59 UTC ------- I know, i don't understand why it's seems ok now. No, appletouch isn't loaded. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:00:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:00:39 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050925220039.CB40222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal ------- Additional Comments From mdz at ubuntu.com 2005-09-25 23:00 UTC ------- (In reply to comment #4) > Ugh. > > Apologies, guys. I just now retested with the Ubuntu Hoary Install-CD and it > does have the same problem. So not a regression. Still pretty scarey to look > at, though. Like the screen is melting. :) > > Cheers OK, this is just another case of vga16fb not working correctly on particular hardware then. Downgrading accordingly. I think there may already be a bug open about this particular device already. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:01:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:01:38 +0100 (BST) Subject: [Bug 1419] New Kernel image from repository does not get installed In-Reply-To: Message-ID: <20050925220138.4D24F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1419 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 23:01 UTC ------- I really think this was a case of user error, or a problem that doesn't exist anymore. Maybe synaptic was waiting for user input, or something in the old kernel-package made a bad .deb. Also, the last submitter is talking about a totally unrelated problem that seems to affect ppc users who have xfs as their root filesystem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:02:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:02:14 +0100 (BST) Subject: [Bug 1334] Starting up the partitioner gets stuck at 41%... SiS180/SiS964 issue (sata_sis) In-Reply-To: Message-ID: <20050925220214.68C4322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1334 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 23:02 UTC ------- Close it this time. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:03:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:03:48 +0100 (BST) Subject: [Bug 1467] usb webcam plugged on reboot is primary audio In-Reply-To: Message-ID: <20050925220348.67C4722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1467 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 23:03 UTC ------- Is this still a problem with Colony 5? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:04:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:04:03 +0100 (BST) Subject: [Bug 1467] usb webcam plugged on reboot is primary audio In-Reply-To: Message-ID: <20050925220403.25BC522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1467 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:05:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:05:52 +0100 (BST) Subject: [Bug 1596] powerpc kernel throws SIGILL sometimes In-Reply-To: Message-ID: <20050925220552.279CE22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1596 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 23:05 UTC ------- This appears to be fixed. I cannot reproduce any such SIGILL on either of my ppc's. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:09:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:09:29 +0100 (BST) Subject: [Bug 1620] hwclock stalls at boot on i915/dell optiplex gx280 In-Reply-To: Message-ID: <20050925220929.AF1CB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1620 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 23:09 UTC ------- Closing because of age. Please reopen if the problem still affects Breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:13:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:13:08 +0100 (BST) Subject: [Bug 1647] Suspend on Tosh Sat Pro A10 broken In-Reply-To: Message-ID: <20050925221308.0AB8122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1647 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 23:13 UTC ------- The majority of these problems I know are fixed. The issue with power-button-event on resume, I'll assume fixed. Please open a new bug report if the problem can be reproduced on breezy. I say a new bug report so that it can be seperated from the group of bugs present in this report, just for clarity. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:16:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:16:34 +0100 (BST) Subject: [Bug 1891] open()ing invalid devices freezes a process In-Reply-To: Message-ID: <20050925221634.6BB1722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1891 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-25 23:16 UTC ------- Can someone test this with the latest 2.6.12-9 kernels as found in COlony 5? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 22:51:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Sun, 25 Sep 2005 23:51:47 +0100 (BST) Subject: [Bug 1467] usb webcam plugged on reboot is primary audio In-Reply-To: Message-ID: <20050925225147.013BA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1467 Ubuntu | linux ------- Additional Comments From moyogo at gmail.com 2005-09-25 23:51 UTC ------- I am I am currently not experiencing any problem with the sound card and the usb webcam plugged in at boot up. I'm using a recently upgraded breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:13:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:13:20 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050925231320.C961B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-26 00:13 UTC ------- Mmm.. perhaps the installer could be slightly clever, and automatically select text mode when it sees this PCI device as the only video display in the system? Otherwise a LOT of Dell Laptop users are going to be quite terrified when they try to install Ubunutu.. Cheers! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:22:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:22:21 +0100 (BST) Subject: [Bug 1467] usb webcam plugged on reboot is primary audio In-Reply-To: Message-ID: <20050925232221.7920B22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1467 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 00:22 UTC ------- Thanks, marking this as resolved. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:30:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:30:17 +0100 (BST) Subject: [Bug 14931] Missing libata "passthrough" functionality In-Reply-To: Message-ID: <20050925233017.18F6D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14931 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-26 00:30 UTC ------- MMm.. a new breezy kernel (2.6.12-9), and still no SATA support for smartmontools or hdparm. This is an easy one, Ben. I can generate fresh patches for you against the Ubuntu kernel, if you want. Cheers -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:38:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:38:37 +0100 (BST) Subject: [Bug 2681] Dell Latitude hotplug fatal errors--installed OS won't boot In-Reply-To: Message-ID: <20050925233837.BD95E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2681 Ubuntu (laptop) | linux ------- Additional Comments From www_gmc at fiachra.ucd.ie 2005-09-26 00:38 UTC ------- (In reply to comment #11) > Thanks, I'll consider this bug fixed then. Sorry but I saw it this evening on Hoary. I have downloaded the preview and will install it asap. Perhaps the move to udev will sort this out -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:38:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:38:38 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050925233838.7543B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 00:38 UTC ------- Ok, this bug seems to be about wake-up, and that seems to be working according to the latest comments I read on here, and BenH's patch should be in 2.6.12/breezy kernels. If this isn't the case, please reopen this bug, and let me know that Colony 5 didn't work as expected in regards to sleep/resume (closing the lid) on G4 powerbooks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:40:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:40:31 +0100 (BST) Subject: [Bug 1953] Consider link_in_boot as default for kernel images In-Reply-To: Message-ID: <20050925234031.40B3222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1953 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 00:40 UTC ------- As far as I can tell, link_in_boot is the default in breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:44:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:44:29 +0100 (BST) Subject: [Bug 1974] prism54 card won't initialize In-Reply-To: Message-ID: <20050925234429.3BF6522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1974 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 00:44 UTC ------- Can someone with this card test Colony 5 and/or kernel 2.6.12-9.14? There was an update to the prism54 driver, which may or may not fix it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:52:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:52:41 +0100 (BST) Subject: [Bug 1978] IBM ThinkPad T42 uses excessive amount of battery in ACPI suspend mode In-Reply-To: Message-ID: <20050925235241.23C0222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1978 Ubuntu (laptop) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 00:52 UTC ------- Is there actually a way to put this device to sleep without loading radeonfb module? If not, then we should look into using the patch from the kernel.org bug. Matt, your input? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Sun Sep 25 23:57:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 00:57:09 +0100 (BST) Subject: [Bug 1994] [ACPI] Can't connect network with 3Com 3c556B In-Reply-To: Message-ID: <20050925235709.B411222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1994 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 00:57 UTC ------- Looking at the two dmesg outputs (working and non-working) I see that one sees the memory for the 3com at 0x1400 and the other sees it at 0x1800. Can I get lspci output from both kernels (working and non-working)? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 00:00:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 01:00:19 +0100 (BST) Subject: [Bug 2104] Grub installer hangs on 16% (dual boot system) In-Reply-To: Message-ID: <20050926000019.7B8FE22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2104 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 01:00 UTC ------- If I recall correctly, this bug had to do with a correct nls module being loaded, and I believe it was fixed. Please reopen if this isn't the case with COlony 5 install. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 00:06:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 01:06:27 +0100 (BST) Subject: [Bug 2168] sata_nv fails to detect drives In-Reply-To: Message-ID: <20050926000627.D477622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2168 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 01:06 UTC ------- Closing on the basis of the last comment, reporting that it worked. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 00:09:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 01:09:31 +0100 (BST) Subject: [Bug 2287] Installer can't create filesystems on amd64 mptfusion, SCSI errors in log In-Reply-To: Message-ID: <20050926000931.7A95C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2287 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 01:09 UTC ------- Can you try the latest Colony 5 install/live-cd? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 01:08:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 02:08:27 +0100 (BST) Subject: [Bug 16011] Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid In-Reply-To: Message-ID: <20050926010827.5BBDD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16011 Ubuntu | linux ------- Additional Comments From scianos at speakeasy.net 2005-09-26 02:08 UTC ------- Hi - I did not have a digital camera available at the office last week; I have acquired one and will photograph the display for you. Thank you, Stu (In reply to comment #2) > I still need the actual kernel panic for this bug. Without it, I can't do much > to fix it. Also, attaching lspci -vv and lspci -vvn output would be appreciated. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 03:58:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 04:58:17 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050926035817.994D422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From vincent.trouilliez at modulonet.fr 2005-09-26 04:58 UTC ------- > No, I mean, during the hang what is the current line you see on the screen? Or is there none? Ah okay. This is what happens: 1) press enter in the BRUB menu 2) prints "Uncompressing Linux... Ok, booting the kernel 3) hangs there for 20 seconds 4) NIC drivers prints the usual messages : [4294669.162000] 8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004) [4294669.162000] 8139cp: pci dev 0000:01:01.0 (id 10ec:8139 rev 10) is not an 8139C+ compatible chip [4294669.162000] 8139cp: Try the "8139too" driver instead. [4294669.163000] 8139too Fast Ethernet driver 0.9.27 5) usplash starts normally. > Do you still have "quiet" in your /boot/grub/menu.lst? Yes, I don't know much about kernel/boot process/GRUb, so I never touch it... > If so, remove it so we can see everything coming out. Ah, good idea, that helped a lot ! I see what the problem is now ! Well, not really, but I know it's not the NICs ! This is where the kernel hangs, not for 20 seconds, but almost : [4294669.487000] ahc_pci:1:2:0: Host Adapter Bios disabled. Using default SCSI device parameters [4294669.489000] scsi0 : Adaptec AIC7XXX EISA/VLB/PCI SCSI HBA DRIVER, Rev 6.2.36 [4294669.489000] [4294669.489000] aic7850: Single Channel A, SCSI Id=7, 3/253 SCBs [4294669.489000] [4294684.506000] Vendor: AGFA Model: SNAPSCAN 1236 Rev: 1.50 [4294684.506000] Type: Scanner ANSI SCSI revision: 02 [4294684.506000] target0:0:0: Beginning Domain Validation [4294684.534000] target0:0:0: Ending Domain Validation And this explains that ! This is my SCSCI controller card, which has always caused Hotplug, in Warty and Hoary, to hang precisely for about 23 seconds. Whereas now in Breezy, Hotplug is super fast (2 or 3 seconds), but in quiet mode it looks as if the machine is hanging for 20 seconds before the boot seuqence starts ! So the hangs is not new then. The fact the it appeared to be the NIC's drivers is probably simply because it was the first program to happen to print when not in quiet mode, so that was misleading ! So now the problem is now, why does it hang nearly 20s on the SCSI card ? I tried disconnecting the scanner, but even without any SCSI devices on the bus, it still hangs for the same amount of time. Also, it's strange that in "quiet" mode, I got to see the NIC driver messages, but not the SCSI ones, shouldn't all messages be kept from printing, when in quiet mode, until usplash displays the background picture ? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:32:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:32:35 +0100 (BST) Subject: [Bug 16348] New: insmoding fcpci module causes kernel pani when 2 fcpci cards installed Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules Summary: insmoding fcpci module causes kernel pani when 2 fcpci cards installed Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: woody+ubuntu at solutionsfirst.com.au QAContact: kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:34:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:34:27 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926043427.E195022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules ------- Additional Comments From woody+ubuntu at solutionsfirst.com.au 2005-09-26 05:34 UTC ------- Created an attachment (id=4069) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4069&action=view) Output of lspci-vv lspci output from box -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:36:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:36:10 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926043610.4994722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules ------- Additional Comments From woody+ubuntu at solutionsfirst.com.au 2005-09-26 05:36 UTC ------- Created an attachment (id=4070) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4070&action=view) Proc interupts from box -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:38:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:38:21 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926043821.56E3122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules ------- Additional Comments From woody+ubuntu at solutionsfirst.com.au 2005-09-26 05:38 UTC ------- Created an attachment (id=4071) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4071&action=view) /proc/cpuinfo from box -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:51:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:51:24 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926045124.4941522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules woody+ubuntu at solutionsfirst.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major ------- Additional Comments From woody+ubuntu at solutionsfirst.com.au 2005-09-26 05:51 UTC ------- G'day! Box is vanilla P4 2.4 Ubuntu install is "server" from the 5.04 CD today with apt-get update && upgrade as of today 26/9/2005. Always has a kernel panic when modprobing the fcpci module when 2 cards are installed. Never has a kernel panic when modprobing the fcpci module when 1 card is installed. Both cards work, they both detect and run under 2.4.21 on centos using the 2 card hack found here: http://www.quiss.org/caiviar/Two-Fritzcards-HOWTO even without that hack, one card will work nicely with the other card unused. cheers, Woody -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:53:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:53:00 +0100 (BST) Subject: [Bug 16352] New: Nice to have f2pci, f3pci, f4pci modules Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16352 Ubuntu | linux-restricted-modules Summary: Nice to have f2pci, f3pci, f4pci modules Product: Ubuntu Version: unspecified Platform: i386 URL: http://www.quiss.org/caiviar/Two-Fritzcards-HOWTO OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux-restricted-modules AssignedTo: daniel.stone at ubuntu.com ReportedBy: woody+ubuntu at solutionsfirst.com.au QAContact: kernel-bugs at lists.ubuntu.com Would be a nice feature. See the URL for instructions on how to hack. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:53:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:53:19 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926045319.97D9522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules woody+ubuntu at solutionsfirst.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- OtherBugsDependingO| |16352 nThis| | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:53:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:53:19 +0100 (BST) Subject: [Bug 16352] Nice to have f2pci, f3pci, f4pci modules In-Reply-To: Message-ID: <20050926045319.8400D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16352 Ubuntu | linux-restricted-modules woody+ubuntu at solutionsfirst.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- BugsThisDependsOn| |16348 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:53:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:53:49 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926045349.87C7C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules woody+ubuntu at solutionsfirst.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- OS/Version|other |Linux Platform|Other |i386 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:54:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:54:52 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926045452.EEEC022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules ------- Additional Comments From woody+ubuntu at solutionsfirst.com.au 2005-09-26 05:54 UTC ------- I'm sad, I typed out the Panic: CPU: 0 EIP: 0060:[f8e64f9e>] Tainted: P VLI EFLAGS: 00010202 (2.6.10-5-386) EIP is at irq_handler+0x35/0x84 [fcpci] eax: 00000000 ebx: c0324000 ecx: c0325fb0 edx: 00000000 esi: 00000000 edi: 0000000 ebp: 00000012 esp: c0325f64 ds: 0007b es: 007b ss: 0068 Process swapper (pid: 0, threadinfo=c0324000 task=c02a5b00)) Stack: f65b9900 00000000 c012de83 00000012 f6f66404 c0325fb0 c0325fb0 c0324000 00000012 c031d380 c0325fb0 c012df6d f647cac0 c0324000 00099100 c0360120 003ad007 c0104cc5 c0103966 c0324000 c17e2500 c010101c 00099100 c0360120 Call Trace: [] handle_IRQ_event+0x20/0x4c [] __do_IRQ+0xbe/0x111 [] do_IRQ+0x19/0x24 [] common_interupt+0x1a/0x20 [] default_idle+0x0/0x29 [] defult_idle+0x23/0x29 [] cpu_idle+0x21/0x45 [] start_kernel+0x16f/0x173 Code: 74 a1 24 8b e8 f8 85 c0 75 12 a1 c4 fb e8 f8 ff 50 10 85 c0 0f 95 c0 0f b6 f0 eb 29 bb 00 e0 ff ff 21 e3 ff 43 14 a1 c4 fb e8 f8 50 10 85 c0 0f 95 c0 0f b6 f0 8b 43 08 ff 4b 14 a8 08 74 05 <0>Kernel panic - not syncing fatal exception in interupt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 04:58:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 05:58:49 +0100 (BST) Subject: [Bug 16185] System Freezes on me randomly In-Reply-To: Message-ID: <20050926045849.5A6CE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16185 Ubuntu | linux ------- Additional Comments From esac.ubuntu at mailnull.com 2005-09-26 05:58 UTC ------- Ok. I've narrowed it down. I found a 100% repro by trying to play a video from a remote system on my LAN. I found this out after installing gentoo, so I knew the issue wasn't distribution specific. The issue turns out to be with the madwifi driver. I installed ndiswrapper and it works without any problems, so please resolve this bug to madwifi maintainers. Also on a side note, I also tried the madwifi driver snapshot 20050925 and it still repro'd. Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 05:35:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 06:35:25 +0100 (BST) Subject: [Bug 16352] Nice to have f2pci, f3pci, f4pci modules In-Reply-To: Message-ID: <20050926053525.BE98A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16352 Ubuntu | linux-restricted-modules woody+ubuntu at solutionsfirst.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |enhancement Priority|P2 |P3 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 06:07:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 07:07:35 +0100 (BST) Subject: [Bug 16178] capability module is not loaded, breaking apps In-Reply-To: Message-ID: <20050926060735.957DD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16178 Ubuntu | linux fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From fabbione at ubuntu.com 2005-09-26 07:07 UTC ------- I can confirm that the latest kernel+initramfs combo works fine. capability 4712 0 commoncap 6816 1 capability they are probed as first modules. Closing the bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 08:35:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 09:35:47 +0100 (BST) Subject: [Bug 12942] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050926083547.2046B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux ------- Additional Comments From jesper at krogh.cc 2005-09-26 09:35 UTC ------- I can confirm this bug.. I get it in both stages and the client can even drop a successful NFS-mount on a fully running client. I tried adding MOPTS=nolock,ro,wsize=2048,rsize=2048 (as suggested on the LTSP wiki) to the pxelinux.cfg/default file but the client doesn't seem to respect it. I've found the exact mount options by doing a: cat /proc/mounts on the client. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 08:36:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 09:36:53 +0100 (BST) Subject: [Bug 12942] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050926083653.7F13E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux jesper at krogh.cc changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jesper at krogh.cc -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 10:43:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 11:43:33 +0100 (BST) Subject: [Bug 13831] [dapper] ltmodem doesn't build against .12 In-Reply-To: Message-ID: <20050926104333.20CA122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13831 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|fabbione at ubuntu.com |adconrad at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 10:43:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 11:43:34 +0100 (BST) Subject: [Bug 14712] [nvidia] module insertion hangs In-Reply-To: Message-ID: <20050926104334.BBBB122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14712 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|fabbione at ubuntu.com |adconrad at ubuntu.com Status|NEEDINFO |UNCONFIRMED -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 10:43:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 11:43:35 +0100 (BST) Subject: [Bug 14422] Kernel upgrade requires manual "depmod" In-Reply-To: Message-ID: <20050926104335.32BF622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14422 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|fabbione at ubuntu.com |adconrad at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 10:43:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 11:43:34 +0100 (BST) Subject: [Bug 13425] [dapper] please add pwcx webcam decompressor In-Reply-To: Message-ID: <20050926104334.4628D22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13425 Ubuntu | linux-restricted-modules fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|fabbione at ubuntu.com |adconrad at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 11:05:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 12:05:33 +0100 (BST) Subject: [Bug 16370] New: Problem with VIA Technologies Inc. VT1720/24 [Envy2 4PT/HT] Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16370 Ubuntu | linux Summary: Problem with VIA Technologies Inc. VT1720/24 [Envy2 4PT/HT] Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: jensen at mermaidconsulting.com QAContact: kernel-bugs at lists.ubuntu.com This is a direct copy of bug #9734 that was fixed some time ago. The problem does however still exist on my platform (not running a shuttlepc like the other bug, but using the same soundcard). Soundcard is VIA Technologies Inc. VT1720/24 [Envy2 4PT/HT] onboard audio on a Chaintech 9cjs w/P4. I keep on fixing this bug after each kernel update. I just updated the kernel to 2.6.10-5-686 #1 Fri Sep 23 14:18:02 UTC 2005 i686 GNU/Linux and the problem cropped up again. Identical to bug #9734 it seems to be a problem with some ID number and the solution is editing the file: /usr/src/linux/sound/pci/ice1712/vt1720_mobo.h. If I am not mistaken this is the sound driver ice1724 that contains an invalid reference just like for the other bug. To fix this problem I, more or less, follow the instructions here: http://www.nakack.net/?p=19 root at jensen:/home/jensen # lspci -d 1412:1724 -nvx 0000:03:02.0 0401: 1412:1724 (rev 01) Subsystem: 270f:2723 Flags: bus master, medium devsel, latency 32, IRQ 11 I/O ports at a400 [size=32] I/O ports at a800 [size=128] Capabilities: [80] Power Management version 1 00: 12 14 24 17 05 00 10 02 01 00 01 04 00 20 00 00 10: 01 a4 00 00 01 a8 00 00 00 00 00 00 00 00 00 00 20: 00 00 00 00 00 00 00 00 00 00 00 00 0f 27 23 27 30: 00 00 00 00 80 00 00 00 00 00 00 00 0b 01 00 00 I then edit the file sound/pci/ice1712/vt1720_mobo.h where I find #define VT1720_SUBDEVICE_ZNF3_150 0x0f2745f6 And replace it with #define VT1720_SUBDEVICE_ZNF3_150 0x0f272327 I then recompile the module and reboot the machine and voila I have working sound. I know the info above is not very helpful, but I'm a really big newbie when it comes to all this linux stuff. There is also a thread on the forums where I outline in detail what to do to sort this problem - but unfortunately the forums seems to be down at the moment. I'll try to post a link when they are up again. Please let me know if there is anything you need me to do. Regards /Martin -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 11:36:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 12:36:05 +0100 (BST) Subject: [Bug 16371] New: Kernel 2.6.12 Horay Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package Summary: Kernel 2.6.12 Horay Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: fourier21 at gmail.com QAContact: kernel-bugs at lists.ubuntu.com The Kernel 2.6.12.x don't work with RLT-8139/8139C/8139C+ network interface -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 12:44:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 13:44:04 +0100 (BST) Subject: [Bug 12942] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050926124404.EC93322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux ------- Additional Comments From jesper at krogh.cc 2005-09-26 13:44 UTC ------- I have the same problem. I've hacked the pxelinux.cfg/default to give the kernel "rsize=8192,wsize=8192" as boot parameters and the ramdisk to mount the NFS with the same options. This did not solve the problem. If the client successfully boots, i cannot get a reasonable terminal for 5 minutes. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 12:44:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 13:44:45 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050926124445.AA0EF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-26 13:44 UTC ------- > corresponds to the release of Ubuntu you have installed. If you're tracking > Breezy, use the daily live CD: OK, I'll try. > "echo $$" before and after the reboot command. Just tried. Same shell. Same PID. Does it explain anything? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 13:04:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 14:04:49 +0100 (BST) Subject: [Bug 12942] Mysterious NFS mount timeouts In-Reply-To: Message-ID: <20050926130449.EA6DC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=12942 Ubuntu | linux ------- Additional Comments From jesper at krogh.cc 2005-09-26 14:04 UTC ------- (In reply to comment #17) > I have the same problem. I've hacked the pxelinux.cfg/default to give the kernel "rsize=8192,wsize=8192" as > boot parameters and the ramdisk to mount the NFS with the same options. This did not solve the problem. If > the client successfully boots, i cannot get a reasonable terminal for 5 minutes. > Failed to mention that this is an Breezy ltsp setup. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 13:09:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 14:09:31 +0100 (BST) Subject: [Bug 10307] Apple G5 Power PC with Hoary PPC Release - CDROM not detected - install aborted In-Reply-To: Message-ID: <20050926130931.7E68922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10307 Ubuntu (installer) | linux ------- Additional Comments From mota at april.org 2005-09-26 14:09 UTC ------- (In reply to comment #16) > Looks like an ok boot to me. Your DVD driver is detected as hda, and your 160gig > SATA disk is seen as sda. > > What problem is left? Bug #12901 certainly is; and in the end I'm left with a frozen brown screen, even with video=ofonly; [ctrl]-[alt]-F1 does not seem to work. I'm not sure where to fill that, though. > I believe this bug is fixed. The installer (or something) > seems to be attempting to mount filesystems, or atleast look for filesystem > types. I'm afraid that something is me ;) I was doing something along the lines of: mkdir /mnt mount -t hfs /dev/sda1 /mnt in order to get the dmesg on disk. I was finally able to send it remotly via scp. > Not sure what that's about (isofs should even be attempted on sda, but it > is). Anything beyond this would be an installer bug. I know the breezy live-cd > boots on my G5 (when booting with linux-powerpc64). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 14:03:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 15:03:03 +0100 (BST) Subject: [Bug 16371] Kernel 2.6.12 Horay In-Reply-To: Message-ID: <20050926140303.7A80822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 15:03 UTC ------- Could you be more specific about what doesn't work, and how? Is there some error message you are refering to? I know that breezy kernel works with 8139, because I have this type of card in atleast one machine. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 14:28:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 15:28:29 +0100 (BST) Subject: [Bug 15100] Reboot fails in vmware In-Reply-To: Message-ID: <20050926142829.C2AE222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15100 Ubuntu | linux ------- Additional Comments From Philip.R.Schaffner at NASA.gov 2005-09-26 15:28 UTC ------- I encountered this same problem attempting to install Kubuntu from kubuntu-5.10-preview-install-i386.iso under VMware version 5 (VMwareWorkstation-5.0.0-13124). Restarting the system results in an incomplete boot - can't seem to find the virtual SCSI disks. Hoary installation works on the same virtual hardware. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 14:47:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 15:47:07 +0100 (BST) Subject: [Bug 16371] Kernel 2.6.12 Horay In-Reply-To: Message-ID: <20050926144707.B4F3A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-26 15:47 UTC ------- Pardon is my first one bug :) Then when I start with kernel 2.6.12 Ubuntu does not recognize my card of network, I can't connect to internet, but with the 2.6.10 it uses it perfectly. Neither with the Live Eval it recognizes my card or, so I do not believe that it is that I need algun package. If you want that I sends some .log to you... P.D. My English is very bad, this I have been translated automatically, pardons for that reason A greeting -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:17:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:17:21 +0100 (BST) Subject: [Bug 15100] Reboot fails in vmware In-Reply-To: Message-ID: <20050926151721.9386622F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15100 Ubuntu | linux ------- Additional Comments From Philip.R.Schaffner at NASA.gov 2005-09-26 16:17 UTC ------- Installation does complete for Breezy preview if IDE virtual disk is used rather than default LSU Logic SCSI. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:26:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:26:54 +0100 (BST) Subject: [Bug 16243] Sis 190 network driver In-Reply-To: Message-ID: <20050926152654.4A32622F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16243 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |ben.collins at ubuntu.com Severity|normal |enhancement Component|linux-restricted-modules |linux Summary|Sis 190 network driver |Sis 190 network driver |missing | ------- Additional Comments From mdz at ubuntu.com 2005-09-26 16:26 UTC ------- This software may be used and distributed according to the terms of the GNU General Public License (GPL), incorporated herein by reference. Drivers based on this skeleton fall under the GPL and must retain the authorship (implicit copyright) notice. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:27:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:27:41 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050926152741.8F12522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|acpi |linux Keywords| |laptop QAContact| |kernel-bugs at lists.ubuntu.com Summary|Ubuntu frequenty hangs |Vaio A497XP doesn't reboot |horribly on shutdown/reboot | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:30:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:30:19 +0100 (BST) Subject: [Bug 16251] After initial Ubuntu kernel boot starts HD light remains constantly on In-Reply-To: Message-ID: <20050926153019.D81DB22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16251 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-26 16:30 UTC ------- Bug #15362 and bug #15634 describe similar problems -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:33:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:33:39 +0100 (BST) Subject: [Bug 16252] acpi does *NOT* recognize if laptop is unplugged or not. [Hoary] In-Reply-To: Message-ID: <20050926153339.D180D22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16252 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|acpi |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-26 16:33 UTC ------- Please test a Breezy live CD and see if your problem has already been fixed there: http://cdimage.ubuntu.com/daily-live/current/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:36:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:36:53 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050926153653.193FF22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-26 16:36 UTC ------- Can you try with the reboot=b kernel parameter? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:37:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:37:06 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050926153706.3445322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 16:37 UTC ------- Excellent, so this really isn't a bug, so much as that the "silence" seems like something is hanging :) Closing the bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:45:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:45:20 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050926154520.2902D22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From vincent.trouilliez at modulonet.fr 2005-09-26 16:45 UTC ------- (In reply to comment #20) > Excellent, so this really isn't a bug, so much as that the "silence" seems like > something is hanging :) > > Closing the bug. So do you mean it's normal for the SCSI card to hang for 20s then ?! I don't understand... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:45:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:45:56 +0100 (BST) Subject: [Bug 2586] orinoco "monitor mode" scanning patch In-Reply-To: Message-ID: <20050926154556.6DD6622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2586 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P2 |P3 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 16:45 UTC ------- This patch doesn't apply cleanly to our kernel. It wont make it into breezy, but if you can get a patch against 2.6.14-rc, I'll include it later. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:48:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:48:07 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050926154807.8F4B922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux ------- Additional Comments From obiwan at mailmij.org 2005-09-26 16:48 UTC ------- (In reply to comment #62) > Ok, this bug seems to be about wake-up, and that seems to be working according > to the latest comments I read on here, and BenH's patch should be in > 2.6.12/breezy kernels. > > If this isn't the case, please reopen this bug, and let me know that Colony 5 > didn't work as expected in regards to sleep/resume (closing the lid) on G4 > powerbooks. ?? I think you misread the thread completely. The bug was about wake up on G3 ibooks (first post). Some people polluted it with a different problem on G4 ibooks. The bug on g4 is fixed. The bug on G3 is still there. Please reopen since this thread contains some info as to the source of the problem. danny -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:51:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:51:08 +0100 (BST) Subject: [Bug 16255] Breezy Preview 5.1 Startup fails after user login In-Reply-To: Message-ID: <20050926155108.58D0A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16255 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|critical |major Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-26 16:51 UTC ------- Please try the exercises at https://wiki.ubuntu.com/DebuggingIRQProblems -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:51:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:51:58 +0100 (BST) Subject: [Bug 2710] Non-detection of module required for initrd image at install In-Reply-To: Message-ID: <20050926155158.9920222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2710 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 16:51 UTC ------- I've seen other users with the same controller with no problems, so I'm going to consider this bug closed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:51:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:51:41 +0100 (BST) Subject: [Bug 16255] Login sound looping, unable to login In-Reply-To: Message-ID: <20050926155141.18A6122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16255 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Breezy Preview 5.1 Startup |Login sound looping, unable |fails after user login |to login -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:54:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:54:21 +0100 (BST) Subject: [Bug 16185] [madwifi] System Freezes on me randomly In-Reply-To: Message-ID: <20050926155421.E808322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16185 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|linux |linux-restricted-modules Summary|System Freezes on me |[madwifi] System Freezes on |randomly |me randomly -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:55:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:55:25 +0100 (BST) Subject: [Bug 16263] ACPI Battery misread, keystrokes dropped unless 'ec_polling' on kernel boot command line In-Reply-To: Message-ID: <20050926155525.60ADD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16263 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|linux-meta |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 15:57:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 16:57:02 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050926155702.77E9022F4028@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux ------- Additional Comments From zombie at zombix.org 2005-09-26 16:57 UTC ------- Yes, confirming I am still having issues with an iBook G3 800MHz. iBook hangs while trying to wake up. Running Breezy. Last update 25/09/05 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:06:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:06:34 +0100 (BST) Subject: [Bug 3015] radeon/amd64 random hangs In-Reply-To: Message-ID: <20050926160634.10B3A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3015 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:06 UTC ------- Ok, I'd like to get this fixed for breezy. I'm not sure if it still happens, so someone please refresh the this bug. What I need is for someone to force this bug to occur while in text console. (use elinks, wget, or whatever to do some network traffic, since it seems to be related to network). When the crash occurs, please either write down, or take a picture of the crash on the screen (all of it is important, not just the initial message). The one person that did see something mentioned killing an interrupt handler. I suspect it is the network card, but the mention of cam_server means it may also be sound related. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:07:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:07:20 +0100 (BST) Subject: [Bug 3015] radeon/amd64 random hangs In-Reply-To: Message-ID: <20050926160720.261A122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3015 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Status|NEW |NEEDINFO Priority|P2 |P1 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:07 UTC ------- I've seen enough "me too's" to bump this to "major" -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:07:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:07:43 +0100 (BST) Subject: [Bug 3027] build uml from standard kernel sources In-Reply-To: Message-ID: <20050926160743.2F1B422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3027 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P2 |P3 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:09:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:09:17 +0100 (BST) Subject: [Bug 3117] Clock speeding up when cpu works harder In-Reply-To: Message-ID: <20050926160917.7973522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3117 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:09 UTC ------- There have been patches applied in breezy's current kernel which should have addressed this. I am closing this bug, but feel free to reopen if it isn't in fact fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:09:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:09:15 +0100 (BST) Subject: [Bug 16298] Marvell 88E8053 isn't recognized In-Reply-To: Message-ID: <20050926160915.0D43622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16298 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-26 17:09 UTC ------- Does Ubuntu 5.04 drive the NIC correctly? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:14:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:14:08 +0100 (BST) Subject: [Bug 16310] Some directories do not get removed on purge In-Reply-To: Message-ID: <20050926161408.E19F722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16310 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |adconrad at ubuntu.com Severity|normal |minor -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:15:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:15:18 +0100 (BST) Subject: [Bug 16315] Upgrade from breezy 2.6.12-8 to -9 broke resume after suspend-to-ram In-Reply-To: Message-ID: <20050926161518.54E7A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16315 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:23:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:23:45 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050926162345.6F4AD22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |critical ------- Additional Comments From mdz at ubuntu.com 2005-09-26 17:23 UTC ------- Bringing severity back up, since many people still seem to have a problem here. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:24:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:24:14 +0100 (BST) Subject: [Bug 16327] hibernate resume fails to bring back network card In-Reply-To: Message-ID: <20050926162414.E6B8B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16327 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:25:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:25:31 +0100 (BST) Subject: [Bug 3203] DXS autodetection in snd_via82xx module is unreliable? In-Reply-To: Message-ID: <20050926162531.265BE22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3203 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:25 UTC ------- Odd, both the dmesg's are identical, and so sign of the sound driver being loaded. Loading the module doesn't provide any sort of kernel output? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:26:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:26:36 +0100 (BST) Subject: [Bug 16331] hfsplus filesystem is read-only In-Reply-To: Message-ID: <20050926162636.EFD6222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16331 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|ipod nano fs is automounted |hfsplus filesystem is read- |read-only |only -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:27:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:27:44 +0100 (BST) Subject: [Bug 3347] via-agp module hangs IBM xSeries 300 In-Reply-To: Message-ID: <20050926162744.7433F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3347 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:27 UTC ------- Any updates on testing this bug against the latest kernel? Maybe just try booting with a Colony 5 live cd. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:28:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:28:31 +0100 (BST) Subject: [Bug 1596] powerpc kernel throws SIGILL sometimes In-Reply-To: Message-ID: <20050926162831.313E822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1596 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |adconrad at ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-26 17:28 UTC ------- This has never been reproducible on demand, but it was happening regularly on our buildds. It was rumoured that using a powerpc64 kernel would fix it; was that done? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:30:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:30:28 +0100 (BST) Subject: [Bug 15224] Breezy 5.10 Preview installer requires vga=771 to function on ATI X300 In-Reply-To: Message-ID: <20050926163028.8B87822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15224 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-26 17:30 UTC ------- (In reply to comment #11) > Mmm.. perhaps the installer could be slightly clever, and automatically select > text mode when it sees this PCI device as the only video display in the system? > Otherwise a LOT of Dell Laptop users are going to be quite terrified when they > try to install Ubunutu.. Unfortunately not; this decision needs to be made well before the installer loads. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:31:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:31:08 +0100 (BST) Subject: [Bug 1940] ibook doesn't "wake up" In-Reply-To: Message-ID: <20050926163108.A8BF122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1940 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:32:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:32:20 +0100 (BST) Subject: [Bug 3351] Long pause at boot start with no status messages In-Reply-To: Message-ID: <20050926163220.C80C622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3351 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |NOTABUG ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:32 UTC ------- This really us more of a cosmetic thing, and I really don't want to consider it a bug (surely not one against the kernel, if it is one). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:36:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:36:57 +0100 (BST) Subject: [Bug 13350] [Breezy] hangs at boot In-Reply-To: Message-ID: <20050926163657.5DE7B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13350 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-26 17:36 UTC ------- Yes, many SCSI controllers take a long time to scan the bus. In the future, usplash will be displayed earlier so there will be an indication of progress. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:37:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:37:27 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926163727.0A47822F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |doko at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:38:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:38:06 +0100 (BST) Subject: [Bug 3643] acpi=off necessary with 686-smp kernel In-Reply-To: Message-ID: <20050926163806.8BBE122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3643 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |WONTFIX ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:38 UTC ------- Closing due to inactivity. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:38:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:38:46 +0100 (BST) Subject: [Bug 16349] Neomagic 256 audio device not detected In-Reply-To: Message-ID: <20050926163846.0197A22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16349 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|alsa-driver |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Soundcard cannot be detected|Neomagic 256 audio device | |not detected ------- Additional Comments From mdz at ubuntu.com 2005-09-26 17:38 UTC ------- Please don't confirm your own bug; this defeats the purpose of the feature. What type of device is it? If PCI, please send lspci and lspci -n output. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:39:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:39:45 +0100 (BST) Subject: [Bug 3925] iPod/ieee1394 does not work with 686-smp kernel In-Reply-To: Message-ID: <20050926163945.C49B922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=3925 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:39 UTC ------- I'm going to assume that this was some odd configuration difference between 386 and 686-smp, and that it is fixed in breezy. Please feel free to reopen if that's not the case. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:41:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:41:25 +0100 (BST) Subject: [Bug 14736] os-prober hangs In-Reply-To: Message-ID: <20050926164125.75FA622F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14736 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From cjwatson at ubuntu.com 2005-09-26 17:41 UTC ------- linux-source-2.6.12 (2.6.12-9.14) breezy; urgency=low [...] Changes by Fabio M. Di Nitto: [...] * Add nls_utf8 to powerpc fs-common-modules udeb. (Closes: #14736) [...] -- Ben Collins Thu, 22 Sep 2005 15:32:49 -0400 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:42:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:42:54 +0100 (BST) Subject: [Bug 16352] Nice to have f2pci, f3pci, f4pci modules In-Reply-To: Message-ID: <20050926164254.78BB922F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16352 Ubuntu | linux-restricted-modules mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|daniel.stone at ubuntu.com |doko at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:47:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:47:09 +0100 (BST) Subject: [Bug 4120] acer aspire 2001 does not resume from suspend to ram In-Reply-To: Message-ID: <20050926164709.57C9E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4120 Ubuntu (laptop) | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:47 UTC ------- So did breezy preview work for you without the script? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:48:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:48:34 +0100 (BST) Subject: [Bug 4189] realtime lsm patch for hoary's kernel? In-Reply-To: Message-ID: <20050926164834.C514722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4189 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |NOTABUG ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:48 UTC ------- As the comment says, this is not a bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:54:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:54:15 +0100 (BST) Subject: [Bug 15799] hard freeze with 2.6.12-8-686-smp 8.13 In-Reply-To: Message-ID: <20050926165415.2E5C722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15799 Ubuntu | linux desrt at desrt.ca changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From desrt at desrt.ca 2005-09-26 17:54 UTC ------- Yet to happen again. Closing for now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:54:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:54:19 +0100 (BST) Subject: [Bug 4302] xmms USB sound is pop and crackly In-Reply-To: Message-ID: <20050926165419.8BD2322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4302 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |NOTABUG ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:54 UTC ------- Following suggestions from comments and closing this bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:56:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:56:30 +0100 (BST) Subject: [Bug 15054] Breezy Installation : Network cannot be configured automatically In-Reply-To: Message-ID: <20050926165630.72B5A22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15054 Ubuntu | linux ------- Additional Comments From getaceres at gmail.com 2005-09-26 17:56 UTC ------- I've installed the 2.6.12-9-k7 kernel and it's still the same. If I configure it by DHCP it takes a lot to get a response. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 16:57:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 17:57:39 +0100 (BST) Subject: [Bug 14931] Missing libata "passthrough" functionality In-Reply-To: Message-ID: <20050926165739.8B54D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14931 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 17:57 UTC ------- Patch would be more than welcome. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:05:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:05:04 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050926170504.34DE322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 18:05 UTC ------- Can you try adding reboot=s to your kernel params, and seeing if that helps. Also try reboot=h. I have a feeling that the machine just isn't being rebooted properly. Please attach dmesg and /proc/cpuinfo aswell. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:07:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:07:39 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050926170739.BC45522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO Summary|Kernel 2.6.12 Horay |RTL-8319 not working (in | |what way?) ------- Additional Comments From mdz at ubuntu.com 2005-09-26 18:07 UTC ------- Send us the output from: lspci lspci -n lsmod dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:07:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:07:48 +0100 (BST) Subject: [Bug 4313] cdrecord "crashes" my desktop In-Reply-To: Message-ID: <20050926170748.EECE922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4313 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 18:07 UTC ------- Since an updated kernel fixed the problem, just going to close this. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:09:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:09:59 +0100 (BST) Subject: [Bug 16251] After initial Ubuntu kernel boot starts HD light remains constantly on In-Reply-To: Message-ID: <20050926170959.0379322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16251 Ubuntu | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-26 18:09 UTC ------- I have read the 2 similar bugs, and they do indeed report very similar issues. Being a Sony Laptop, the harddisk is very quiet, but if you hold your ear to it, you can hear it seeking...however, the LED stays on permanently, and no noise can be hear most of the time. If any logs / command outputs from my system are required, please let me know. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:11:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:11:22 +0100 (BST) Subject: [Bug 16373] boot freezed: [4294673.591000] drivers/usb/input/hid-core.c: v2.01:USB HID core driver In-Reply-To: Message-ID: <20050926171122.707BC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16373 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Severity|blocker |major Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-26 18:11 UTC ------- Please attach dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:15:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:15:24 +0100 (BST) Subject: [Bug 4334] Problem switching from built-in trackpoint to external PS/2 mouse In-Reply-To: Message-ID: <20050926171524.38CE522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4334 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 18:15 UTC ------- I think this bug is two levels. First, psmouse cannot cope with chaning protocols, and second, X cannot handle changing protocols on a single device either. I'll have to see if the kernel side is possible. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:20:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:20:16 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050926172016.EA9C322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-26 18:20 UTC ------- When I boot with kernel 2.6.12 I can't conect to internet, Ubuntu only encounter a modem that I don't have. In the device manager i can see my RTL-8319, but it don't work -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:33:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:33:55 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050926173355.5AC3E303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-26 18:33 UTC ------- root at sauron:/home/jose # lspci 0000:00:00.0 Host bridge: Advanced Micro Devices [AMD] AMD-751 [Irongate] System Controller (rev 25) 0000:00:01.0 PCI bridge: Advanced Micro Devices [AMD] AMD-751 [Irongate] AGP Bri dge (rev 01) 0000:00:07.0 ISA bridge: Advanced Micro Devices [AMD] AMD-756 [Viper] ISA (rev 0 1) 0000:00:07.1 IDE interface: Advanced Micro Devices [AMD] AMD-756 [Viper] IDE (re v 07) 0000:00:07.3 Bridge: Advanced Micro Devices [AMD] AMD-756 [Viper] ACPI (rev 03) 0000:00:07.4 USB Controller: Advanced Micro Devices [AMD] AMD-756 [Viper] USB (r ev 06) 0000:00:08.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capt ure (rev 11) 0000:00:08.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (r ev 11) 0000:00:09.0 Multimedia audio controller: Ensoniq 5880 AudioPCI (rev 04) 0000:00:0a.0 USB Controller: ALi Corporation USB 1.1 Controller (rev 03) 0000:00:0a.1 USB Controller: ALi Corporation USB 1.1 Controller (rev 03) 0000:00:0a.2 USB Controller: ALi Corporation USB 1.1 Controller (rev 03) 0000:00:0a.3 USB Controller: ALi Corporation USB 2.0 Controller (rev 01) 0000:00:0c.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C /8139C+ (rev 10) 0000:01:05.0 VGA compatible controller: nVidia Corporation NV11DDR [GeForce2 MX 100 DDR/200 DDR] (rev b2) root at sauron:/home/jose # lspci -n 0000:00:00.0 0600: 1022:7006 (rev 25) 0000:00:01.0 0604: 1022:7007 (rev 01) 0000:00:07.0 0601: 1022:7408 (rev 01) 0000:00:07.1 0101: 1022:7409 (rev 07) 0000:00:07.3 0680: 1022:740b (rev 03) 0000:00:07.4 0c03: 1022:740c (rev 06) 0000:00:08.0 0400: 109e:036e (rev 11) 0000:00:08.1 0480: 109e:0878 (rev 11) 0000:00:09.0 0401: 1274:5880 (rev 04) 0000:00:0a.0 0c03: 10b9:5237 (rev 03) 0000:00:0a.1 0c03: 10b9:5237 (rev 03) 0000:00:0a.2 0c03: 10b9:5237 (rev 03) 0000:00:0a.3 0c03: 10b9:5239 (rev 01) 0000:00:0c.0 0200: 10ec:8139 (rev 10) 0000:01:05.0 0300: 10de:0111 (rev b2) root at sauron:/home/jose # lsmod Module Size Used by ipv6 217408 6 binfmt_misc 10888 1 rfcomm 34972 0 l2cap 22404 5 rfcomm bluetooth 43012 4 rfcomm,l2cap cpufreq_powersave 1920 0 cpufreq_stats 5124 0 cpufreq_userspace 4444 0 cpufreq_ondemand 5916 0 cpufreq_conservative 6820 0 freq_table 4484 1 cpufreq_stats tc1100_wmi 6916 0 video 16004 0 battery 9604 0 container 4608 0 i2c_acpi_ec 5760 0 fan 4740 0 button 6672 0 pcc_acpi 11392 0 sony_acpi 5516 0 thermal 13192 0 processor 23100 1 thermal ac 4996 0 dev_acpi 11396 0 hotkey 9508 0 af_packet 20232 0 floppy 52692 0 pcspkr 3652 0 rtc 11832 0 usblp 11776 0 snd_ens1371 22240 1 gameport 14472 1 snd_ens1371 snd_rawmidi 22816 1 snd_ens1371 snd_seq_device 8204 1 snd_rawmidi snd_ac97_codec 72188 1 snd_ens1371 snd_pcm_oss 46368 0 snd_mixer_oss 16128 1 snd_pcm_oss snd_pcm 78344 3 snd_ens1371,snd_ac97_codec,snd_pcm_oss snd_timer 21764 1 snd_pcm snd 48644 10 snd_ens1371,snd_rawmidi,snd_seq_device,snd_ac97 _codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer soundcore 9184 1 snd snd_page_alloc 10120 1 snd_pcm bt878 9912 0 bttv 141456 1 bt878 video_buf 19844 1 bttv firmware_class 9472 1 bttv i2c_algo_bit 8584 1 bttv v4l2_common 5888 1 bttv btcx_risc 4872 1 bttv tveeprom 12568 1 bttv videodev 9344 1 bttv i2c_amd756 6148 0 i2c_core 19728 5 i2c_acpi_ec,bttv,i2c_algo_bit,tveeprom,i2c_amd75 6 shpchp 80612 0 pci_hotplug 24628 1 shpchp amd_k7_agp 8460 1 agpgart 32328 1 amd_k7_agp ext3 115976 1 jbd 48536 1 ext3 nls_iso8859_1 4224 1 nls_cp437 5888 1 vfat 12288 1 fat 46492 1 vfat dm_mod 50364 1 tsdev 7616 0 evdev 9088 0 psmouse 26116 0 mousedev 10912 1 parport_pc 31812 1 lp 11460 0 parport 32072 2 parport_pc,lp md 40656 0 unix 24624 868 reiserfs 217200 1 vga16fb 12232 1 vgastate 8320 1 vga16fb softcursor 2432 1 vga16fb cfbimgblt 2944 1 vga16fb cfbfillrect 3840 1 vga16fb cfbcopyarea 4480 1 vga16fb fbcon 34176 72 tileblit 2560 1 fbcon font 8448 1 fbcon bitblit 5248 1 fbcon 8139cp 18432 0 8139too 23552 0 mii 5248 2 8139cp,8139too ehci_hcd 29448 0 ohci_hcd 18564 0 usbcore 104188 4 usblp,ehci_hcd,ohci_hcd ide_cd 36996 0 cdrom 33952 1 ide_cd ide_disk 16128 5 ide_generic 1664 0 amd74xx 12828 1 ide_core 125268 4 ide_cd,ide_disk,ide_generic,amd74xx root at sauron:/home/jose # dmesg 0] Mount-cache hash table entries: 512 [4294669.688000] CPU: After generic identify, caps: 0183f9ff c1c7f9ff 00000000 0 0000000 00000000 00000000 00000000 [4294669.688000] CPU: After vendor identify, caps: 0183f9ff c1c7f9ff 00000000 00 000000 00000000 00000000 00000000 [4294669.688000] CPU: L1 I Cache: 64K (64 bytes/line), D cache 64K (64 bytes/lin e) [4294669.688000] CPU: L2 Cache: 64K (64 bytes/line) [4294669.688000] CPU: After all inits, caps: 0183f9ff c1c7f9ff 00000000 00000020 00000000 00000000 00000000 [4294669.688000] CPU: AMD Duron(tm) Processor stepping 01 [4294669.688000] Enabling fast FPU save and restore... done. [4294669.688000] Checking 'hlt' instruction... OK. [4294669.692000] Checking for popad bug... OK. [4294669.692000] checking if image is initramfs... it is [4294670.592000] Freeing initrd memory: 4660k freed [4294670.598000] ACPI: Looking for DSDT in initrd... not found! [4294670.723000] not found! [4294670.732000] ACPI: setting ELCR to 0800 (from 0e20) [4294670.734000] NET: Registered protocol family 16 [4294670.734000] EISA bus registered [4294670.734000] ACPI: bus type pci registered [4294670.748000] PCI: PCI BIOS revision 2.10 entry at 0xfdb71, last bus=1 [4294670.748000] PCI: Using configuration type 1 [4294670.748000] mtrr: v2.0 (20020519) [4294670.749000] ACPI: Subsystem revision 20050729 [4294670.763000] ACPI: Interpreter enabled [4294670.763000] ACPI: Using PIC for interrupt routing [4294670.764000] ACPI: PCI Root Bridge [PCI0] (0000:00) [4294670.764000] PCI: Probing PCI hardware (bus 00) [4294670.764000] ACPI: Assume root bridge [\_SB_.PCI0] segment is 0 [4294670.769000] Boot video device is 0000:01:05.0 [4294670.771000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT] [4294670.776000] ACPI: Power Resource [URP1] (off) [4294670.777000] ACPI: Power Resource [URP2] (off) [4294670.777000] ACPI: Power Resource [FDDP] (off) [4294670.777000] ACPI: Power Resource [LPTP] (off) [4294670.778000] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 *10 11 12 14 15) [4294670.778000] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 12 14 15) [4294670.779000] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 *9 10 11 12 14 15) [4294670.779000] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 *5 6 7 9 10 11 12 14 15) [4294670.779000] Linux Plug and Play Support v0.97 (c) Adam Belay [4294670.779000] pnp: PnP ACPI init [4294670.786000] pnp: PnP ACPI: found 11 devices [4294670.786000] PnPBIOS: Disabled by ACPI PNP [4294670.786000] PCI: Using ACPI for IRQ routing [4294670.786000] PCI: If a device doesn't work, try "pci=routeirq". If it helps , post a report [4294670.789000] pnp: 00:00: ioport range 0xde00-0xde03 has been reserved [4294670.791000] audit: initializing netlink socket (disabled) [4294670.791000] audit: initialized [4294670.791000] VFS: Disk quotas dquot_6.5.1 [4294670.791000] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes) [4294670.791000] devfs: 2004-01-31 Richard Gooch (rgooch at atnf.csiro.au) [4294670.791000] devfs: boot_options: 0x0 [4294670.791000] Initializing Cryptographic API [4294670.791000] isapnp: Scanning for PnP cards... [4294671.145000] isapnp: No Plug & Play device found [4294671.200000] PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 i rq 1,12 [4294671.202000] serio: i8042 AUX port at 0x60,0x64 irq 12 [4294671.202000] serio: i8042 KBD port at 0x60,0x64 irq 1 [4294671.202000] Serial: 8250/16550 driver $Revision: 1.90 $ 54 ports, IRQ shari ng enabled [4294671.202000] ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [4294671.202000] ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A [4294671.207000] ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A [4294671.207000] ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A [4294671.207000] io scheduler noop registered [4294671.207000] io scheduler anticipatory registered [4294671.207000] io scheduler deadline registered [4294671.207000] io scheduler cfq registered [4294671.208000] RAMDISK driver initialized: 16 RAM disks of 8192K size 1024 blo cksize [4294671.209000] EISA: Probing bus 0 at eisa.0 [4294671.209000] Cannot allocate resource for EISA slot 5 [4294671.209000] EISA: Detected 0 cards. [4294671.209000] NET: Registered protocol family 2 [4294671.218000] IP: routing cache hash table of 4096 buckets, 32Kbytes [4294671.218000] TCP established hash table entries: 16384 (order: 5, 131072 byt es) [4294671.218000] TCP bind hash table entries: 16384 (order: 4, 65536 bytes) [4294671.219000] TCP: Hash tables configured (established 16384 bind 16384) [4294671.219000] NET: Registered protocol family 8 [4294671.219000] NET: Registered protocol family 20 [4294671.219000] ACPI wakeup devices: [4294671.219000] PCI0 UAR1 USB [4294671.219000] ACPI: (supports S0 S1 S4 S5) [4294671.220000] Freeing unused kernel memory: 224k freed [4294671.256000] input: AT Translated Set 2 keyboard on isa0060/serio0 [4294671.329000] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 [4294671.329000] ide: Assuming 33MHz system bus speed for PIO modes; override wi th idebus=xx [4294671.329000] ACPI: bus type ide registered [4294671.358000] AMD7409: IDE controller at PCI slot 0000:00:07.1 [4294671.358000] AMD7409: chipset revision 7 [4294671.358000] AMD7409: not 100% native mode: will probe irqs later [4294671.358000] AMD7409: 0000:00:07.1 (rev 07) UDMA66 controller [4294671.358000] ide0: BM-DMA at 0xf000-0xf007, BIOS settings: hda:DMA, hdb: pio [4294671.358000] ide1: BM-DMA at 0xf008-0xf00f, BIOS settings: hdc:DMA, hdd: DMA [4294671.358000] Probing IDE interface ide0... [4294671.622000] hda: ST330621A, ATA DISK drive [4294672.234000] ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 [4294672.234000] Probing IDE interface ide1... [4294672.906000] hdc: HL-DT-ST GCE-8526B, ATAPI CD/DVD-ROM drive [4294673.620000] hdd: HL-DT-ST GCE-8160B, ATAPI CD/DVD-ROM drive [4294673.671000] ide1 at 0x170-0x177,0x376 on irq 15 [4294673.671000] Probing IDE interface ide2... [4294674.184000] Probing IDE interface ide3... [4294674.697000] Probing IDE interface ide4... [4294675.210000] Probing IDE interface ide5... [4294675.733000] hda: max request size: 128KiB [4294675.733000] hda: 58633344 sectors (30020 MB) w/512KiB Cache, CHS=58168/16/6 3, UDMA(66) [4294675.733000] hda: cache flushes not supported [4294675.733000] /dev/ide/host0/bus0/target0/lun0: p1 p2 p3 p4 < p5 > [4294675.807000] hdc: ATAPI 52X CD-ROM CD-R/RW drive, 2048kB Cache [4294675.807000] Uniform CD-ROM driver Revision: 3.20 [4294675.809000] hdd: ATAPI 40X CD-ROM CD-R/RW drive, 2048kB Cache [4294677.215000] Attempting manual resume [4294677.215000] swsusp: Suspend partition has wrong signature? [4294677.332000] usbcore: registered new driver usbfs [4294677.332000] usbcore: registered new driver hub [4294677.334000] ohci_hcd: 2004 Nov 08 USB 1.1 'Open' Host Controller (OHCI) Dri ver (PCI) [4294677.335000] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 5 [4294677.335000] PCI: setting IRQ 5 as level-triggered [4294677.335000] ACPI: PCI Interrupt 0000:00:07.4[D] -> Link [LNKD] -> GSI 5 (le vel, low) -> IRQ 5 [4294677.335000] ohci_hcd 0000:00:07.4: Advanced Micro Devices [AMD] AMD-756 [Vi per] USB [4294677.336000] ohci_hcd 0000:00:07.4: new USB bus registered, assigned bus num ber 1 [4294677.336000] ohci_hcd 0000:00:07.4: irq 5, io mem 0xeffcf000 [4294677.387000] hub 1-0:1.0: USB hub found [4294677.387000] hub 1-0:1.0: 4 ports detected [4294677.388000] ACPI: PCI Interrupt 0000:00:0a.0[B] -> Link [LNKD] -> GSI 5 (le vel, low) -> IRQ 5 [4294677.388000] ohci_hcd 0000:00:0a.0: ALi Corporation USB 1.1 Controller [4294677.388000] ohci_hcd 0000:00:0a.0: new USB bus registered, assigned bus num ber 2 [4294677.388000] ohci_hcd 0000:00:0a.0: irq 5, io mem 0xefffc000 [4294677.441000] hub 2-0:1.0: USB hub found [4294677.441000] hub 2-0:1.0: 2 ports detected [4294677.444000] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10 [4294677.444000] PCI: setting IRQ 10 as level-triggered [4294677.444000] ACPI: PCI Interrupt 0000:00:0a.1[C] -> Link [LNKA] -> GSI 10 (l evel, low) -> IRQ 10 [4294677.444000] ohci_hcd 0000:00:0a.1: ALi Corporation USB 1.1 Controller (#2) [4294677.444000] ohci_hcd 0000:00:0a.1: new USB bus registered, assigned bus num ber 3 [4294677.444000] ohci_hcd 0000:00:0a.1: irq 10, io mem 0xefffd000 [4294677.497000] hub 3-0:1.0: USB hub found [4294677.497000] hub 3-0:1.0: 2 ports detected [4294677.500000] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11 [4294677.500000] PCI: setting IRQ 11 as level-triggered [4294677.500000] ACPI: PCI Interrupt 0000:00:0a.2[D] -> Link [LNKB] -> GSI 11 (l evel, low) -> IRQ 11 [4294677.500000] ohci_hcd 0000:00:0a.2: ALi Corporation USB 1.1 Controller (#3) [4294677.500000] ohci_hcd 0000:00:0a.2: new USB bus registered, assigned bus num ber 4 [4294677.500000] ohci_hcd 0000:00:0a.2: irq 11, io mem 0xefffe000 [4294677.553000] hub 4-0:1.0: USB hub found [4294677.553000] hub 4-0:1.0: 2 ports detected [4294677.688000] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 9 [4294677.688000] PCI: setting IRQ 9 as level-triggered [4294677.688000] ACPI: PCI Interrupt 0000:00:0a.3[A] -> Link [LNKC] -> GSI 9 (le vel, low) -> IRQ 9 [4294677.688000] ehci_hcd 0000:00:0a.3: ALi Corporation USB 2.0 Controller [4294677.688000] ehci_hcd 0000:00:0a.3: debug port 1 [4294677.709000] ehci_hcd 0000:00:0a.3: new USB bus registered, assigned bus num ber 5 [4294677.709000] ehci_hcd 0000:00:0a.3: irq 9, io mem 0xeffffe00 [4294677.709000] ehci_hcd 0000:00:0a.3: USB 2.0 initialized, EHCI 1.00, driver 1 0 Dec 2004 [4294677.709000] hub 5-0:1.0: USB hub found [4294677.709000] hub 5-0:1.0: 6 ports detected [4294677.751000] 8139too Fast Ethernet driver 0.9.27 [4294677.751000] ACPI: PCI Interrupt 0000:00:0c.0[A] -> Link [LNKA] -> GSI 10 (l evel, low) -> IRQ 10 [4294677.751000] PCI: Unable to reserve I/O region #1:100 at de00 for device 0000:0 0:0c.0 [4294677.751000] Trying to free nonexistent resource <0000de00-0000deff> [4294677.751000] Trying to free nonexistent resource [4294677.751000] 8139too: probe of 0000:00:0c.0 failed with error -16 [4294677.755000] 8139cp: 10/100 PCI Ethernet driver v1.2 (Mar 22, 2004) [4294677.755000] 8139cp: pci dev 0000:00:0c.0 (id 10ec:8139 rev 10) is not an 81 39C+ compatible chip [4294677.755000] 8139cp: Try the "8139too" driver instead. [4294678.062000] usb 4-1: new full speed USB device using ohci_hcd and address 3 [4294681.366000] vga16fb: initializing [4294681.366000] vga16fb: mapped to 0xc00a0000 [4294681.504000] Console: switching to colour frame buffer device 80x30 [4294681.504000] fb0: VGA16 VGA frame buffer device [4294681.810000] Attempting manual resume [4294681.829000] swsusp: Suspend partition has wrong signature? [4294681.857000] ReiserFS: hda2: found reiserfs format "3.6" with standard journ al [4294682.575000] ReiserFS: hda2: using ordered data mode [4294682.586000] ReiserFS: hda2: journal params: device hda2, size 8192, journal first block 18, max trans len 1024, max batch 900, max commit age 30, max trans age 30 [4294682.590000] ReiserFS: hda2: checking transaction log (hda2) [4294682.652000] ReiserFS: hda2: Using r5 hash to sort names [4294683.824000] NET: Registered protocol family 1 [4294684.800000] md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27 [4294691.634000] Adding 401616k swap on /dev/hda5. Priority:-1 extents:1 [4294695.366000] parport: PnPBIOS parport detected. [4294695.366000] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTA TE,COMPAT,EPP,ECP,DMA] [4294695.454000] lp0: using parport0 (interrupt-driven). [4294695.525000] mice: PS/2 mouse device common for all mice [4294695.766000] input: ImExPS/2 Generic Explorer Mouse on isa0060/serio1 [4294697.758000] ts: Compaq touchscreen protocol output [4294699.774000] device-mapper: 4.4.0-ioctl (2005-01-12) initialised: dm-devel at r edhat.com [4294701.867000] cdrom: open failed. [4294701.869000] cdrom: open failed. [4294703.890000] kjournald starting. Commit interval 5 seconds [4294703.905000] EXT3 FS on hda3, internal journal [4294703.905000] EXT3-fs: mounted filesystem with ordered data mode. [4294706.820000] Linux agpgart interface v0.101 (c) Dave Jones [4294706.853000] agpgart: Detected AMD Irongate chipset [4294706.853000] agpgart: AMD 751 chipset with NVidia GeForce detected. Forcing to 1X due to errata. [4294706.877000] agpgart: AGP aperture is 64M @ 0xe8000000 [4294707.143000] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [4294707.204000] shpchp: HPC vendor_id 1022 device_id 7007 ss_vid 0 ss_did 0 [4294707.204000] shpchp: shpc_init: cannot reserve MMIO region [4294707.204000] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [4294708.106000] Linux video capture interface: v1.00 [4294708.997000] bttv: driver version 0.9.15 loaded [4294708.997000] bttv: using 8 buffers with 2080k (520 pages) each for capture [4294709.016000] bttv: Bt8xx card found (0). [4294709.016000] ACPI: PCI Interrupt 0000:00:08.0[A] -> Link [LNKA] -> GSI 10 (l evel, low) -> IRQ 10 [4294709.016000] bttv0: Bt878 (rev 17) at 0000:00:08.0, irq: 10, latency: 64, mm io: 0xeddfe000 [4294709.016000] bttv0: using: *** UNKNOWN/GENERIC *** [card=0,autodetected] [4294709.016000] bttv0: gpio: en=00000000, out=00000000 in=00047ff3 [init] [4294709.024000] tveeprom(bttv internal): Huh, no eeprom present (err=-121)? [4294709.024000] bttv0: using tuner=-1 [4294709.024000] bttv0: i2c: checking for MSP34xx @ 0x80... not found [4294709.027000] bttv0: i2c: checking for TDA9875 @ 0xb0... not found [4294709.029000] bttv0: i2c: checking for TDA7432 @ 0x8a... not found [4294709.031000] bttv0: i2c: checking for TDA9887 @ 0x86... not found [4294709.077000] bttv0: registered device video0 [4294709.105000] bttv0: registered device vbi0 [4294709.444000] bt878: AUDIO driver version 0.0.0 loaded [4294709.455000] bt878: Bt878 AUDIO function found (0). [4294709.455000] ACPI: PCI Interrupt 0000:00:08.1[A] -> Link [LNKA] -> GSI 10 (l evel, low) -> IRQ 10 [4294709.455000] bt878(0): Bt878 (rev 17) at 00:08.1, irq: 10, latency: 64, memo ry: 0xeddff000 [4294710.396000] ACPI: PCI Interrupt 0000:00:09.0[A] -> Link [LNKB] -> GSI 11 (l evel, low) -> IRQ 11 [4294715.022000] drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer de v 3 if 0 alt 0 proto 2 vid 0x03F0 pid 0x7404 [4294715.073000] usbcore: registered new driver usblp [4294715.073000] drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driv er [4294715.396000] Real Time Clock Driver v1.12 [4294715.536000] input: PC Speaker [4294716.828000] Floppy drive(s): fd0 is 1.44M [4294716.843000] FDC 0 is a post-1991 82077 [4294720.072000] NET: Registered protocol family 17 [4294724.321000] ACPI: CPU0 (power states: C1[C1]) [4294724.338000] ACPI: Thermal Zone [THRM] (75 C) [4294724.548000] ACPI: Power Button (FF) [PWRF] [4294724.548000] ACPI: Sleep Button (FF) [SLPF] [4294724.548000] ACPI: Power Button (CM) [PWRB] [4294724.714000] ibm_acpi: ec object not found [4294741.235000] apm: BIOS version 1.2 Flags 0x03 (Driver version 1.16ac) [4294741.235000] apm: overridden by ACPI. [4294747.773000] powernow: No powernow capabilities detected [4294748.089000] Bluetooth: Core ver 2.7 [4294748.089000] NET: Registered protocol family 31 [4294748.089000] Bluetooth: HCI device and connection manager initialized [4294748.089000] Bluetooth: HCI socket layer initialized [4294748.148000] Bluetooth: L2CAP ver 2.7 [4294748.148000] Bluetooth: L2CAP socket layer initialized [4294748.253000] Bluetooth: RFCOMM ver 1.5 [4294748.253000] Bluetooth: RFCOMM socket layer initialized [4294748.253000] Bluetooth: RFCOMM TTY layer initialized [4294753.412000] NET: Registered protocol family 10 [4294753.413000] Disabled Privacy Extensions on device c02eb280(lo) [4294753.413000] IPv6 over IPv4 tunneling driver -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:38:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:38:39 +0100 (BST) Subject: [Bug 15100] Reboot fails in vmware In-Reply-To: Message-ID: <20050926173839.09C8922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15100 Ubuntu | linux ------- Additional Comments From Philip.R.Schaffner at NASA.gov 2005-09-26 18:38 UTC ------- OOPS - That should have been "LSI Logic". On reflection this appears to be two different bugs. 1. Reboot failure 2. Installed system fails to work with SCSI controller. Kernel/initrd problem? BZ 14239? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:40:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:40:12 +0100 (BST) Subject: [Bug 16206] no reboot / shutdown on asus m6ne laptop [breezy] In-Reply-To: Message-ID: <20050926174012.47CC922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16206 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|acpi |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:40:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:40:39 +0100 (BST) Subject: [Bug 16222] Internal speaker not turned off when external is used In-Reply-To: Message-ID: <20050926174039.3C73322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16222 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |crimsun at fungus.sh.nu AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|linux-sound-base |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-26 18:40 UTC ------- (this is something that the driver would need to handle, yes?) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:53:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:53:49 +0100 (BST) Subject: [Bug 15100] Reboot fails in vmware In-Reply-To: Message-ID: <20050926175349.C703922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15100 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 18:53 UTC ------- The one bug about the BusLogic driver not being included in the initramfs, should be fixed. I haven't experienced the problem with not rebooting. What version of VMware is experiencing this problem? I've used VMWare 5.(something) without issues. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 17:56:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 18:56:48 +0100 (BST) Subject: [Bug 16206] no reboot / shutdown on asus m6ne laptop [breezy] In-Reply-To: Message-ID: <20050926175648.737FC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16206 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-26 18:56 UTC ------- Please try the latest kernel to see if that improves things. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 18:04:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 19:04:28 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050926180428.7FB1422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 19:04 UTC ------- Odd, 8139cp recognized the card, and correctly notes that it isn't an 8139cp, so drop to let 8139too handle it. However, 8139too doesn't seem to be picking it up. Can you do: sudo rmmod 8139too sudo rmmod 8139cp sudo modprobe 8139too ifconfig -a Send the output to all those commands please. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 18:14:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 19:14:18 +0100 (BST) Subject: [Bug 16222] Internal speaker not turned off when external is used In-Reply-To: Message-ID: <20050926181418.6F7DF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16222 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 19:14 UTC ------- Sure, the driver should handle this. I'll need dmesg, and lspci output to see which driver we are talking about. How do you disable it manually? Do you just mean muting the internal speaker? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 18:19:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 19:19:29 +0100 (BST) Subject: [Bug 4688] Therm modules fail to load on 1st gen powerbook G4 In-Reply-To: Message-ID: <20050926181929.E992422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4688 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 19:19 UTC ------- Closing due to age and lack of response. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 18:33:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 19:33:13 +0100 (BST) Subject: [Bug 4949] zombie sshd processes In-Reply-To: Message-ID: <20050926183313.D783622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4949 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 19:33 UTC ------- Hopefully I understand correctly that this isn't showing up post Warty. If it can be reproduced in Breezy, let me know and I'll reopen the bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 18:46:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 19:46:18 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050926184618.2DEE822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 19:46 UTC ------- I'm going to assume that all drivers have been fixed to handle the new IRQ return values (the cause of these messages) in breezy's 2.6.12 kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 18:50:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 19:50:47 +0100 (BST) Subject: [Bug 5402] Laptop doesn't poweroff In-Reply-To: Message-ID: <20050926185047.57AE722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5402 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 19:50 UTC ------- Can I get a confirmation that this bug still exists using the latest Colony 5. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 18:51:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 19:51:01 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050926185101.76D5E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-26 19:51 UTC ------- I was just searching for this bug...I've just booted into 2.6.12-9.14 and confirmed that irqpoll is no longer necessary on my hardware -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 18:54:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 19:54:21 +0100 (BST) Subject: [Bug 5544] USB mouse not working after suspend to disk In-Reply-To: Message-ID: <20050926185421.4714E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5544 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 19:54 UTC ------- There were some changes to acpi scripts in order to handle this issue. Please test Colony 5 or latest breezy and reopen the bug if it is not fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:01:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:01:00 +0100 (BST) Subject: [Bug 8739] spurious keyboard messages in syslog with multimedia keyboard In-Reply-To: Message-ID: <20050926190100.4493422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8739 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |nicholas at distinctive.com.au ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 20:01 UTC ------- *** Bug 5637 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:02:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:02:58 +0100 (BST) Subject: [Bug 5648] USB mouse not working with kernel 2.6.10 k7 version In-Reply-To: Message-ID: <20050926190258.2818422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5648 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 20:02 UTC ------- No response from original submitter. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:06:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:06:36 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050926190636.AA95B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From mdz at ubuntu.com 2005-09-26 20:06 UTC ------- (In reply to comment #4) > When I boot with kernel 2.6.12 I can't conect to internet But you can when you use a different kernel? which one? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:18:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:18:40 +0100 (BST) Subject: [Bug 5731] ath0 interface non-functional in installer In-Reply-To: Message-ID: <20050926191840.2971122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5731 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 20:18 UTC ------- Can some confirm whether this problem is fixed with Colony 5 install? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:26:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:26:21 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050926192621.A911422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |heinjan at gmail.com ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 20:26 UTC ------- *** Bug 6128 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:29:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:29:10 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050926192910.D77D322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-26 20:29 UTC ------- Can you provide the output of sudo sh -x /etc/init.d/pcmcia start thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:31:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:31:02 +0100 (BST) Subject: [Bug 10834] Little acpi event windows pop up in KDE In-Reply-To: Message-ID: <20050926193102.EE77222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10834 Ubuntu (laptop) | linux ------- Additional Comments From ubuntu_bugs at bits-fritz.de 2005-09-26 20:31 UTC ------- Created an attachment (id=4090) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4090&action=view) textfile with desired Info As desired: dmesg, lspci, dmidecode -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:33:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:33:07 +0100 (BST) Subject: [Bug 6302] System unusable after resume from hibernate (Panasonic R1) In-Reply-To: Message-ID: <20050926193307.42A2022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6302 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 20:33 UTC ------- Appears to have "gone away" -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:34:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:34:38 +0100 (BST) Subject: [Bug 6683] Crystal sound device not detected In-Reply-To: Message-ID: <20050926193438.4F83722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6683 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 20:34 UTC ------- Can you also attach lspnp output? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:35:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:35:45 +0100 (BST) Subject: [Bug 16387] Unreadable framebuffer text with vga16fb on ThinkPad X30 In-Reply-To: Message-ID: <20050926193545.DB2E022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16387 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Installation using PXE. |Unreadable framebuffer text | |with vga16fb on ThinkPad X30 ------- Additional Comments From mdz at ubuntu.com 2005-09-26 20:35 UTC ------- Can you take a photo of the screen so that we can see what you mean? At a minimum, describe what you see on the screen. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:40:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:40:17 +0100 (BST) Subject: [Bug 10834] Little acpi event windows pop up in KDE In-Reply-To: Message-ID: <20050926194017.68B2622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10834 Ubuntu (laptop) | linux ------- Additional Comments From ubuntu_bugs at bits-fritz.de 2005-09-26 20:40 UTC ------- The effect seems to apear using kde as windowmanager only. The use of the kde-libs in kde applications out of windowmaker works as expected. Bugzilla doesn't keep me up to date. If possible put me in CC list - my status apparently doesn't allow me to do this myself. If you need more input let me know. Friedrich -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:40:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:40:50 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050926194050.C0DE522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From kaaloo at gmail.com 2005-09-26 20:40 UTC ------- Thank you for the suggestions. After having getting the latest updates, I booted on the 2.6.12-9-686 kernel tonight to obtain the information you asked for, but to my surprise wireless is working ! I am going to reboot again, and I will let you know if I experience the bug again. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:41:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:41:54 +0100 (BST) Subject: [Bug 14941] udev not loading joystick module/creating joystick device In-Reply-To: Message-ID: <20050926194154.6927B22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14941 Ubuntu | hotplug scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-26 20:41 UTC ------- Format: 1.7 Date: Fri, 23 Sep 2005 23:31:23 +0100 Source: udev Binary: udev udev-udeb Architecture: source Version: 0.060-1ubuntu15 Distribution: breezy Urgency: low Maintainer: Marco d'Itri Changed-By: Scott James Remnant Description: udev - /dev/ management daemon udev-udeb - /dev/ management daemon Changes: udev (0.060-1ubuntu15) breezy; urgency=low . * The kernel's input subsystem still hasn't been updated to use the new driver core and is still running /proc/sys/kernel/hotplug (udevsend) itself with a hand-constructed environment, rather than attaching data to the sysfs event. . These hand-constructed events are missing the DEVPATH= variable which udev requires before processing its rules. . Added debian/patches/hotplug_input_events which instead of ignoring these events catches those from the input subsystem and processes them by running /sbin/udev_run_hotplugd; effectively passing all responsibility to the old hotplug input.agent which still can deal with them. . In the long-term, the kernel will be updated to use the driver core (there are patches starting to be floated now) and attach its information to the sysfs event, so this hack can go when that happens. Files: 5bdbe0e36977e93802622c253e90975d 604 admin optional udev_0.060-1ubuntu15.dsc 3ab1155dd03ad91906e94611a680515c 33715 admin optional udev_0.060-1ubuntu15.diff.gz Package-Type: udeb -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:47:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:47:43 +0100 (BST) Subject: [Bug 6841] strip won't strip non-executable files on XFS In-Reply-To: Message-ID: <20050926194743.B835622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6841 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 20:47 UTC ------- Does this still affect current breezy kernels? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:55:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:55:24 +0100 (BST) Subject: [Bug 6855] Attempting to mount a logical drive hangs Linux In-Reply-To: Message-ID: <20050926195524.821EA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6855 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 20:55 UTC ------- Matt, can you reproduce this in latest breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:58:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:58:48 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050926195848.A0D6522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-26 20:58 UTC ------- >> When I boot with kernel 2.6.12 I can't conect to internet > >But you can when you use a different kernel? which one? Excuse me, my English is very bad... I use kernel 2.6.10 to conect internet, kernel 2.6.12 don't conect, my net card not run with him... The output to all commands: root at sauron:/home/jose # rmmod 8139too root at sauron:/home/jose # rmmod 8139cp root at sauron:/home/jose # modprobe 8139too root at sauron:/home/jose # ifconfig -a lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:447 errors:0 dropped:0 overruns:0 frame:0 TX packets:447 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:112618 (109.9 KiB) TX bytes:112618 (109.9 KiB) sit0 Link encap:IPv6-in-IPv4 NOARP MTU:1480 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Very thank for help me... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 19:59:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 20:59:08 +0100 (BST) Subject: [Bug 14445] suspend-to-ram no longer works on powerbooks (breezy 20050831.1) In-Reply-To: Message-ID: <20050926195908.D85EB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14445 Ubuntu | linux ------- Additional Comments From clemens at vienne.eu.org 2005-09-26 20:59 UTC ------- Had exactly the same problem: suspend-to-ram did not work after an upgrade to the latest pbbuttonsd/kernel (2.6.12-9). After trying a couple of things (older versions of udev, pbbuttonsd, laptop-mode-tools from my /var/cache/apt/archives/ and rebooting into linux.old=2.6.12-8) it now works with the latest versions again. Must have been some config-file issue, but I don't know exactly what it was, SORRY. Perhaps a purge of pbbuttonsd and laptop-mode-tools and a reinstall afterward has solved the problem.... Could not really help, but perhaps this is a hint.... But I can tell that it is not a kernel-related problem, since I could resolve it without even touching the kernel-image. And it works with the latest (2.6.12-9-powerpc) My Hardware is a (white) iBook G4 1GHz. Running the latest breezy-packages (from repositories) after a dist-upgrade from hoary (2-3 weeks ago with mostly daily updates). Hope this could help. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:02:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:02:10 +0100 (BST) Subject: [Bug 6108] laptop-mode/IDE-APM hang on various laptops In-Reply-To: Message-ID: <20050926200210.97CD322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6108 Ubuntu (laptop) | linux ------- Additional Comments From lists at wikidev.net 2005-09-26 21:02 UTC ------- I just got another hang on my Acer Travelmate 292lmi. I already upgraded the bios without making a difference. For me this first happened about a month ago, even though i was tracking breezy since at least May. During the uni semester i use the laptop almost daily on battery but never got a hang between Sept.'04 and July '05. Disabling laptop-mode seems to work around the problem, but i didn't use it very extensively without. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:04:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:04:17 +0100 (BST) Subject: [Bug 16387] Unreadable framebuffer text with vga16fb on ThinkPad X30 In-Reply-To: Message-ID: <20050926200417.9FEC222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16387 Ubuntu | linux ------- Additional Comments From jesper at krogh.cc 2005-09-26 21:04 UTC ------- Photo of the problem can be found here: http://krogh.cc/~jesper/dsc01062.jpg (Too large to be attached in bugzilla) The photo is pretty close to the real view of the screen. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:05:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:05:25 +0100 (BST) Subject: [Bug 7031] kernel does not properly reactivate LCD panel on lid close/open In-Reply-To: Message-ID: <20050926200525.D3E5722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7031 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:05 UTC ------- (In reply to comment #3) > Just wanted to mention that this problem still exists in Breezy. Going into > suspend and resuming again fixes it. Shouldn't closing the lid expect the system to go into suspend/resume anyway? If the kernel isn't causing this (maybe the hardware is turning the backlight off), then I'm not sure the kernel can fix it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:08:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:08:38 +0100 (BST) Subject: [Bug 7038] PS/2 IntelliMouse Explorer unusable through KVM In-Reply-To: Message-ID: <20050926200838.7E4E022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7038 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:08 UTC ------- Shows that the patch to fix it was integrated in 2.6.11, so I am assuming this is fixed in 2.6.12 kernels. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:09:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:09:39 +0100 (BST) Subject: [Bug 7137] Hoary array 6 installer doesn't detect emulated hard disk in VMWare? In-Reply-To: Message-ID: <20050926200939.EF98922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7137 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:09 UTC ------- This bug was fixed in the latest breezy kernel by adding module_device_table to the buslogic driver. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 19 16:52:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 19 Sep 2005 17:52:53 +0100 (BST) Subject: [Bug 15707] Kernel Panic with 386 or K7 kernel image on an AMD 64 CPU (2.6.12-8.13) In-Reply-To: Message-ID: <20050919165253.82FC5303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15707 Ubuntu | linux ------- Additional Comments From jcohen07 at brandeis.edu 2005-09-19 17:52 UTC ------- I wasn't sure what hardware info was pertinent so I'll paste everything: ============ start debug info ============ libhd version 8.38u (ia32) kernel version is 2.6 ----- /proc/cmdline ----- root=/dev/hda2 ro quiet splash ----- /proc/cmdline end ----- debug = 0xff7ffff7 probe = 0x138fe4be17fffdfffe (+memory +pci +isapnp +net +floppy +misc +misc.serial +misc.par +misc.floppy +serial +cpu +bios +monitor +mouse +scsi +usb -usb.mods +adb +modem +modem.usb +parallel +parallel.lp +parallel.zip +isa +isa.isdn +isdn +kbd +prom +sbus +int +braille +braille.alva +braille.fhp +braille.ht -ignx11 +sys -bios.vbe -isapnp.old -isapnp.new -isapnp.mod +braille.baum +manual +fb +veth +pppoe -scan +pcmcia -fork -parallel.imm +s390 -cpuemu -sysfs +s390disks +udev +block +block.cdrom +block.part +edd +edd.mod -bios.ddc -bios.fb -bios.mode +input +block.mods +bios.vesa -max -lxrc +dsl) shm: attached segment 5636119 at 0xb7e5b000 >> floppy.1: get nvram >> floppy.2: klog info >> bios.1: cmdline >> bios.1.1: apm >> bios.2: ram bios: 0 disks >> bios.2: rom >> bios.3: smp ----- BIOS data 0x00400 - 0x004ff ----- 400 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 410 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 420 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 430 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 440 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 450 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 460 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 470 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 480 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 490 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 4a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 4b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 4c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 4d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 4e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 4f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" ----- BIOS data end ----- >> bios.4: vbe VBE: Could not init Int10 >> bios.5: 32 >> sys.1: cpu vmware check: 0 >> misc.9: kernel log ----- kernel log ----- <6>NET: Registered protocol family 1 <6>Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2 <6>ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx <6>VP_IDE: IDE controller at PCI slot 0000:00:0f.1 <4>ACPI: PCI Interrupt Link [ALKA] enabled at IRQ 20 <6>ACPI: PCI interrupt 0000:00:0f.1[A] -> GSI 20 (level, low) -> IRQ 20 <6>VP_IDE: chipset revision 6 <6>VP_IDE: not 100% native mode: will probe irqs later <6>VP_IDE: VIA vt8237 (rev 00) IDE UDMA133 controller on pci0000:00:0f.1 <6> ide0: BM-DMA at 0xc800-0xc807, BIOS settings: hda:pio, hdb:pio <6> ide1: BM-DMA at 0xc808-0xc80f, BIOS settings: hdc:pio, hdd:pio <7>Probing IDE interface ide0... <4>hda: ST3160023A, ATA DISK drive <6>elevator: using anticipatory as default io scheduler <4>ide0 at 0x1f0-0x1f7,0x3f6 on irq 14 <6>hda: max request size: 1024KiB <6>hda: 312581808 sectors (160041 MB) w/8192KiB Cache, CHS=19457/255/63, UDMA(100) <7>hda: cache flushes supported <6> /dev/ide/host0/bus0/target0/lun0: p1 p2 p3 <7>Probing IDE interface ide1... <4>hdc: 16X16 DVD DUAL, ATAPI CD/DVD-ROM drive <4>ide1 at 0x170-0x177,0x376 on irq 15 <7>Probing IDE interface ide2... <7>Probing IDE interface ide3... <7>Probing IDE interface ide4... <7>Probing IDE interface ide5... <6>EXT3-fs: mounted filesystem with ordered data mode. <6>kjournald starting. Commit interval 5 seconds <6>md: md driver 0.90.1 MAX_MD_DEVS=256, MD_SB_DISKS=27 <6>EXT3 FS on hda2, internal journal <4>hdc: ATAPI 126X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache <6>Uniform CD-ROM driver Revision: 3.20 <6>parport: PnPBIOS parport detected. <6>parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA] <6>lp0: using parport0 (interrupt-driven). <6>mice: PS/2 mouse device common for all mice <6>Capability LSM initialized <6>device-mapper: 4.3.0-ioctl (2004-09-30) initialised: dm-devel at redhat.com <6>NTFS driver 2.1.22 [Flags: R/O MODULE]. <6>NTFS volume version 3.1. <6>kjournald starting. Commit interval 5 seconds <6>EXT3 FS on hda3, internal journal <6>EXT3-fs: mounted filesystem with ordered data mode. <6>Adding 774136k swap on /mnt/512Mb.swap. Priority:-1 extents:199 <6>Linux agpgart interface v0.100 (c) Dave Jones <6>agpgart: Detected AGP bridge 0 <6>agpgart: Maximum main memory to use for agp memory: 439M <6>agpgart: AGP aperture is 128M @ 0xd0000000 <6>cpci_hotplug: CompactPCI Hot Plug Core version: 0.2 <6>pci_hotplug: PCI Hot Plug PCI Core version: 0.5 <3>shpchp: shpc_init : shpc_cap_offset == 0 <6>shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 <7>Evaluate _OSC Set fails. Status = 0x0005 <3>pciehp: add_host_bridge: status 5 <3>pciehp: Fails to gain control of native hot-plug <5>SCSI subsystem initialized <7>libata version 1.10 loaded. <7>sata_via version 1.1 <6>ACPI: PCI interrupt 0000:00:0f.0[B] -> GSI 20 (level, low) -> IRQ 20 <6>sata_via(0000:00:0f.0): routed to hard irq line 4 <6>ata1: SATA max UDMA/133 cmd 0xB000 ctl 0xB402 bmdma 0xC000 irq 20 <6>ata2: SATA max UDMA/133 cmd 0xB800 ctl 0xBC02 bmdma 0xC008 irq 20 <6>ata1: no device found (phy stat 00000000) <6>scsi0 : sata_via <6>ata2: no device found (phy stat 00000000) <6>scsi1 : sata_via <6>usbcore: registered new driver usbfs <6>usbcore: registered new driver hub <6>USB Universal Host Controller Interface driver v2.2 <4>ACPI: PCI Interrupt Link [ALKB] enabled at IRQ 21 <6>ACPI: PCI interrupt 0000:00:10.0[A] -> GSI 21 (level, low) -> IRQ 21 <6>uhci_hcd 0000:00:10.0: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller <6>uhci_hcd 0000:00:10.0: irq 21, io base 0xcc00 <6>uhci_hcd 0000:00:10.0: new USB bus registered, assigned bus number 1 <6>hub 1-0:1.0: USB hub found <6>hub 1-0:1.0: 2 ports detected <6>ACPI: PCI interrupt 0000:00:10.1[A] -> GSI 21 (level, low) -> IRQ 21 <6>uhci_hcd 0000:00:10.1: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2) <6>uhci_hcd 0000:00:10.1: irq 21, io base 0xd000 <6>uhci_hcd 0000:00:10.1: new USB bus registered, assigned bus number 2 <6>hub 2-0:1.0: USB hub found <6>hub 2-0:1.0: 2 ports detected <6>ACPI: PCI interrupt 0000:00:10.2[B] -> GSI 21 (level, low) -> IRQ 21 <6>uhci_hcd 0000:00:10.2: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#3) <6>uhci_hcd 0000:00:10.2: irq 21, io base 0xd400 <6>uhci_hcd 0000:00:10.2: new USB bus registered, assigned bus number 3 <6>hub 3-0:1.0: USB hub found <6>hub 3-0:1.0: 2 ports detected <6>ACPI: PCI interrupt 0000:00:10.3[B] -> GSI 21 (level, low) -> IRQ 21 <6>uhci_hcd 0000:00:10.3: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#4) <6>uhci_hcd 0000:00:10.3: irq 21, io base 0xd800 <6>uhci_hcd 0000:00:10.3: new USB bus registered, assigned bus number 4 <6>hub 4-0:1.0: USB hub found <6>hub 4-0:1.0: 2 ports detected <6>usb 1-2: new full speed USB device using uhci_hcd and address 2 <6>usb 2-1: new low speed USB device using uhci_hcd and address 2 <6>ACPI: PCI interrupt 0000:00:10.4[C] -> GSI 21 (level, low) -> IRQ 21 <6>ehci_hcd 0000:00:10.4: VIA Technologies, Inc. USB 2.0 <6>ehci_hcd 0000:00:10.4: irq 21, pci mem 0xe8100000 <6>ehci_hcd 0000:00:10.4: new USB bus registered, assigned bus number 5 <6>ehci_hcd 0000:00:10.4: USB 2.0 initialized, EHCI 1.00, driver 26 Oct 2004 <3>drivers/usb/class/usblp.c: can't set desired altsetting 0 on interface 0 <4>usblp: probe of 1-2:1.0 failed with error -5 <6>usbcore: registered new driver usblp <6>drivers/usb/class/usblp.c: v0.13: USB Printer Device Class driver <6>hub 5-0:1.0: USB hub found <6>hub 5-0:1.0: 8 ports detected <6>usbcore: registered new driver hiddev <4>usbhid: probe of 2-1:1.0 failed with error -5 <6>usb 1-2: USB disconnect, address 2 <6>usbcore: registered new driver usbhid <6>drivers/usb/input/hid-core.c: v2.0:USB HID core driver <6>usb 2-1: USB disconnect, address 2 <6>via82xx: Assuming DXS channels with 48k fixed sample rate. <6> Please try dxs_support=1 or dxs_support=4 option <6> and report if it works on your machine. <4>ACPI: PCI Interrupt Link [ALKC] enabled at IRQ 22 <6>ACPI: PCI interrupt 0000:00:11.5[C] -> GSI 22 (level, low) -> IRQ 22 <7>PCI: Setting latency timer of device 0000:00:11.5 to 64 <6>usb 1-2: new full speed USB device using uhci_hcd and address 3 <6>drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 3 if 0 alt 0 proto 2 vid 0x04B8 pid 0x0005 <6>via-rhine.c:v1.10-LK1.2.0-2.6 June-10-2004 Written by Donald Becker <4>ACPI: PCI Interrupt Link [ALKD] enabled at IRQ 23 <6>ACPI: PCI interrupt 0000:00:12.0[A] -> GSI 23 (level, low) -> IRQ 23 <6>eth0: VIA Rhine II at 0xe400, 00:11:5b:f4:1b:c0, IRQ 23. <6>eth0: MII PHY found at address 1, status 0x786d advertising 05e1 Link 45e1. <6>usb 2-1: new low speed USB device using uhci_hcd and address 3 <6>input: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:10.1-1 <6>usb 2-2: new full speed USB device using uhci_hcd and address 4 <6>drivers/usb/class/usblp.c: usblp0: USB Bidirectional printer dev 4 if 0 alt 1 proto 2 vid 0x03F0 pid 0x1511 <6>Real Time Clock Driver v1.12 <6>input: PC Speaker <6>inserting floppy driver for 2.6.10-5-386 <6>FDC 0 is a post-1991 82077 <6>ts: Compaq touchscreen protocol output <6>eth0: link up, 100Mbps, full-duplex, lpa 0x45E1 <6>NET: Registered protocol family 17 <6>ACPI: Power Button (FF) [PWRF] <3>ibm_acpi: ec object not found <6>apm: BIOS version 1.2 Flags 0x07 (Driver version 1.16ac) <5>apm: overridden by ACPI. <6>powernow-k8: Found 1 AMD Athlon 64 / Opteron processors (version 1.00.09e) <3>powernow-k8: BIOS error - no PSB <6>NET: Registered protocol family 10 <6>Disabled Privacy Extensions on device c02f0500(lo) <6>IPv6 over IPv4 tunneling driver <6>Bluetooth: Core ver 2.7 <6>NET: Registered protocol family 31 <6>Bluetooth: HCI device and connection manager initialized <6>Bluetooth: HCI socket layer initialized <6>Bluetooth: L2CAP ver 2.7 <6>Bluetooth: L2CAP socket layer initialized <6>Bluetooth: RFCOMM ver 1.5 <6>Bluetooth: RFCOMM socket layer initialized <6>Bluetooth: RFCOMM TTY layer initialized <6>drivers/usb/class/usblp.c: usblp0: on fire <7>eth0: no IPv6 routers present <6>UDF-fs INFO UDF 0.9.8.1 (2004/29/09) Mounting volume 'PAY_IT_FORWARD', timestamp 2001/01/26 20:04 (1f10) ----- kernel log end ----- >> misc.1: misc data >> misc.1.1: open serial >> misc.1.2: open parallel ----- exec: "/sbin/rmmod lp" ----- ERROR: Removing 'lp': Operation not permitted ----- return code: ? ----- ----- exec: "/sbin/rmmod parport_pc" ----- ERROR: Module parport_pc is in use ----- return code: ? ----- ----- exec: "/sbin/rmmod parport" ----- ERROR: Module parport is in use by parport_pc,lp ----- return code: ? ----- >> misc.2.1: io >> misc.2.2: dma >> misc.2.3: irq ----- /proc/ioports ----- 0000-001f : dma1 0020-0021 : pic1 0040-0043 : timer0 0050-0053 : timer1 0060-006f : keyboard 0070-0077 : rtc 0080-008f : dma page reg 00a0-00a1 : pic2 00c0-00df : dma2 00f0-00ff : fpu 0170-0177 : ide1 01f0-01f7 : ide0 0376-0376 : ide1 0378-037a : parport0 03c0-03df : vga+ 03f6-03f6 : ide0 03f8-03ff : serial 0778-077a : parport0 0cf8-0cff : PCI conf1 4000-407f : motherboard 4000-4003 : PM1a_EVT_BLK 4004-4005 : PM1a_CNT_BLK 4008-400b : PM_TMR 4020-4023 : GPE0_BLK 5000-500f : motherboard 5000-500f : pnp 00:01 5000-5007 : viapro-smbus a000-afff : PCI Bus #01 a000-a0ff : 0000:01:00.0 b000-b007 : 0000:00:0f.0 b000-b007 : sata_via b400-b403 : 0000:00:0f.0 b400-b403 : sata_via b800-b807 : 0000:00:0f.0 b800-b807 : sata_via bc00-bc03 : 0000:00:0f.0 bc00-bc03 : sata_via c000-c00f : 0000:00:0f.0 c000-c00f : sata_via c400-c4ff : 0000:00:0f.0 c400-c4ff : sata_via c800-c80f : 0000:00:0f.1 c800-c807 : ide0 c808-c80f : ide1 cc00-cc1f : 0000:00:10.0 cc00-cc1f : uhci_hcd d000-d01f : 0000:00:10.1 d000-d01f : uhci_hcd d400-d41f : 0000:00:10.2 d400-d41f : uhci_hcd d800-d81f : 0000:00:10.3 d800-d81f : uhci_hcd dc00-dcff : 0000:00:11.5 dc00-dcff : VIA8237 e400-e4ff : 0000:00:12.0 e400-e4ff : via-rhine ----- /proc/ioports end ----- ----- /proc/interrupts ----- 0: 192438 IO-APIC-edge timer 1: 405 IO-APIC-edge i8042 4: 1 IO-APIC-edge serial 7: 2 IO-APIC-edge parport0 8: 1 IO-APIC-edge rtc 9: 0 IO-APIC-level acpi 14: 13812 IO-APIC-edge ide0 15: 503 IO-APIC-edge ide1 20: 0 IO-APIC-level libata 21: 20655 IO-APIC-level uhci_hcd, uhci_hcd, uhci_hcd, uhci_hcd, ehci_hcd 22: 2847 IO-APIC-level VIA8237 23: 1653 IO-APIC-level eth0 NMI: 0 LOC: 192312 ERR: 0 MIS: 0 ----- /proc/interrupts end ----- ----- /proc/dma ----- 3: parport0 4: cascade ----- /proc/dma end ----- >> misc.3: FPU >> misc.3.1: DMA >> misc.3.2: PIC >> misc.3.3: timer >> misc.3.4: RTC >> cpu.1: cpuinfo ----- /proc/cpuinfo ----- processor : 0 vendor_id : AuthenticAMD cpu family : 15 model : 12 model name : AMD Athlon(tm) 64 Processor 3000+ stepping : 0 cpu MHz : 2000.067 cache size : 512 KB fdiv_bug : no hlt_bug : no f00f_bug : no coma_bug : no fpu : yes fpu_exception : yes cpuid level : 1 wp : yes flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 pni syscall nx mmxext lm 3dnowext 3dnow bogomips : 3956.73 ----- /proc/cpuinfo end ----- >> memory.1: main memory size kcore mem: 0x1fff0000 klog mem 0: 0x0 klog mem 1: 0x0 klog mem: 0x0 bios mem: 0x0 meminfo: 0x0 >> pci.1: sysfs drivers ----- sysfs driver list (id 0xf69bb86978405089) ----- VIA 82xx Audio: /devices/pci0000:00/0000:00:11.5 VIA_IDE: /devices/pci0000:00/0000:00:0f.1 agpgart-amd64: /devices/pci0000:00/0000:00:00.0 ehci_hcd: /devices/pci0000:00/0000:00:10.4 sata_via: /devices/pci0000:00/0000:00:0f.0 uhci_hcd: /devices/pci0000:00/0000:00:10.0 uhci_hcd: /devices/pci0000:00/0000:00:10.1 uhci_hcd: /devices/pci0000:00/0000:00:10.2 uhci_hcd: /devices/pci0000:00/0000:00:10.3 via-rhine: /devices/pci0000:00/0000:00:12.0 vt596_smbus: /devices/pci0000:00/0000:00:11.0 i8042: /devices/platform/i8042 serial8250: /devices/platform/serial8250 parport_pc: /devices/pnp0/00:09 serial: /devices/pnp0/00:08 system: /devices/pnp0/00:00 system: /devices/pnp0/00:01 system: /devices/pnp0/00:02 atkbd: /devices/platform/i8042/serio1 hiddev: /module/usbhid hub: /devices/pci0000:00/0000:00:10.0/usb1/1-0:1.0 hub: /devices/pci0000:00/0000:00:10.1/usb2/2-0:1.0 hub: /devices/pci0000:00/0000:00:10.2/usb3/3-0:1.0 hub: /devices/pci0000:00/0000:00:10.3/usb4/4-0:1.0 hub: /devices/pci0000:00/0000:00:10.4/usb5/5-0:1.0 hub: /module/usbcore usbfs: /module/usbcore usbhid: /devices/pci0000:00/0000:00:10.1/usb2/2-1/2-1:1.0 usbhid: /module/usbhid usblp: /devices/pci0000:00/0000:00:10.0/usb1/1-2/1-2:1.0 usblp: /devices/pci0000:00/0000:00:10.1/usb2/2-2/2-2:1.0 usblp: /module/usblp usb: /devices/pci0000:00/0000:00:10.0/usb1/1-2 usb: /devices/pci0000:00/0000:00:10.1/usb2/2-1 usb: /devices/pci0000:00/0000:00:10.1/usb2/2-2 usb: /devices/pci0000:00/0000:00:10.0/usb1 usb: /devices/pci0000:00/0000:00:10.1/usb2 usb: /devices/pci0000:00/0000:00:10.2/usb3 usb: /devices/pci0000:00/0000:00:10.3/usb4 usb: /devices/pci0000:00/0000:00:10.4/usb5 usb: /module/usbcore ----- sysfs driver list end ----- >> pci.2: get sysfs pci data pci device: name = 0000:00:00.0, bus_id = 0000:00:00.0, bus = pci path = /devices/pci0000:00/0000:00:00.0 class = 0x60000 vendor = 0x1106 device = 0x204 subvendor = 0x1019 subdevice = 0x1828 irq = 0 res[0] = 0xd0000000 0xd7ffffff 0x1208 config[64] pci device: name = 0000:00:00.1, bus_id = 0000:00:00.1, bus = pci path = /devices/pci0000:00/0000:00:00.1 class = 0x60000 vendor = 0x1106 device = 0x1204 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:00.2, bus_id = 0000:00:00.2, bus = pci path = /devices/pci0000:00/0000:00:00.2 class = 0x60000 vendor = 0x1106 device = 0x2204 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:00.3, bus_id = 0000:00:00.3, bus = pci path = /devices/pci0000:00/0000:00:00.3 class = 0x60000 vendor = 0x1106 device = 0x3204 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:00.4, bus_id = 0000:00:00.4, bus = pci path = /devices/pci0000:00/0000:00:00.4 class = 0x60000 vendor = 0x1106 device = 0x4204 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:00.7, bus_id = 0000:00:00.7, bus = pci path = /devices/pci0000:00/0000:00:00.7 class = 0x60000 vendor = 0x1106 device = 0x7204 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:01.0, bus_id = 0000:00:01.0, bus = pci path = /devices/pci0000:00/0000:00:01.0 class = 0x60400 vendor = 0x1106 device = 0xb188 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:0f.0, bus_id = 0000:00:0f.0, bus = pci path = /devices/pci0000:00/0000:00:0f.0 class = 0x1018f vendor = 0x1106 device = 0x3149 subvendor = 0x1019 subdevice = 0x1828 irq = 20 res[0] = 0xb000 0xb007 0x101 res[1] = 0xb400 0xb403 0x101 res[2] = 0xb800 0xb807 0x101 res[3] = 0xbc00 0xbc03 0x101 res[4] = 0xc000 0xc00f 0x101 res[5] = 0xc400 0xc4ff 0x101 config[64] pci device: name = 0000:00:0f.1, bus_id = 0000:00:0f.1, bus = pci path = /devices/pci0000:00/0000:00:0f.1 class = 0x1018a vendor = 0x1106 device = 0x571 subvendor = 0x1019 subdevice = 0x1828 irq = 20 res[4] = 0xc800 0xc80f 0x101 config[64] pci device: name = 0000:00:10.0, bus_id = 0000:00:10.0, bus = pci path = /devices/pci0000:00/0000:00:10.0 class = 0xc0300 vendor = 0x1106 device = 0x3038 subvendor = 0x1019 subdevice = 0x1828 irq = 21 res[4] = 0xcc00 0xcc1f 0x101 config[64] pci device: name = 0000:00:10.1, bus_id = 0000:00:10.1, bus = pci path = /devices/pci0000:00/0000:00:10.1 class = 0xc0300 vendor = 0x1106 device = 0x3038 subvendor = 0x1019 subdevice = 0x1828 irq = 21 res[4] = 0xd000 0xd01f 0x101 config[64] pci device: name = 0000:00:10.2, bus_id = 0000:00:10.2, bus = pci path = /devices/pci0000:00/0000:00:10.2 class = 0xc0300 vendor = 0x1106 device = 0x3038 subvendor = 0x1019 subdevice = 0x1828 irq = 21 res[4] = 0xd400 0xd41f 0x101 config[64] pci device: name = 0000:00:10.3, bus_id = 0000:00:10.3, bus = pci path = /devices/pci0000:00/0000:00:10.3 class = 0xc0300 vendor = 0x1106 device = 0x3038 subvendor = 0x1019 subdevice = 0x1828 irq = 21 res[4] = 0xd800 0xd81f 0x101 config[64] pci device: name = 0000:00:10.4, bus_id = 0000:00:10.4, bus = pci path = /devices/pci0000:00/0000:00:10.4 class = 0xc0320 vendor = 0x1106 device = 0x3104 subvendor = 0x1019 subdevice = 0x1828 irq = 21 res[0] = 0xe8100000 0xe81000ff 0x200 config[64] pci device: name = 0000:00:11.0, bus_id = 0000:00:11.0, bus = pci path = /devices/pci0000:00/0000:00:11.0 class = 0x60100 vendor = 0x1106 device = 0x3227 subvendor = 0x1019 subdevice = 0x1828 irq = 0 config[64] pci device: name = 0000:00:11.5, bus_id = 0000:00:11.5, bus = pci path = /devices/pci0000:00/0000:00:11.5 class = 0x40100 vendor = 0x1106 device = 0x3059 subvendor = 0x1019 subdevice = 0x1828 irq = 22 res[0] = 0xdc00 0xdcff 0x101 config[64] pci device: name = 0000:00:12.0, bus_id = 0000:00:12.0, bus = pci path = /devices/pci0000:00/0000:00:12.0 class = 0x20000 vendor = 0x1106 device = 0x3065 subvendor = 0x1106 subdevice = 0x102 irq = 23 res[0] = 0xe400 0xe4ff 0x101 res[1] = 0xe8101000 0xe81010ff 0x200 config[64] pci device: name = 0000:00:18.0, bus_id = 0000:00:18.0, bus = pci path = /devices/pci0000:00/0000:00:18.0 class = 0x60000 vendor = 0x1022 device = 0x1100 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:18.1, bus_id = 0000:00:18.1, bus = pci path = /devices/pci0000:00/0000:00:18.1 class = 0x60000 vendor = 0x1022 device = 0x1101 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:18.2, bus_id = 0000:00:18.2, bus = pci path = /devices/pci0000:00/0000:00:18.2 class = 0x60000 vendor = 0x1022 device = 0x1102 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:00:18.3, bus_id = 0000:00:18.3, bus = pci path = /devices/pci0000:00/0000:00:18.3 class = 0x60000 vendor = 0x1022 device = 0x1103 subvendor = 0x0 subdevice = 0x0 irq = 0 config[64] pci device: name = 0000:01:00.0, bus_id = 0000:01:00.0, bus = pci path = /devices/pci0000:00/0000:00:01.0/0000:01:00.0 class = 0x30000 vendor = 0x1002 device = 0x4e44 subvendor = 0x1002 subdevice = 0x2 irq = 10 res[0] = 0xd8000000 0xdfffffff 0x1208 res[1] = 0xa000 0xa0ff 0x101 res[2] = 0xe8030000 0xe803ffff 0x200 res[6] = 0x0 0x1ffff 0x7202 config[64] pci device: name = 0000:01:00.1, bus_id = 0000:01:00.1, bus = pci path = /devices/pci0000:00/0000:00:01.0/0000:01:00.1 class = 0x38000 vendor = 0x1002 device = 0x4e64 subvendor = 0x1002 subdevice = 0x3 irq = 0 res[0] = 0xe0000000 0xe7ffffff 0x1208 res[1] = 0xe8020000 0xe802ffff 0x200 config[64] ---------- PCI raw data ---------- bus 00, slot 00, func 0, vend:dev:s_vend:s_dev:rev 1106:0204:1019:1828:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 addr0 d0000000, size 08000000 00: 06 11 04 02 06 00 30 22 00 00 00 06 00 08 80 00 "......0"........" 10: 08 00 00 d0 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 00, func 1, vend:dev:s_vend:s_dev:rev 1106:1204:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 06 11 04 12 06 00 00 02 00 00 00 06 00 00 00 00 "................" 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 00, func 2, vend:dev:s_vend:s_dev:rev 1106:2204:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 06 11 04 22 06 00 00 02 00 00 00 06 00 00 00 00 "..."............" 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 00, func 3, vend:dev:s_vend:s_dev:rev 1106:3204:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 06 11 04 32 06 00 00 02 00 00 00 06 00 00 00 00 "...2............" 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 00, func 4, vend:dev:s_vend:s_dev:rev 1106:4204:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 06 11 04 42 06 00 00 02 00 00 00 06 00 00 00 00 "...B............" 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 00, func 7, vend:dev:s_vend:s_dev:rev 1106:7204:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 06 11 04 72 06 00 00 02 00 00 00 06 00 00 00 00 "...r............" 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 a0 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00->01, slot 01, func 0, vend:dev:s_vend:s_dev:rev 1106:b188:0000:0000:00 class 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 0 00: 06 11 88 b1 07 01 30 02 00 00 04 06 00 00 01 00 "......0........." 10: 00 00 00 00 00 00 00 00 00 01 01 00 a0 a0 20 22 ".............. "" 20: 00 e8 00 e8 00 d8 f0 e7 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 80 00 00 00 00 00 00 00 00 00 0e 00 "................" bus 00, slot 0f, func 0, vend:dev:s_vend:s_dev:rev 1106:3149:1019:1828:80 class 01, sub_class 01 prog_if 8f, hdr 0, flags <>, irq 20 addr0 0000b000, size 00000008 addr1 0000b400, size 00000004 addr2 0000b800, size 00000008 addr3 0000bc00, size 00000004 addr4 0000c000, size 00000010 addr5 0000c400, size 00000100 00: 06 11 49 31 07 00 90 02 80 8f 01 01 00 20 80 00 "..I1......... .." 10: 01 b0 00 00 01 b4 00 00 01 b8 00 00 01 bc 00 00 "................" 20: 01 c0 00 00 01 c4 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 c0 00 00 00 00 00 00 00 04 02 00 00 "................" bus 00, slot 0f, func 1, vend:dev:s_vend:s_dev:rev 1106:0571:1019:1828:06 class 01, sub_class 01 prog_if 8a, hdr 0, flags <>, irq 20 addr4 0000c800, size 00000010 00: 06 11 71 05 07 00 90 02 06 8a 01 01 00 20 00 00 "..q.......... .." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 01 c8 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 c0 00 00 00 00 00 00 00 ff 01 00 00 "................" bus 00, slot 10, func 0, vend:dev:s_vend:s_dev:rev 1106:3038:1019:1828:81 class 0c, sub_class 03 prog_if 00, hdr 0, flags <>, irq 21 addr4 0000cc00, size 00000020 00: 06 11 38 30 07 00 10 02 81 00 03 0c 08 20 80 00 "..80......... .." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 01 cc 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 80 00 00 00 00 00 00 00 05 01 00 00 "................" bus 00, slot 10, func 1, vend:dev:s_vend:s_dev:rev 1106:3038:1019:1828:81 class 0c, sub_class 03 prog_if 00, hdr 0, flags <>, irq 21 addr4 0000d000, size 00000020 00: 06 11 38 30 07 00 10 02 81 00 03 0c 08 20 80 00 "..80......... .." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 01 d0 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 80 00 00 00 00 00 00 00 05 01 00 00 "................" bus 00, slot 10, func 2, vend:dev:s_vend:s_dev:rev 1106:3038:1019:1828:81 class 0c, sub_class 03 prog_if 00, hdr 0, flags <>, irq 21 addr4 0000d400, size 00000020 00: 06 11 38 30 07 00 10 02 81 00 03 0c 08 20 80 00 "..80......... .." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 01 d4 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 80 00 00 00 00 00 00 00 05 02 00 00 "................" bus 00, slot 10, func 3, vend:dev:s_vend:s_dev:rev 1106:3038:1019:1828:81 class 0c, sub_class 03 prog_if 00, hdr 0, flags <>, irq 21 addr4 0000d800, size 00000020 00: 06 11 38 30 07 00 10 02 81 00 03 0c 08 20 80 00 "..80......... .." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 01 d8 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 80 00 00 00 00 00 00 00 05 02 00 00 "................" bus 00, slot 10, func 4, vend:dev:s_vend:s_dev:rev 1106:3104:1019:1828:86 class 0c, sub_class 03 prog_if 20, hdr 0, flags <>, irq 21 addr0 e8100000, size 00000100 00: 06 11 04 31 17 00 10 02 86 20 03 0c 10 20 80 00 "...1..... ... .." 10: 00 00 10 e8 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 80 00 00 00 00 00 00 00 05 03 00 00 "................" bus 00, slot 11, func 0, vend:dev:s_vend:s_dev:rev 1106:3227:1019:1828:00 class 06, sub_class 01 prog_if 00, hdr 0, flags <>, irq 0 00: 06 11 27 32 87 00 10 02 00 00 01 06 00 00 80 00 "..'2............" 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 c0 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 11, func 5, vend:dev:s_vend:s_dev:rev 1106:3059:1019:1828:60 class 04, sub_class 01 prog_if 00, hdr 0, flags <>, irq 22 addr0 0000dc00, size 00000100 00: 06 11 59 30 01 00 10 02 60 00 01 04 00 00 00 00 "..Y0....`......." 10: 01 dc 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 19 10 28 18 "..............(." 30: 00 00 00 00 c0 00 00 00 00 00 00 00 06 03 00 00 "................" bus 00, slot 12, func 0, vend:dev:s_vend:s_dev:rev 1106:3065:1106:0102:78 class 02, sub_class 00 prog_if 00, hdr 0, flags <>, irq 23 addr0 0000e400, size 00000100 addr1 e8101000, size 00000100 00: 06 11 65 30 07 00 10 02 78 00 00 02 08 20 00 00 "..e0....x.... .." 10: 01 e4 00 00 00 10 10 e8 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 06 11 02 01 "................" 30: 00 00 00 00 40 00 00 00 00 00 00 00 07 01 03 08 ".... at ..........." bus 00, slot 18, func 0, vend:dev:s_vend:s_dev:rev 1022:1100:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 22 10 00 11 00 00 10 00 00 00 00 06 00 00 80 00 ""..............." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 80 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 18, func 1, vend:dev:s_vend:s_dev:rev 1022:1101:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 22 10 01 11 00 00 00 00 00 00 00 06 00 00 80 00 ""..............." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 18, func 2, vend:dev:s_vend:s_dev:rev 1022:1102:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 22 10 02 11 00 00 00 00 00 00 00 06 00 00 80 00 ""..............." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" bus 00, slot 18, func 3, vend:dev:s_vend:s_dev:rev 1022:1103:0000:0000:00 class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0 00: 22 10 03 11 00 00 00 00 00 00 00 06 00 00 80 00 ""..............." 10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" 30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 "................" bus 01, slot 00, func 0, vend:dev:s_vend:s_dev:rev 1002:4e44:1002:0002:00 class 03, sub_class 00 prog_if 00, hdr 0, flags <>, irq 10 addr0 d8000000, size 08000000 addr1 0000a000, size 00000100 addr2 e8030000, size 00010000 00: 02 10 44 4e 87 00 b0 02 00 00 00 03 08 20 80 00 "..DN......... .." 10: 08 00 00 d8 01 a0 00 00 00 00 03 e8 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 02 00 "................" 30: 00 00 00 00 58 00 00 00 00 00 00 00 0a 01 08 00 "....X..........." bus 01, slot 00, func 1, vend:dev:s_vend:s_dev:rev 1002:4e64:1002:0003:00 class 03, sub_class 80 prog_if 00, hdr 0, flags <>, irq 0 addr0 e0000000, size 08000000 addr1 e8020000, size 00010000 00: 02 10 64 4e 80 00 b0 02 00 00 80 03 08 20 00 00 "..dN......... .." 10: 08 00 00 e0 00 00 02 e8 00 00 00 00 00 00 00 00 "................" 20: 00 00 00 00 00 00 00 00 00 00 00 00 02 10 03 00 "................" 30: 00 00 00 00 50 00 00 00 00 00 00 00 ff 00 08 00 "....P..........." ---------- PCI raw data end ---------- >> pci.4: build list >> monitor.1: ddc >> isapnp.1: pnp devices pnp device: name = 00:00, bus_id = 00:00, bus = pnp path = /devices/pnp0/00:00 id = PNP 0c01 pnp device: name = 00:01, bus_id = 00:01, bus = pnp path = /devices/pnp0/00:01 id = PNP 0c02 pnp device: name = 00:02, bus_id = 00:02, bus = pnp path = /devices/pnp0/00:02 id = PNP 0c02 pnp device: name = 00:03, bus_id = 00:03, bus = pnp path = /devices/pnp0/00:03 id = PNP 0200 pnp device: name = 00:04, bus_id = 00:04, bus = pnp path = /devices/pnp0/00:04 id = PNP 0b00 pnp device: name = 00:05, bus_id = 00:05, bus = pnp path = /devices/pnp0/00:05 id = PNP 0800 pnp device: name = 00:06, bus_id = 00:06, bus = pnp path = /devices/pnp0/00:06 id = PNP 0c04 pnp device: name = 00:07, bus_id = 00:07, bus = pnp path = /devices/pnp0/00:07 id = PNP 0700 pnp device: name = 00:08, bus_id = 00:08, bus = pnp path = /devices/pnp0/00:08 id = PNP 0501 pnp device: name = 00:09, bus_id = 00:09, bus = pnp path = /devices/pnp0/00:09 id = PNP 0401 pnp device: name = 00:0a, bus_id = 00:0a, bus = pnp path = /devices/pnp0/00:0a id = PNP 0303 >> isa.1: isdn ---------- ISA ISDN raw data ---------- ---------- ISA ISDN raw data end ---------- >> isa.1.1: isdn ----- cardctl status ----- ----- cardctl status end ----- ----- cardctl ident ----- ----- cardctl ident end ----- >> serial.1: read info ----- serial info ----- ----- serial info end ----- >> serial.2: build list >> misc.5: misc data ----- misc resources ----- i/o:1 0x0000 - 0x001f (0x20) "dma1" i/o:1 0x0020 - 0x0021 (0x02) "pic1" i/o:0 0x0040 - 0x0043 (0x04) "timer0" i/o:0 0x0050 - 0x0053 (0x04) "timer1" i/o:1 0x0060 - 0x006f (0x10) "keyboard" i/o:1 0x0070 - 0x0077 (0x08) "rtc" i/o:1 0x0080 - 0x008f (0x10) "dma page reg" i/o:1 0x00a0 - 0x00a1 (0x02) "pic2" i/o:1 0x00c0 - 0x00df (0x20) "dma2" i/o:1 0x00f0 - 0x00ff (0x10) "fpu" i/o:1 0x0170 - 0x0177 (0x08) "ide1" i/o:1 0x01f0 - 0x01f7 (0x08) "ide0" i/o:1 0x0376 - 0x0376 (0x01) "ide1" i/o:1 0x0378 - 0x037a (0x03) "parport0" i/o:1 0x03c0 - 0x03df (0x20) "vga+" i/o:1 0x03f6 - 0x03f6 (0x01) "ide0" i/o:1 0x03f8 - 0x03ff (0x08) "serial" i/o:1 0x0778 - 0x077a (0x03) "parport0" i/o:0 0x0cf8 - 0x0cff (0x08) "PCI conf1" i/o:0 0x4000 - 0x407f (0x80) "motherboard" i/o:0 0x4000 - 0x4003 (0x04) "PM1a_EVT_BLK" i/o:0 0x4004 - 0x4005 (0x02) "PM1a_CNT_BLK" i/o:0 0x4008 - 0x400b (0x04) "PM_TMR" i/o:0 0x4020 - 0x4023 (0x04) "GPE0_BLK" i/o:0 0x5000 - 0x500f (0x10) "motherboard" i/o:0 0x5000 - 0x500f (0x10) "pnp 00:01" i/o:0 0x5000 - 0x5007 (0x08) "viapro-smbus" i/o:0 0xa000 - 0xafff (0x1000) "PCI Bus #01" i/o:0 0xa000 - 0xa0ff (0x100) "0000:01:00.0" i/o:0 0xb000 - 0xb007 (0x08) "0000:00:0f.0" i/o:0 0xb000 - 0xb007 (0x08) "sata_via" i/o:0 0xb400 - 0xb403 (0x04) "0000:00:0f.0" i/o:0 0xb400 - 0xb403 (0x04) "sata_via" i/o:0 0xb800 - 0xb807 (0x08) "0000:00:0f.0" i/o:0 0xb800 - 0xb807 (0x08) "sata_via" i/o:0 0xbc00 - 0xbc03 (0x04) "0000:00:0f.0" i/o:0 0xbc00 - 0xbc03 (0x04) "sata_via" i/o:0 0xc000 - 0xc00f (0x10) "0000:00:0f.0" i/o:0 0xc000 - 0xc00f (0x10) "sata_via" i/o:0 0xc400 - 0xc4ff (0x100) "0000:00:0f.0" i/o:0 0xc400 - 0xc4ff (0x100) "sata_via" i/o:0 0xc800 - 0xc80f (0x10) "0000:00:0f.1" i/o:1 0xc800 - 0xc807 (0x08) "ide0" i/o:1 0xc808 - 0xc80f (0x08) "ide1" i/o:0 0xcc00 - 0xcc1f (0x20) "0000:00:10.0" i/o:0 0xcc00 - 0xcc1f (0x20) "uhci_hcd" i/o:0 0xd000 - 0xd01f (0x20) "0000:00:10.1" i/o:0 0xd000 - 0xd01f (0x20) "uhci_hcd" i/o:0 0xd400 - 0xd41f (0x20) "0000:00:10.2" i/o:0 0xd400 - 0xd41f (0x20) "uhci_hcd" i/o:0 0xd800 - 0xd81f (0x20) "0000:00:10.3" i/o:0 0xd800 - 0xd81f (0x20) "uhci_hcd" i/o:0 0xdc00 - 0xdcff (0x100) "0000:00:11.5" i/o:0 0xdc00 - 0xdcff (0x100) "VIA8237" i/o:0 0xe400 - 0xe4ff (0x100) "0000:00:12.0" i/o:0 0xe400 - 0xe4ff (0x100) "via-rhine" irq:1 0 ( 192438) "timer" irq:0 1 ( 405) "i8042" irq:1 4 ( 1) "serial" irq:1 7 ( 2) "parport0" irq:1 8 ( 1) "rtc" irq:0 9 ( 0) "acpi" irq:1 14 ( 13812) "ide0" irq:1 15 ( 503) "ide1" irq:0 20 ( 0) "libata" irq:0 21 ( 20655) "uhci_hcd" "uhci_hcd" "uhci_hcd" "uhci_hcd" "ehci_hcd" irq:0 22 ( 2847) "VIA8237" irq:0 23 ( 1653) "eth0" dma:1 3 "parport0" dma:1 4 "cascade" ----- misc resources end ----- >> parallel.1: pp mod ----- exec: "/sbin/rmmod lp" ----- ERROR: Removing 'lp': Operation not permitted ----- return code: ? ----- ----- exec: "/sbin/rmmod parport_pc" ----- ERROR: Module parport_pc is in use ----- return code: ? ----- >> parallel.2.1: lp read info >> parallel.2.2: lp read info >> parallel.2.3: lp read info ----- parallel info ----- /proc/sys/dev/parport/parport0/base-addr 888 1912 /proc/sys/dev/parport/parport0/autoprobe ----- parallel info end ----- >> parallel.5: ppa mod ----- exec: "/sbin/modprobe ppa " ----- FATAL: Error inserting ppa (/lib/modules/2.6.10-5-386/kernel/drivers/scsi/ppa.ko): Operation not permitted ----- return code: ? ----- >> block.1: block modules ----- exec: "/sbin/modprobe sr_mod " ----- FATAL: Error inserting sr_mod (/lib/modules/2.6.10-5-386/kernel/drivers/scsi/sr_mod.ko): Operation not permitted ----- return code: ? ----- ----- exec: "/sbin/modprobe sd_mod " ----- FATAL: Error inserting sd_mod (/lib/modules/2.6.10-5-386/kernel/drivers/scsi/sd_mod.ko): Operation not permitted ----- return code: ? ----- ----- exec: "/sbin/modprobe st " ----- FATAL: Error inserting st (/lib/modules/2.6.10-5-386/kernel/drivers/scsi/st.ko): Operation not permitted ----- return code: ? ----- >> block.2: sysfs drivers >> block.3: cdrom ----- /proc/sys/dev/cdrom/info ----- drive name: hdc drive speed: 63 drive # of slots: 1 Can close tray: 1 Can open tray: 1 Can lock tray: 1 Can change speed: 1 Can select disk: 0 Can read multisession: 1 Can read MCN: 1 Reports media changed: 1 Can play audio: 1 Can write CD-R: 1 Can write CD-RW: 1 Can read DVD: 1 Can write DVD-R: 1 Can write DVD-RAM: 0 Can read MRW: 0 Can write MRW: 0 Can write RAM: 1 ----- /proc/sys/dev/cdrom/info end ----- >> block.4: partition ----- /proc/partitions ----- 3 0 156290904 hda 3 1 81923436 hda1 3 2 29294527 hda2 3 3 45070357 hda3 253 0 81923436 dm-0 253 1 29294527 dm-1 253 2 45070357 dm-2 ----- /proc/partitions end ----- disks: hda partitions: hda1 hda2 hda3 >> block.5: get sysfs block dev data ide: bus_id = 0.0 path = /devices/pci0000:00/0000:00:0f.1/ide0/0.0 ide: bus_id = 1.0 path = /devices/pci0000:00/0000:00:0f.1/ide1/1.0 block: name = dm-0, path = /block/dm-0 dev = 253:0 range = 1 block: name = dm-1, path = /block/dm-1 dev = 253:1 range = 1 block: name = dm-2, path = /block/dm-2 dev = 253:2 range = 1 block: name = hda, path = /block/hda dev = 3:0 range = 64 block device: bus = ide, bus_id = 0.0 driver = unknown path = /devices/pci0000:00/0000:00:0f.1/ide0/0.0 block: name = hdc, path = /block/hdc dev = 22:0 range = 1 block device: bus = ide, bus_id = 1.0 driver = unknown path = /devices/pci0000:00/0000:00:0f.1/ide1/1.0 block: name = ram0, path = /block/ram0 dev = 1:0 range = 1 block: name = ram10, path = /block/ram10 dev = 1:10 range = 1 block: name = ram11, path = /block/ram11 dev = 1:11 range = 1 block: name = ram12, path = /block/ram12 dev = 1:12 range = 1 block: name = ram13, path = /block/ram13 dev = 1:13 range = 1 block: name = ram14, path = /block/ram14 dev = 1:14 range = 1 block: name = ram15, path = /block/ram15 dev = 1:15 range = 1 block: name = ram1, path = /block/ram1 dev = 1:1 range = 1 block: name = ram2, path = /block/ram2 dev = 1:2 range = 1 block: name = ram3, path = /block/ram3 dev = 1:3 range = 1 block: name = ram4, path = /block/ram4 dev = 1:4 range = 1 block: name = ram5, path = /block/ram5 dev = 1:5 range = 1 block: name = ram6, path = /block/ram6 dev = 1:6 range = 1 block: name = ram7, path = /block/ram7 dev = 1:7 range = 1 block: name = ram8, path = /block/ram8 dev = 1:8 range = 1 block: name = ram9, path = /block/ram9 dev = 1:9 range = 1 >> scsi.1: scsi tape sysfs: no such class: scsi_tape >> scsi.2: scsi generic sysfs: no such class: scsi_generic >> usb.1: sysfs drivers >> usb.2: usb usb dev: /devices/pci0000:00/0000:00:10.0/usb1/1-2 usb dev: /devices/pci0000:00/0000:00:10.1/usb2/2-1 usb dev: /devices/pci0000:00/0000:00:10.1/usb2/2-2 usb dev: /devices/pci0000:00/0000:00:10.0/usb1 usb dev: /devices/pci0000:00/0000:00:10.1/usb2 usb dev: /devices/pci0000:00/0000:00:10.2/usb3 usb dev: /devices/pci0000:00/0000:00:10.3/usb4 usb dev: /devices/pci0000:00/0000:00:10.4/usb5 usb device: name = 1-0:1.0, bus_id = 1-0:1.0, bus = usb path = /devices/pci0000:00/0000:00:10.0/usb1/1-0:1.0 bInterfaceNumber = 0 bInterfaceClass = 9 bInterfaceSubClass = 0 bInterfaceProtocol = 0 if: 1-0:1.0 @ /devices/pci0000:00/0000:00:10.0/usb1 bDeviceClass = 9 bDeviceSubClass = 0 bDeviceProtocol = 0 idVendor = 0x0000 idProduct = 0x0000 manufacturer = "Linux 2.6.10-5-386 uhci_hcd" product = "VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller" serial = "0000:00:10.0" bcdDevice = 0206 speed = "12" usb device: name = 1-2:1.0, bus_id = 1-2:1.0, bus = usb path = /devices/pci0000:00/0000:00:10.0/usb1/1-2/1-2:1.0 bInterfaceNumber = 0 bInterfaceClass = 7 bInterfaceSubClass = 1 bInterfaceProtocol = 2 if: 1-2:1.0 @ /devices/pci0000:00/0000:00:10.0/usb1/1-2 bDeviceClass = 0 bDeviceSubClass = 0 bDeviceProtocol = 0 idVendor = 0x04b8 idProduct = 0x0005 manufacturer = "EPSON" product = "USB Printer" serial = "3P3DH0103082222100" bcdDevice = 0100 speed = "12" usb device: name = 1-2, bus_id = 1-2, bus = usb path = /devices/pci0000:00/0000:00:10.0/usb1/1-2 usb device: name = 2-0:1.0, bus_id = 2-0:1.0, bus = usb path = /devices/pci0000:00/0000:00:10.1/usb2/2-0:1.0 bInterfaceNumber = 0 bInterfaceClass = 9 bInterfaceSubClass = 0 bInterfaceProtocol = 0 if: 2-0:1.0 @ /devices/pci0000:00/0000:00:10.1/usb2 bDeviceClass = 9 bDeviceSubClass = 0 bDeviceProtocol = 0 idVendor = 0x0000 idProduct = 0x0000 manufacturer = "Linux 2.6.10-5-386 uhci_hcd" product = "VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#2)" serial = "0000:00:10.1" bcdDevice = 0206 speed = "12" usb device: name = 2-1:1.0, bus_id = 2-1:1.0, bus = usb path = /devices/pci0000:00/0000:00:10.1/usb2/2-1/2-1:1.0 bInterfaceNumber = 0 bInterfaceClass = 3 bInterfaceSubClass = 1 bInterfaceProtocol = 2 if: 2-1:1.0 @ /devices/pci0000:00/0000:00:10.1/usb2/2-1 bDeviceClass = 0 bDeviceSubClass = 0 bDeviceProtocol = 0 idVendor = 0x046d idProduct = 0xc00e manufacturer = "Logitech" product = "USB-PS/2 Optical Mouse" bcdDevice = 1110 speed = "1.5" usb device: name = 2-1, bus_id = 2-1, bus = usb path = /devices/pci0000:00/0000:00:10.1/usb2/2-1 usb device: name = 2-2:1.0, bus_id = 2-2:1.0, bus = usb path = /devices/pci0000:00/0000:00:10.1/usb2/2-2/2-2:1.0 bInterfaceNumber = 0 bInterfaceClass = 7 bInterfaceSubClass = 1 bInterfaceProtocol = 3 if: 2-2:1.0 @ /devices/pci0000:00/0000:00:10.1/usb2/2-2 bDeviceClass = 0 bDeviceSubClass = 0 bDeviceProtocol = 0 idVendor = 0x03f0 idProduct = 0x1511 manufacturer = "Hewlett-Packard" product = "PSC 750xi" serial = "MY27ND40FSWB" bcdDevice = 0100 speed = "12" usb device: name = 2-2, bus_id = 2-2, bus = usb path = /devices/pci0000:00/0000:00:10.1/usb2/2-2 usb device: name = 3-0:1.0, bus_id = 3-0:1.0, bus = usb path = /devices/pci0000:00/0000:00:10.2/usb3/3-0:1.0 bInterfaceNumber = 0 bInterfaceClass = 9 bInterfaceSubClass = 0 bInterfaceProtocol = 0 if: 3-0:1.0 @ /devices/pci0000:00/0000:00:10.2/usb3 bDeviceClass = 9 bDeviceSubClass = 0 bDeviceProtocol = 0 idVendor = 0x0000 idProduct = 0x0000 manufacturer = "Linux 2.6.10-5-386 uhci_hcd" product = "VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#3)" serial = "0000:00:10.2" bcdDevice = 0206 speed = "12" usb device: name = 4-0:1.0, bus_id = 4-0:1.0, bus = usb path = /devices/pci0000:00/0000:00:10.3/usb4/4-0:1.0 bInterfaceNumber = 0 bInterfaceClass = 9 bInterfaceSubClass = 0 bInterfaceProtocol = 0 if: 4-0:1.0 @ /devices/pci0000:00/0000:00:10.3/usb4 bDeviceClass = 9 bDeviceSubClass = 0 bDeviceProtocol = 0 idVendor = 0x0000 idProduct = 0x0000 manufacturer = "Linux 2.6.10-5-386 uhci_hcd" product = "VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (#4)" serial = "0000:00:10.3" bcdDevice = 0206 speed = "12" usb device: name = 5-0:1.0, bus_id = 5-0:1.0, bus = usb path = /devices/pci0000:00/0000:00:10.4/usb5/5-0:1.0 bInterfaceNumber = 0 bInterfaceClass = 9 bInterfaceSubClass = 0 bInterfaceProtocol = 0 if: 5-0:1.0 @ /devices/pci0000:00/0000:00:10.4/usb5 bDeviceClass = 9 bDeviceSubClass = 0 bDeviceProtocol = 1 idVendor = 0x0000 idProduct = 0x0000 manufacturer = "Linux 2.6.10-5-386 ehci_hcd" product = "VIA Technologies, Inc. USB 2.0" serial = "0000:00:10.4" bcdDevice = 0206 speed = "480" usb device: name = usb1, bus_id = usb1, bus = usb path = /devices/pci0000:00/0000:00:10.0/usb1 usb device: name = usb2, bus_id = usb2, bus = usb path = /devices/pci0000:00/0000:00:10.1/usb2 usb device: name = usb3, bus_id = usb3, bus = usb path = /devices/pci0000:00/0000:00:10.2/usb3 usb device: name = usb4, bus_id = usb4, bus = usb path = /devices/pci0000:00/0000:00:10.3/usb4 usb device: name = usb5, bus_id = usb5, bus = usb path = /devices/pci0000:00/0000:00:10.4/usb5 >> usb.3.1: joydev mod ----- exec: "/sbin/modprobe joydev " ----- FATAL: Error inserting joydev (/lib/modules/2.6.10-5-386/kernel/drivers/input/joydev.ko): Operation not permitted ----- return code: ? ----- >> usb.3.2: evdev mod >> usb.3.3: input input: name = event0, path = /class/input/event0 dev = 13:64 input: name = event1, path = /class/input/event1 dev = 13:65 input device: bus = usb, bus_id = 2-1:1.0 driver = usbhid path = /devices/pci0000:00/0000:00:10.1/usb2/2-1/2-1:1.0 input: name = event2, path = /class/input/event2 dev = 13:66 input: name = mice, path = /class/input/mice dev = 13:63 input: name = mouse0, path = /class/input/mouse0 dev = 13:32 input device: bus = usb, bus_id = 2-1:1.0 driver = usbhid path = /devices/pci0000:00/0000:00:10.1/usb2/2-1/2-1:1.0 input: name = ts0, path = /class/input/ts0 dev = 13:128 input device: bus = usb, bus_id = 2-1:1.0 driver = usbhid path = /devices/pci0000:00/0000:00:10.1/usb2/2-1/2-1:1.0 >> usb.3.4: lp usb: name = lp0, path = /class/usb/lp0 dev = 180:0 usb device: bus = usb, bus_id = 1-2:1.0 driver = usblp path = /devices/pci0000:00/0000:00:10.0/usb1/1-2/1-2:1.0 usb: name = lp1, path = /class/usb/lp1 dev = 180:1 usb device: bus = usb, bus_id = 2-2:1.0 driver = usblp path = /devices/pci0000:00/0000:00:10.1/usb2/2-2/2-2:1.0 >> edd.1: edd mod ----- exec: "/sbin/modprobe edd " ----- FATAL: Error inserting edd (/lib/modules/2.6.10-5-386/kernel/drivers/firmware/edd.ko): Operation not permitted ----- return code: ? ----- >> edd.2: edd info >> modem.1: serial ****** started child process 7705 (15s/120s) ****** ****** stopped child process 7705 (120s) ****** >> mouse.2: serial ****** started child process 7706 (20s/20s) ****** ****** stopped child process 7706 (20s) ****** >> input.1: joydev mod ----- exec: "/sbin/modprobe joydev " ----- FATAL: Error inserting joydev (/lib/modules/2.6.10-5-386/kernel/drivers/input/joydev.ko): Operation not permitted ----- return code: ? ----- >> input.1.1: evdev mod >> input.2: input ----- /proc/bus/input/devices ----- I: Bus=0011 Vendor=0001 Product=0001 Version=ab41 N: Name="AT Translated Set 2 keyboard" P: Phys=isa0060/serio0/input0 H: Handlers=kbd event0 B: EV=120013 B: KEY=4 2000000 3802078 f840d001 f2ffffdf ffefffff ffffffff fffffffe B: MSC=10 B: LED=7 I: Bus=0003 Vendor=046d Product=c00e Version=1110 N: Name="Logitech USB-PS/2 Optical Mouse" P: Phys=usb-0000:00:10.1-1/input0 H: Handlers=mouse0 event1 ts0 B: EV=f B: KEY=70000 0 0 0 0 0 0 0 0 B: REL=103 B: ABS=100 0 I: Bus=0010 Vendor=001f Product=0001 Version=0100 N: Name="PC Speaker" P: Phys=isa0061/input0 H: Handlers=kbd event2 B: EV=40001 B: SND=6 ----- /proc/bus/input/devices end ----- bus = 17, name = AT Translated Set 2 keyboard handlers = kbd event0 key = 000000040200000003802078f840d001f2ffffdfffeffffffffffffffffffffe mouse buttons = 0 mouse wheels = 0 bus = 3, name = Logitech USB-PS/2 Optical Mouse handlers = mouse0 event1 ts0 key = 000700000000000000000000000000000000000000000000000000000000000000000000 rel = 00000103 mouse buttons = 3 mouse wheels = 1 bus = 16, name = PC Speaker handlers = kbd event2 mouse buttons = 0 mouse wheels = 0 >> fb.1: read info >> net.1: get network data net interface: name = eth0, classname = net, path = /class/net/eth0 hw_addr = 00:11:5b:f4:1b:c0 net device: path = /devices/pci0000:00/0000:00:12.0 net driver: name = via-rhine, path = /bus/pci/drivers/via-rhine net interface: name = lo, classname = net, path = /class/net/lo hw_addr = 00:00:00:00:00:00 net interface: name = sit0, classname = net, path = /class/net/sit0 hw_addr = 00:00:00:00 >> pppoe.1: looking for pppoe >> pppoe.2: discovery eth0: socket failed: Operation not permitted >> isdn.1: list >> dsl.1: list >> int.2: cdrom >> int.3: media >> int.4.1: /dev/hda read_block0: open(/dev/hda) failed >> int.4: floppy >> int.5: bios bios ctrl 0: 20 >> int.6: mouse >> int.7: hdb >> int.8: usbscsi >> int.9: hotplug >> int.10: modem >> int.11: wlan >> int.12: udev -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From debunkers at gmail.com Wed Sep 21 02:39:46 2005 From: debunkers at gmail.com (Debunk it) Date: Tue, 20 Sep 2005 21:39:46 -0500 Subject: Belkin wireless card stops working - atmel_cs Message-ID: <388e62605092019391ad425a5@mail.gmail.com> Hi, I've been using this wireless card for over a month with Ubuntu and has never failed until yesterday. This is a Belkin F5D6020 v2 Wireless Notebook Network Card on an IBM T30. Right now, I can't boot the system with the card plugged in. The process cardmgr hogs the CPU and syslog fires up too trying to keep up with the logs. This is what syslog has to say: Sep 20 20:16:54 localhost cardmgr[5704]: Common memory region at 0xb7ed62ad: Generic or SRAM Sep 20 20:17:00 localhost last message repeated 122460 times When I insert the card *after* boot up, I get this message: 2.6. kernels use pcmciamtd instead of memory_cs.c and do not require special MTD handling any more. The message is printed once and for all subsequent attempts. It seems like the kernel does not recognize the card anymore. Could it be that it's been foobared? This is the kernel log of what happens when I kill cardmgr and restart the pcmcia service: Sep 20 21:27:20 localhost cardmgr[6895]: starting, version is 3.2.5 Sep 20 21:27:29 localhost kernel: cs: pcmcia_socket0: unable to apply power. Sep 20 21:27:30 localhost cardmgr[6895]: socket 0: Anonymous Memory Sep 20 21:27:30 localhost cardmgr[6895]: executing: 'modprobe sram_mtd' Sep 20 21:27:30 localhost cardmgr[6895]: + FATAL: Module sram_mtd not found. Sep 20 21:27:30 localhost cardmgr[6895]: modprobe exited with status 1 Sep 20 21:27:30 localhost cardmgr[6895]: module /lib/modules/2.6.11-1-686/pcmcia/sram_mtd.o not available Sep 20 21:27:30 localhost cardmgr[6895]: Common memory region at 0xb7ed62ad: Generic or SRAM Sep 20 21:28:01 localhost last message repeated 694491 times Sep 20 21:29:02 localhost last message repeated 1380527 times Here's what happens when I rinse and repeat: Sep 20 21:32:04 localhost cardmgr[7057]: could not adjust resource: IO ports 0x100-0x4ff: Device or resource busy Sep 20 21:32:04 localhost cardmgr[7057]: could not adjust resource: IO ports 0x800-0x8ff: Device or resource busy Sep 20 21:32:04 localhost cardmgr[7057]: could not adjust resource: IO ports 0xc00-0xcff: Device or resource busy Sep 20 21:32:04 localhost cardmgr[7057]: could not adjust resource: memory 0xc0000-0xfffff: Input/output error Sep 20 21:32:04 localhost cardmgr[7057]: could not adjust resource: memory 0xa0000000-0xa0ffffff: Input/output error Sep 20 21:32:04 localhost cardmgr[7057]: could not adjust resource: memory 0x60000000-0x60ffffff: Input/output error Sep 20 21:32:04 localhost cardmgr[7057]: could not adjust resource: IO ports 0xa00-0xaff: Device or resource busy Sep 20 21:32:04 localhost cardmgr[7058]: starting, version is 3.2.5 Sep 20 21:32:09 localhost cardmgr[7058]: socket 0: Anonymous Memory Sep 20 21:32:09 localhost cardmgr[7058]: executing: 'modprobe sram_mtd' Sep 20 21:32:09 localhost cardmgr[7058]: + FATAL: Module sram_mtd not found. Sep 20 21:32:09 localhost cardmgr[7058]: modprobe exited with status 1 Sep 20 21:32:09 localhost cardmgr[7058]: module /lib/modules/2.6.11-1-686/pcmcia/sram_mtd.o not available Sep 20 21:32:09 localhost cardmgr[7058]: Common memory region at 0xb7ed62ad: Generic or SRAM What needs be done to fix this issue? Thanks. -------------- next part -------------- An HTML attachment was scrubbed... URL: From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:13:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:13:43 +0100 (BST) Subject: [Bug 16222] Internal speaker not turned off when external is used In-Reply-To: Message-ID: <20050926201343.DF02522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16222 Ubuntu | linux ------- Additional Comments From mwh at sysrq.dk 2005-09-26 21:13 UTC ------- (In reply to comment #2) > Sure, the driver should handle this. I'll need dmesg, and lspci output to see > which driver we are talking about. I have attached the output. > How do you disable it manually? Do you just mean muting the internal speaker? Yes exactly. Also notice that it works on Breezy, but not on Hoary. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:14:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:14:12 +0100 (BST) Subject: [Bug 16222] Internal speaker not turned off when external is used In-Reply-To: Message-ID: <20050926201412.3640922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16222 Ubuntu | linux ------- Additional Comments From mwh at sysrq.dk 2005-09-26 21:14 UTC ------- Created an attachment (id=4096) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4096&action=view) dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:14:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:14:36 +0100 (BST) Subject: [Bug 16222] Internal speaker not turned off when external is used In-Reply-To: Message-ID: <20050926201436.199BB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16222 Ubuntu | linux ------- Additional Comments From mwh at sysrq.dk 2005-09-26 21:14 UTC ------- Created an attachment (id=4097) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4097&action=view) lspci output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:15:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:15:15 +0100 (BST) Subject: [Bug 7167] No keyboard with 2.6.10-4-386-SMP (Hoary) In-Reply-To: Message-ID: <20050926201515.3B68222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7167 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:15 UTC ------- Does this still occur with latest breezy, or Colony 5? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:28:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:28:26 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050926202826.83ECD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:28 UTC ------- Man, I totally missed the error in dmesg from 8139too (was expecting it to come after the 8139cp driver messages). Here's the relevant parts: 8139too Fast Ethernet driver 0.9.27 ACPI: PCI Interrupt 0000:00:0c.0[A] -> Link [LNKA] -> GSI 10 (level, low) -> IRQ 10 PCI: Unable to reserve I/O region #1:100 at de00 for device 0000:00:0c.0 Trying to free nonexistent resource <0000de00-0000deff> Trying to free nonexistent resource 8139too: probe of 0000:00:0c.0 failed with error -16 Can you send me the output of lspci -vvn? Also try booting with the acpi=off option. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:31:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:31:00 +0100 (BST) Subject: [Bug 16222] Internal speaker not turned off when external is used In-Reply-To: Message-ID: <20050926203100.5CA2822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16222 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:31 UTC ------- (In reply to comment #3) > Also notice that it works on Breezy, but not on Hoary. Are you sure you have this correct? If it works in breezy, but is broken in hoary, then we don't really have to worry about anything with this bug report. Not much chance that we'll fix this in hoary. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:36:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:36:23 +0100 (BST) Subject: [Bug 7207] Improving ZIP drive support In-Reply-To: Message-ID: <20050926203623.CF86322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7207 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:36 UTC ------- Can this bug be confirmed against latest breezy or Colony 5? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:48:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:48:45 +0100 (BST) Subject: [Bug 7235] mppe driver needs 64bit love In-Reply-To: Message-ID: <20050926204845.3571522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7235 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:48 UTC ------- Can anyone confirm this bug still affects latest breezy or Colony 5? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:49:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:49:02 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050926204902.AB54622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |NEEDINFO Priority|P2 |P1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:50:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:50:51 +0100 (BST) Subject: [Bug 16394] New: graphical boot broken since 2.6.12-9 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16394 Ubuntu | linux Summary: graphical boot broken since 2.6.12-9 Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: julien at jls-info.com QAContact: kernel-bugs at lists.ubuntu.com CC: seb128 at ubuntu.com With linux-image-2.6.12-9-k7 I do not have any graphical boot - just a blank screen - with and without usplash. When Init launches Xorg and gdm, everything works fine again. So it seems like the framebuffer driver is somehow broken in this kernel. With linux-image-2.6.12-8-k7 I do not have any problem at all. The option I pass to the kernel to switch into graphical mode is "vga=791". My video card is "nVidia Corporation NV34 [GeForce FX 5200] (rev a1)". -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:52:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:52:38 +0100 (BST) Subject: [Bug 7258] freeze at boot with USB media card reader plugged in In-Reply-To: Message-ID: <20050926205238.D88EB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7258 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:52 UTC ------- Can anyone reconfirm this bug with latest breezy kernel 2.6.12-9 or Colony 5 live/install CD. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:54:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:54:18 +0100 (BST) Subject: [Bug 7287] Mouse stops working during/after heavy I/O In-Reply-To: Message-ID: <20050926205418.2A04422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7287 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:54 UTC ------- Assuming fixed. Please reopen if that's not the case. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:55:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:55:35 +0100 (BST) Subject: [Bug 7299] acpi S3 sleep causes K8 to gpf In-Reply-To: Message-ID: <20050926205535.59C4722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7299 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:55 UTC ------- Can this bug be confirmed against breezy 2.6.12-9 kernel, or Colony 5 live/install CD? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:56:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:56:17 +0100 (BST) Subject: [Bug 7335] psmouse incompatible with KVM switching In-Reply-To: Message-ID: <20050926205617.F05EF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7335 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:56 UTC ------- Fixed in current kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:57:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:57:30 +0100 (BST) Subject: [Bug 7375] No cpu information available after update to hoary In-Reply-To: Message-ID: <20050926205730.DAC8722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7375 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 21:57 UTC ------- No response to request for info, and lack of information in bug report. Closing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 20:58:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 21:58:52 +0100 (BST) Subject: [Bug 7235] mppe driver needs 64bit love In-Reply-To: Message-ID: <20050926205852.B22AC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7235 Ubuntu | linux ------- Additional Comments From landtuna+ubuntu at gmail.com 2005-09-26 21:58 UTC ------- I can't anymore. I no longer work for the company that had the VPN I was using. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 21:13:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 22:13:37 +0100 (BST) Subject: [Bug 16390] Remote mouse control with ATI Remote Wonder break In-Reply-To: Message-ID: <20050926211337.0F63422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16390 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-26 22:13 UTC ------- Please send lsmod output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 21:13:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 22:13:46 +0100 (BST) Subject: [Bug 16390] Remote mouse control with ATI Remote Wonder break In-Reply-To: Message-ID: <20050926211346.03BA022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16390 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-26 22:13 UTC ------- and dmesg, please -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 21:19:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 22:19:09 +0100 (BST) Subject: [Bug 16390] Remote mouse control with ATI Remote Wonder break In-Reply-To: Message-ID: <20050926211909.8624C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16390 Ubuntu | linux ------- Additional Comments From ubuntu-bugzilla at fdnet.biz 2005-09-26 22:19 UTC ------- Created an attachment (id=4101) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4101&action=view) lsmod output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 21:19:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 22:19:23 +0100 (BST) Subject: [Bug 16390] Remote mouse control with ATI Remote Wonder break In-Reply-To: Message-ID: <20050926211923.6ECED22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16390 Ubuntu | linux ------- Additional Comments From ubuntu-bugzilla at fdnet.biz 2005-09-26 22:19 UTC ------- Created an attachment (id=4102) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4102&action=view) dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 21:29:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 22:29:49 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050926212949.30D2A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-26 22:29 UTC ------- More information: 1. Latest live cd does NOT reboot 2. Using either reboot=n or reboot=s does not help. I will attach dmesg ASAP. My /proc/cpuinfo: --- $ cat /proc/cpuinfo processor : 0 cpu : PPC970, altivec supported clock : 2000.000000MHz revision : 2.2 processor : 1 cpu : PPC970, altivec supported clock : 2000.000000MHz revision : 2.2 timebase : 33333333 machine : PowerMac7,3 motherboard : PowerMac7,3 MacRISC4 Power Macintosh detected as : 336 (PowerMac G5) pmac flags : 00000000 pmac-generation : NewWorld -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 21:31:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 22:31:11 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050926213111.5D0E622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-26 22:31 UTC ------- Created an attachment (id=4103) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4103&action=view) dmesg my /var/log/dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 21:44:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 22:44:44 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050926214444.B003522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-26 22:44 UTC ------- Tried with the reboot=b appended to the end of the kernel line in grub.conf, still the same. I also upgraded the kernel from 2.6.12-8 to 2.6.12-9 tonight, and again tried the reboot=b a few times.. still the same, unfortunately. What does that command do? Are there any others worth trying? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 22:02:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 23:02:34 +0100 (BST) Subject: [Bug 16394] graphical boot broken since 2.6.12-9 In-Reply-To: Message-ID: <20050926220234.7031722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16394 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-26 23:02 UTC ------- What happens when you remove the vga= line from your boot options? Also, can you attach the dmesg output, and lsmod? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 22:06:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 23:06:30 +0100 (BST) Subject: [Bug 2681] Dell Latitude hotplug fatal errors--installed OS won't boot In-Reply-To: Message-ID: <20050926220630.EEF4122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2681 Ubuntu (laptop) | linux ------- Additional Comments From www_gmc at fiachra.ucd.ie 2005-09-26 23:06 UTC ------- (In reply to comment #12) > (In reply to comment #11) > > Thanks, I'll consider this bug fixed then. > > Sorry but I saw it this evening on Hoary. I have downloaded the preview and > will install it asap. Perhaps the move to udev will sort this out Gah, how disappointing! Just installed it and it hung as before at "Starting Hotplug Subsystem" during the mid-installation reboot. Is there some way I can debug the hotplug by say disabling individual components or some such? Gavin PS I like the flashy new graphical boot process. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 22:27:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 23:27:29 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050926222729.AAAF722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-26 23:27 UTC ------- root at sauron:/home/jose # lspci -vvn 0000:00:00.0 0600: 1022:7006 (rev 25) Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- Reset- FastB2B- 0000:00:07.0 0601: 1022:7408 (rev 01) Control: I/O+ Mem+ BusMaster+ SpecCycle+ MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- TAbort- SERR- root at sauron:/home/jose # -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 22:40:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 23:40:53 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926224053.CC06322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules doko at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|major |normal Status|UNCONFIRMED |RESOLVED Resolution| |INVALID ------- Additional Comments From doko at ubuntu.com 2005-09-26 23:40 UTC ------- lowering the severity, closing the report. more than one Fritz card isn't supported by the manufacturer, and we do not support that as well. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 22:40:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 23:40:53 +0100 (BST) Subject: [Bug 16352] Nice to have f2pci, f3pci, f4pci modules In-Reply-To: Message-ID: <20050926224053.E3856303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16352 Ubuntu | linux-restricted-modules Bug 16352 depends on bug 16348, which changed state. Bug 16348 Summary: insmoding fcpci module causes kernel pani when 2 fcpci cards installed http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 What |Old Value |New Value ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |INVALID -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 22:51:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 23:51:05 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050926225105.52C5722F4027@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|cjwatson at ubuntu.com |ben.collins at ubuntu.com Component|base-installer |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 22:52:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Mon, 26 Sep 2005 23:52:06 +0100 (BST) Subject: [Bug 16399] Usb problems with Ubuntu Linux 5.10 Colony 5 In-Reply-To: Message-ID: <20050926225206.319FE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16399 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-26 23:52 UTC ------- Please try some of the workarounds in: https://wiki.ubuntu.com/DebuggingIRQProblems and attach the output from the 'dmesg' command. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 23:22:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 00:22:04 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050926232204.B74F022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-27 00:22 UTC ------- After reading a few articles (https://bugzilla.redhat.com/bugzilla/long_list.cgi?buglist=17841) and (http://www.ibiblio.org/pub/historic-linux/distributions/redhat/4.2/i386/live/usr/man/man7/bootparam.7) for instance. I have tried the following additional changes... Disabled LCD Screen Expansion in the BIOS - then tried a normal boot + reboot, and a boot with "reboot=warm,bios" - both failed. I then tried warm,bios and cold,hard with LCD expansion turned back on - same again. I have noticed that if I don't pass these additional kernel parameters, usually the laptop says "rebooting..." then hangs, but the screen stays on. If I pass seemingly any combination of reboot=x,y .. then the machine says rebooting... the LCD goes off... and it then hangs. Shutdown has worked twice now, where as before this would fail too. It does however, take a good few seconds before it actually powers down the machine. It might be worth me mentioning that I disabled networking (by removing the /etc/rc*.d symlinks) for this testing, so there's no Centrino Wireless Weirdness being loaded at startup, which I wanted to rule out! Good news is, with the new kernel, shutdown appears to be slightly more stable (fingers crossed), but reboot hangs consistently. Hope some of this might be of use... Mark -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 23:27:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 00:27:08 +0100 (BST) Subject: [Bug 2681] Dell Latitude hotplug fatal errors--installed OS won't boot In-Reply-To: Message-ID: <20050926232708.C845722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2681 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-27 00:27 UTC ------- The preview has been superseded by Colony 5; please use that for tests instead. http://cdimage.ubuntu.com/releases/breezy/colony-5/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 23:28:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 00:28:10 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel pani when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926232810.8E16922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules ------- Additional Comments From mdz at ubuntu.com 2005-09-27 00:28 UTC ------- (In reply to comment #6) > lowering the severity, closing the report. more than one Fritz card isn't > supported by the manufacturer, and we do not support that as well. > > It's understandable if they don't support that configuration, but surely it shouldn't cause a panic...are they aware of the bug? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Mon Sep 26 23:53:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 00:53:07 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel panic when 2 fcpci cards installed In-Reply-To: Message-ID: <20050926235307.69B2922F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules woody+ubuntu at solutionsfirst.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|insmoding fcpci module |insmoding fcpci module |causes kernel pani when 2 |causes kernel panic when 2 |fcpci cards installed |fcpci cards installed ------- Additional Comments From woody+ubuntu at solutionsfirst.com.au 2005-09-27 00:53 UTC ------- Raised a support issue with AVM: A Support Case containing the details listed below has been assigned to your call with the Ticket-ID CID648770. We will reply as soon as possible. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Product: FRITZ!Card PCI ISDN-Controller : FRITZ!Card PCI Operating system : linux 2.6 The linux driver module for kernel 2.6 from ftp.avm.de causes a kernel panic if the kernel driver module is inserted whilst two fritz!card PCI 2.0 cards are installed in the computer -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 00:27:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 01:27:08 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050927002708.EFBDF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-27 01:27 UTC ------- Created an attachment (id=4110) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4110&action=view) Output sh -x /etc/init.d/pcmcia start sudo /etc/init.d/pcmcia start 2> file4 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 00:52:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 01:52:15 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050927005215.23C1122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 01:52 UTC ------- Any messages? Is it a hardlock, or can you still switch to the second console with Alt+F2? Have you had any other Linux dist working on this system? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 00:59:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 01:59:53 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050927005953.CA91422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ------- Additional Comments From sb73542 at safe-mail.net 2005-09-27 01:59 UTC ------- Any way I can help to make progress on this bug? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:00:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:00:21 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050927010021.8132E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-27 02:00 UTC ------- Thanks, could you also provide the output of this: sudo laptop-detect; echo $? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:14:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:14:44 +0100 (BST) Subject: [Bug 16181] ipw2200 not loaded automatically on Toshiba M45-355s In-Reply-To: Message-ID: <20050927011444.AEBE522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16181 Ubuntu | linux ------- Additional Comments From mkrigsman at documentation.com 2005-09-27 02:14 UTC ------- Created an attachment (id=4111) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4111&action=view) dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:16:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:16:06 +0100 (BST) Subject: [Bug 16181] ipw2200 not loaded automatically on Toshiba M45-355s In-Reply-To: Message-ID: <20050927011606.238DD22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16181 Ubuntu | linux ------- Additional Comments From mkrigsman at documentation.com 2005-09-27 02:16 UTC ------- Created an attachment (id=4112) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4112&action=view) lspci output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:16:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:16:33 +0100 (BST) Subject: [Bug 16181] ipw2200 not loaded automatically on Toshiba M45-355s In-Reply-To: Message-ID: <20050927011633.BE42522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16181 Ubuntu | linux ------- Additional Comments From mkrigsman at documentation.com 2005-09-27 02:16 UTC ------- Created an attachment (id=4113) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4113&action=view) lspci -n output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:17:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:17:59 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050927011759.34E8722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-27 02:17 UTC ------- sudo laptop-detect; echo $? 1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:20:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:20:05 +0100 (BST) Subject: [Bug 16181] ipw2200 not loaded automatically on Toshiba M45-355s In-Reply-To: Message-ID: <20050927012005.6A1FB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16181 Ubuntu | linux ------- Additional Comments From mkrigsman at documentation.com 2005-09-27 02:20 UTC ------- I reinstalled everything, and now the card is recognized automatically as long as ACPI is disabled as a boot parameter. If ACPI is enabled, the wireless is not recognized. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:23:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:23:39 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050927012339.73CC222F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-27 02:23 UTC ------- Ok, interesting. Could you please attach the output of sudo dmidecode ? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:25:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:25:58 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050927012558.ED5EA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From arzajac at yahoo.ca 2005-09-27 02:25 UTC ------- sudo dmidecode # dmidecode 2.6 # no SMBIOS nor DMI entry point found, sorry. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:29:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:29:29 +0100 (BST) Subject: [Bug 8575] Drivers not loaded for non-hotplug-friendly PCMCIA In-Reply-To: Message-ID: <20050927012929.1843E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8575 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-27 02:29 UTC ------- Oh dear. This is going to be difficult. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 01:49:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 02:49:53 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050927014953.56F2322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 02:49 UTC ------- I've found the problem. This will be fixed in the next upload. Thanks for the bug report. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 02:25:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 03:25:11 +0100 (BST) Subject: [Bug 16407] New: Breezy P1, Thinkpad 600- Suspend breaks USB Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16407 Ubuntu | kernel-package Summary: Breezy P1, Thinkpad 600- Suspend breaks USB Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: sb73542 at safe-mail.net QAContact: kernel-bugs at lists.ubuntu.com Hello, I'd just like to mention a long-standing bug (regression) in Ubuntu's kernels which still persists with the 2.6.12 kernel that shipped with Breezy Preview. I have an IBM Thinkpad 600 which is currently running Hoary. When I upgraded from Warty-->Hoary (fresh install) I started experiencing problems with my USB mouse and USB camera not working after resuming from a suspend-to-ram. I have verified that this a change somewhere in the kernel caused this problem, because when I install the old 2.6.8 kernel from Warty on top of Hoary, USB works fine with suspend-to-ram. It broke possibly with 2.6.9 and surely with 2.6.10. This bug concerns the 2.6.12 kernel shipped with the Breezy Preview CD. Basically, it behaves exactly the same as the 2.6.10 kernel. I am unable to give good error messages at the moment because upgrading the libc seems to have broken all 3 of the terminals I have installed. I am sure that this is a regression in the kernel, and not in the APM or hotplug scripts (if there were any changes) because as I said, Warty's kernel fixes the issue on a fresh Hoary system, with no changes to any scripts. I'm not ready to upgrade to a full Breezy system yet, but I hope this bug report on the Breezy kernel only will be helpful. Please note the old report I made on this for Hoary (also a Preview version): http://bugzilla.ubuntu.com/show_bug.cgi?id=8565 Also please note a forum posting I made that has some more error messages. http://ubuntuforums.org/showthread.php?t=40867 This bug does not exist with any kernels I've tried as new as 2.6.11 coming from Mandrake. Thanks a lot! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 02:26:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 03:26:29 +0100 (BST) Subject: [Bug 16407] Breezy P1, Thinkpad 600- Suspend breaks USB In-Reply-To: Message-ID: <20050927022629.7887822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16407 Ubuntu | kernel-package sb73542 at safe-mail.net changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 02:29:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 03:29:19 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050927022919.407BA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | alsa-driver ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|linux |alsa-driver ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 03:29 UTC ------- >From what I've read, this should work. The kernel is compiled with ISAPNP support. The alsa drivers seem to not have a direct option for "ISAPNP", but all of the ISA drivers are compiled, and the enabling of ISAPNP in the kernel should make the alsa ISAPNP features available, atleast with regards to cmi8330. Can you try doing just "modprobe snd-cmi8330" with no module params? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 02:58:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 03:58:30 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050927025830.BBEF422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | alsa-driver ------- Additional Comments From sb73542 at safe-mail.net 2005-09-27 03:58 UTC ------- modprobe snd-cmi8330 with no params is the first thing I always try. It just gives me the usual error about "Error inserting snd-cmi8330.ko device not found" as it does when I specify params. I also get lines in dmesg during bootup that say isapnp: Scanning for PnP cards... isapnp: CMI8330 quirk - fixing interrupts and dma isapnp: Card 'CMI8330. Audio Adapter' isapnp: 1 Plug & Play card detected total I found these phrases on google in some C source file for the drivers... http://pc1.peanuts.gr.jp/~kei/Kernel-Snapshot/linux/drivers/pnp/quirks.c I do think that the isapnp is working correctly on my motherboard because in PCLOS P.91 (also running kernel 2.6.12) I can manually modprobe the module with no params as you suggest, and it works perfectly. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 03:44:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 04:44:21 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050927034421.7F5E422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 04:44 UTC ------- Ok, can you now send me the lspci -vvn with the working 2.6.10 kernel? Please use the "Create a New Attachment" link, instead of pasting directly in a comment. Also, under the 2.6.12 kernel, please attach the output of "cat /proc/ioports" and "cat /proc/iomem". -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 04:16:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 05:16:28 +0100 (BST) Subject: [Bug 7207] Improving ZIP drive support In-Reply-To: Message-ID: <20050927041628.C4D5E303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7207 Ubuntu | linux ------- Additional Comments From vincent.trouilliez at modulonet.fr 2005-09-27 05:16 UTC ------- (In reply to comment #5) > Can this bug be confirmed against latest breezy or Colony 5? Okay, I dug out my zip drives. Result : a complete disaster !!! I thought it was bad enough in Wart/Hoary, but with (up to date of course) Breezy, it looks like alph software, like ZIP drives were a revolutionary device that hit the market on ly 3 days ago, and for which the Linux community was nt prepared. It is truly appaling. I fought with both drives (100MB parport external, and 100MB ATAPI internal) for an hour, taking notes, then as everything was going so wrong, I stopped taking notes as it became useless. I hope Dapper Drake will rectifiy the situation, I am willing to help/test of course, just drop me a mail when something needs testing/evaluating. Here are some notes from my testing... External 100MB Parallel Port Drive ----------------------------- (Booted with no disk in drive.) Drive not recognized. Loading the 'ppa' module by hand (and putting it in etc/modules at the same time) creates the /dev/sda device corresponding to the drive, but no drive icon will show up in the 'computer' place. I insert a disk: /dev/sda4 not created. I run "cfdisk /dev/sda", and it can see the partition. Exit cfdisk.. oh miracle, /dev/sda4 is now visible at the CLI. The disk was no auto-mounted. Typing by hand the CLI : "pmount /dev/sda4 Zip_External does create an icon, and I can browse the partition with Nautilus. However, the icon represents a standard/generic disk drive icon, not the usual/required/expecte, and very good looking ZIP disk icon. When right-clicking on the icon, there is an option to unmount, but no option to eject. Unmount works, however ejecting (using 'eject /dev/sda' at the CLI) does not work, though no error is reported. Internal ATAPI 100MB drive -------------------------- Booted with no disk in the drive. There is an icon for the drive, in the 'Computer place', but it won't the disk when inserted. I loaded the module 'ide-floppy', but still won't mount the disk. If I create a mount point manually, and mount if at the CLI, it does mount the partition/disk, and I can access it at the CLI, but if I try to double-click on the drive icon, it says : "Error: special device /dev/hdd4 does not exist". Reboot the machine with the disk in the drive. I can now double click on the icon and it will mount the disk and I can browse it with Nautilus. However, mounting the disk, and reading/accessing it, is rather slower than it used to be in Hoary/Warty, for no apparent reason. If I right-click on the icon, I have an option to 'Eject', which unmounts the disk, but will not actually eject it. Using 'eject' at CLI doesn't work either, nor does pressing the eject button on the drive itself ! At this point I could feel I was starting to go slightly mad, so I decided to put a stop to it before I go get a sledge hammer ;-) :-/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 04:21:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 05:21:09 +0100 (BST) Subject: [Bug 1596] powerpc kernel throws SIGILL sometimes In-Reply-To: Message-ID: <20050927042109.E75EF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=1596 Ubuntu | linux ------- Additional Comments From adconrad at ubuntu.com 2005-09-27 05:21 UTC ------- ppc64 kernels on davis and the buildds seem to have cleared up the issue, though if that was really the fix (or maybe just upgrading to a newer upstream kernel source did it, and ppc32 vs ppc64 was a red herring), I can't say for sure. Either way, this seems to be resolved in breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 04:49:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 05:49:13 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050927044913.B46D422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From mdz at ubuntu.com 2005-09-27 05:49 UTC ------- Spoke too soon. The login sound played OK, but: [4326970.125000] irq 11: nobody cared (try booting with the "irqpoll" option. [4326970.125000] [] __report_bad_irq+0x2a/0x8d [4326970.125000] [] handle_IRQ_event+0x39/0x6d [4326970.125000] [] note_interrupt+0x9e/0xf7 [4326970.125000] [] __do_IRQ+0xef/0xfc [4326970.125000] [] do_IRQ+0x19/0x24 [4326970.125000] [] common_interrupt+0x1a/0x20 [4326970.125000] [] acpi_processor_idle+0x0/0x27f [processor] [4326970.125000] [] acpi_processor_idle+0xff/0x27f [processor] [4326970.125000] [] cpu_idle+0x3c/0x51 [4326970.125000] [] start_kernel+0x171/0x1ad [4326970.125000] [] unknown_bootoption+0x0/0x1da [4326970.125000] handlers: [4326970.125000] [] (snd_via82xx_interrupt+0x0/0xcf [snd_via82xx]) [4326970.125000] Disabling IRQ #11 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 05:17:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 06:17:13 +0100 (BST) Subject: [Bug 7484] hald hangs when gamepad is plugged in In-Reply-To: Message-ID: <20050927051713.1FAD622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7484 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 06:17 UTC ------- Can you test this with latest breezy, Colony 5 live or install CD's please? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 09:40:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 10:40:11 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050927094011.49E3322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-27 10:40 UTC ------- Created an attachment (id=4116) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4116&action=view) lspci -vvn with 2.6.10 kernel and "cat" with 2.6.12 Well, sorry for delay,here this what you requested to me, I hope that it helps you. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 10:12:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 11:12:33 +0100 (BST) Subject: [Bug 15199] Ports on localhost doesn't work In-Reply-To: Message-ID: <20050927101233.CA52122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | UNKNOWN noplay at noplay.net changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From noplay at noplay.net 2005-09-27 11:12 UTC ------- Same problems and sudo ifdown lo; sudo ifup lo worked. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 10:31:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 11:31:04 +0100 (BST) Subject: [Bug 16435] New: tg3 module does not work in Latitude D400 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16435 Ubuntu | linux Summary: tg3 module does not work in Latitude D400 Product: Ubuntu Version: unspecified Platform: i386 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: andre at adois.dyndns.org QAContact: kernel-bugs at lists.ubuntu.com The tg3 module does not work correctly for my laptop. It is a Dell Latitude D400, with a builtin gigabit NIC called NetXtreme BCM5705M (from Broadcom). An lspci is attached to show that the card is detected by the system. The messages that show up in my 'dmesg' output are (after modprobe -r tg3 && modprobe tg3): [4296379.676000] ACPI: PCI interrupt for device 0000:01:00.0 disabled [4296587.169000] tg3.c:v3.31 (June 8, 2005) [4296587.169000] ACPI: PCI Interrupt 0000:01:00.0[A] -> Link [LNKC] -> GSI 11 (level, low) -> IRQ 11 [4296598.510000] eth0: Tigon3 [partno(BCM95705A50) rev 3001 PHY(5705)] (PCI:33MHz:32-bit) 10/100/1000BaseT Ethernet 00:0d:56:4e:2c:99 [4296598.510000] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] Split[0] WireSpeed[1] TSOcap[1] [4296598.510000] eth0: dma_rwctrl[763f0000] [4296598.602000] tg3: tg3_reset_hw timed out for eth0, firmware will not restart magic=4b657654 ...and this last message continues on and on. Which I don't know what means. The card works nicely under windows and used to work with 2.4.X kernels on other distributions. I'm not sure what the problem is. Trying to use the broadcom module (distributed by them) makes the machine hang. The device manager can also detect the card and see it is a network interface, but that is all. I cannot use it. An interesting behavior is that when I modprobe the module, the machine freezes temporarily. I'm also not sure what it means. I wonder if one can get this fixed for the Breezy release still. The version of the kernel shipped with Hoary also doesn't work. I've tested them all. Currently I have the latest (as of today) linux kernel module available for Breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 10:31:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 11:31:52 +0100 (BST) Subject: [Bug 16435] tg3 module does not work in Latitude D400 In-Reply-To: Message-ID: <20050927103152.381E922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16435 Ubuntu | linux ------- Additional Comments From andre at adois.dyndns.org 2005-09-27 11:31 UTC ------- Created an attachment (id=4120) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4120&action=view) Output of the command 'lspci -vv' -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 11:03:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 12:03:25 +0100 (BST) Subject: [Bug 11541] No framebuffer for sis chipset In-Reply-To: Message-ID: <20050927110325.C696E22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11541 Ubuntu | linux ------- Additional Comments From bersace03 at free.fr 2005-09-27 12:03 UTC ------- Hello, I found a solution to the installation problem : just boot the installer with "linux vga=791" and all work perfectly !!!! This is even better than "linux debian-installer/framebuffer=false". Note that "linux vga=extended" did not solve the problem. So, I'm wondering how to do this automatically ? Is lilo able to select the vga code ? Is grub able to do that ? Or is this possible to use grub instead of lilo ? Why use vga16fb and not vesafb ? Thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 11:10:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 12:10:01 +0100 (BST) Subject: [Bug 5731] ath0 interface non-functional in installer In-Reply-To: Message-ID: <20050927111001.D55BF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5731 Ubuntu | linux ------- Additional Comments From lgoss007 at gmail.com 2005-09-27 12:10 UTC ------- Well I guess since I reported it I should probably test it :) But can I test it on the live cd (I'm not sure how much it's merged with the regular install cd)? If not I'll just have to do some backups before doing a fresh install. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 11:15:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 12:15:18 +0100 (BST) Subject: [Bug 11555] powernowd loads wrong module, Acer Aspire 1683 In-Reply-To: Message-ID: <20050927111518.3ACCB22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11555 Ubuntu (laptop) | powernowd tfheen at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From tfheen at ubuntu.com 2005-09-27 12:15 UTC ------- powernowd (0.96-1ubuntu3) breezy; urgency=low * Rewrite cpufreq-detect.sh to be more general -- Matthew Garrett Mon, 19 Sep 2005 21:08:50 +0100 This should have fixed this. Please test and verify. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 11:15:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 12:15:24 +0100 (BST) Subject: [Bug 2555] Line-out on iMac seems to be "overdriven" In-Reply-To: Message-ID: <20050927111524.29B7022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=2555 Ubuntu | linux martin.pitt at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |martin.pitt at ubuntu.com ------- Additional Comments From martin.pitt at ubuntu.com 2005-09-27 12:15 UTC ------- Ralf, what exactly do you mean with "overdriven" (just send me a German explanation if you have trouble to properly describe it in English). Can you please start "alsamixer", mute the "DRC" setting and check if it gets any better/worse? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 11:51:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 12:51:06 +0100 (BST) Subject: [Bug 11541] No framebuffer for sis chipset In-Reply-To: Message-ID: <20050927115106.B3D1322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11541 Ubuntu | linux ------- Additional Comments From cjwatson at ubuntu.com 2005-09-27 12:51 UTC ------- (In reply to comment #12) > So, I'm wondering how to do this automatically ? Is lilo able to select the vga > code ? Sure; put 'vga=791' in /etc/lilo.conf. > Is grub able to do that ? Sure; change the line beginning '# kopt=' in /boot/grub/menu.lst to contain 'vga=791', and run update-grub. > Why use vga16fb and not vesafb ? vesafb doesn't work on all hardware either. We can fix your hardware by default and break others, or we can break your hardware by default and fix others. At the moment we've gone with vga16fb by default because it's simpler (doesn't require different vga= arguments in different places) and because, unlike vesafb, it supports suspend/resume. Still, the real answer seems to be to fix vga16fb. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 12:04:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 13:04:27 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050927120427.3875222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From eljefe123 at gmail.com 2005-09-27 13:04 UTC ------- I see you fix the spca5xx driver. It works now, but as soon as i start a program that makes use of the driver, gnomemeeting e.g. The system hangs (freezes). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 12:21:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 13:21:37 +0100 (BST) Subject: [Bug 10116] powernowd causes mouse to become erratic on high I/O load In-Reply-To: Message-ID: <20050927122137.DD12922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10116 Ubuntu | linux ------- Additional Comments From chareos at hotmail.com 2005-09-27 13:21 UTC ------- (In reply to comment #9) > There was a p4 errata dealing with cpu scaling that was fixed in recent > (2.6.12-9.X) kernels. Can you try one of these and let me know if that fixes the > problem? Basically it prevents scaling down below 2Ghz. I'm on 2.6.12-9-386 Breezy kernel. On my PIII-M at 1GHz problem still occours. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 13:15:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 14:15:13 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050927131513.C15B922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-27 14:15 UTC ------- Ben: You're very welcome. Could you please give some comments on what was it? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 14:22:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 15:22:25 +0100 (BST) Subject: [Bug 16451] New: drops Windows entry after update Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16451 Ubuntu | linux Summary: drops Windows entry after update Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: madman2k at gmx.de QAContact: kernel-bugs at lists.ubuntu.com if you have altered the grub.conf with boot-admin which removes the line: ### END DEBIAN AUTOMAGIC KERNELS LIST the windows entry will be overwritten on the next kernel update. This might be funny once breezy a update for Ubuntu 5.10 is out and everyone will be forced to stay with linux :D - well perhaps it might not be that funny. Therefore I suggest that you improve the parsing algorithm for postinstall... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 14:59:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 15:59:14 +0100 (BST) Subject: [Bug 16454] New: snd-powermac does not support new iBooks Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16454 Ubuntu | linux Summary: snd-powermac does not support new iBooks Product: Ubuntu Version: unspecified Platform: powerpc URL: https://bugtrack.alsa-project.org/alsa- bug/view.php?id=1430 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: torsten.rausche at medien.uni-weimar.de QAContact: kernel-bugs at lists.ubuntu.com The snd-powermac module is loaded at startup without complains. But i cannot get any sound out of this box and there are only controls for the channels "Master", "PC Speaker", "Capture" and "Beep". But there is no PCM channel for example. It seems that the module does not know the ID of the sound chipset and according to https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1430 a simple patch could help. Although I do not know if the current Ubuntu kernel does support this "Snapper" chipset at all. I am using a daily updated Breezy on an iBook G4 (1.33 GHz, 12", August 2005 version). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:02:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:02:28 +0100 (BST) Subject: [Bug 7207] Improving ZIP drive support In-Reply-To: Message-ID: <20050927160228.7365A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7207 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:02 UTC ------- Ok, so the drive actually works, correct? The thing here is that from my point of view (the kernel maintainer) I just have to assure that it works. Making things look better from the GUI isn't a bug the kernel maintainer handles. Honestly, when I read your report, I was expecting terrible terrible things, but I think you are over dramatizing the problems. Sure, it doesn't look good from the UI, and that's a user issue we don't wont, but it wasn't horrible and maddening. There's several issues I can outline from your report: 1) ppa does not get autoloaded. This is likely because paraport is such a dated interface, and it doesn't lend itself easily to autodetection. This will probably not get fixed. 2) I think ide-floppy was actually loaded, you said you did load it (guessing modprobe) and it didn't change anything, plus the drive would not have shown under "Computer" unless it was already loaded. So that's a non-issue. Modprobe would exit with no messages if the module was already loaded. 3) Partitions not getting automounted. My guess here is that the driver or the drive is not getting or handling signals for media change. This is much like a CD drive. I'm guessing this should work, and maybe the driver handles it, but since zipdrives are so old, and not many people use them anymore, there's not been much maint on the driver itself. I'll look into this. 4) Eject. This surely is a bug, and one which I'll look into. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:05:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:05:51 +0100 (BST) Subject: [Bug 7502] usb-mouse and networking stops working In-Reply-To: Message-ID: <20050927160551.58AC722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7502 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |INVALID ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:05 UTC ------- Closing, since it's a hardware bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:08:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:08:06 +0100 (BST) Subject: [Bug 15366] 2.6 kernel no boot with single drive RAID In-Reply-To: Message-ID: <20050927160806.285D822F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15366 Ubuntu | UNKNOWN juff at core.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From juff at core.com 2005-09-27 17:08 UTC ------- Does this explain the problem? Do you need anything more? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:11:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:11:51 +0100 (BST) Subject: [Bug 7513] Random segfaults / SIGILL In-Reply-To: Message-ID: <20050927161151.DE7E622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7513 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:11 UTC ------- I'm somewhat inclined to close this bug, since the correct kernel works ok, and it's just the i386 kernel that shows sigill. Please request reopening if someone objects to this logic :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:12:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:12:38 +0100 (BST) Subject: [Bug 7591] sym53c8xx floods the system log In-Reply-To: Message-ID: <20050927161238.DF4B722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7591 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:12 UTC ------- Assuming fixed in 2.6.12. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:14:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:14:12 +0100 (BST) Subject: [Bug 7721] swsusp resume failure In-Reply-To: Message-ID: <20050927161412.021BD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7721 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:14 UTC ------- Is this still a problem with latest breezy or Colony 5? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:15:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:15:45 +0100 (BST) Subject: [Bug 7744] Not detecting the power supply unplug In-Reply-To: Message-ID: <20050927161545.0882C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7744 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:15 UTC ------- Can the submitter please send proper information for this bug report? Otherwise, I'll have no choice but to close it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:18:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:18:09 +0100 (BST) Subject: [Bug 7754] On opening Pd, I get error In-Reply-To: Message-ID: <20050927161809.78BC322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7754 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:18 UTC ------- Your output for lspci was actually a duplicate of the dmesg output. Can you resend the lspci -v and lspci -vn output please? Also, would you mind testing the Colony 5 live or install CD's, or latest breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:22:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:22:19 +0100 (BST) Subject: [Bug 7854] kernel not gracefully sharing PCI IRQs In-Reply-To: Message-ID: <20050927162219.3220222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7854 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:22 UTC ------- Has the submitter been able to upgrade in order to validate these bugs on hoary or breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:25:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:25:30 +0100 (BST) Subject: [Bug 7861] ide-cd hangs on Asus Pundit-R (hoary) In-Reply-To: Message-ID: <20050927162530.9FC3422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7861 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:25 UTC ------- Since 2.6.11 didn't have the problem, assuming this issue is fixed now in atleast breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:29:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:29:48 +0100 (BST) Subject: [Bug 7911] Can't burn CDs - ncb hangs and crashes In-Reply-To: Message-ID: <20050927162948.738A922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7911 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:29 UTC ------- Comments lead me to believe this is fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:32:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:32:57 +0100 (BST) Subject: [Bug 7956] on powerbook sound successively quieter until unaudible In-Reply-To: Message-ID: <20050927163257.5B20722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7956 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:32 UTC ------- You said that you suspect the alsa init script. Can you place "exit 0" at the top of this script and see if things work after that? Also, please let me know if this still affects breezy (just so I can make sure things are still broken before working on fixing it). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:39:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:39:01 +0100 (BST) Subject: [Bug 16390] Remote mouse control with ATI Remote Wonder break In-Reply-To: Message-ID: <20050927163901.011B522F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16390 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-27 17:39 UTC ------- This is interesting: [4294701.020000] drivers/usb/input/ati_remote.c: Weird data, len=1 ff 00 00 00 00 00 ... Has it always done that? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:42:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:42:50 +0100 (BST) Subject: [Bug 7981] nautilus does not warn when copying files to read only usb flash drive In-Reply-To: Message-ID: <20050927164250.C4A3C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7981 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:42 UTC ------- This could very well be something with the USB controller. Can you test under latest breezy or Colony 5 live? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 16:51:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 17:51:19 +0100 (BST) Subject: [Bug 5731] ath0 interface non-functional in installer In-Reply-To: Message-ID: <20050927165119.912EB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5731 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 17:51 UTC ------- Yes, the Colony 5 live cd is fine for testing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:03:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:03:32 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050927170332.4C5B622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 18:03 UTC ------- I need /proc/ioports and /proc/iomem for 2.6.12 kernel, not 2.6.10, thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:05:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:05:13 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050927170513.207A222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 18:05 UTC ------- CONFIG_ADB_PMU was hard disabled by changes in Kconfig files (to satisfy another bug). The description of CONFIG_ADB_PMU made it appear to only related to G4 systems, so was disabled on ppc64. This isn't the case, and some older generation G5's actually use ADB_PMU, as opposed to SMU for newer generation G5's. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:06:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:06:08 +0100 (BST) Subject: [Bug 11541] No framebuffer for sis chipset In-Reply-To: Message-ID: <20050927170608.827B522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11541 Ubuntu | linux ------- Additional Comments From bersace03 at free.fr 2005-09-27 18:06 UTC ------- (In reply to comment #13) > Sure; put 'vga=791' in /etc/lilo.conf. > Sure; change the line beginning '# kopt=' in /boot/grub/menu.lst to contain > 'vga=791', and run update-grub. Of course I know that, i wonder how to do the res probe automatically at the boot time (lilo or grub should not do this job). > > > Why use vga16fb and not vesafb ? > > vesafb doesn't work on all hardware either. We can fix your hardware by default > and break others, or we can break your hardware by default and fix others. At > the moment we've gone with vga16fb by default because it's simpler (doesn't > require different vga= arguments in different places) and because, unlike > vesafb, it supports suspend/resume. Still, the real answer seems to be to fix > vga16fb. Okay, but i found that things go stranges. I own ati rage128 and this chipset is not very well supported (nobody maintain the driver). I own sis which support badly vga or which vga16fb does not support correctly. So Ubuntu seems to choose to support old system, but not all of theses, forgeting that, often, those hardware are not able just do launch a usable GNOME desktop. If we use vga16fb, how to have a higher resolution than 640x480 ?? I have success with vesafb and suspend/resume on a GeForce Card. But, not on other device (r128 and sis). Thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:08:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:08:04 +0100 (BST) Subject: [Bug 14931] Missing libata "passthrough" functionality In-Reply-To: Message-ID: <20050927170804.2976722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14931 Ubuntu | linux ------- Additional Comments From mlord at pobox.com 2005-09-27 18:08 UTC ------- Okay, I've emailed patches to Ben, and also uploaded them to http://rtr.ca/dell_i9300/kernels/breezy/ Cheers -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:10:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:10:36 +0100 (BST) Subject: [Bug 15384] Breezy Preview 1: snd-cmi8330 ALSA driver broken In-Reply-To: Message-ID: <20050927171036.491B522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15384 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|alsa-driver |linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 18:10 UTC ------- Yeah, I realized that before I submmited the bug, but forgot to revert the change. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:28:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:28:10 +0100 (BST) Subject: [Bug 16394] graphical boot broken since 2.6.12-9 In-Reply-To: Message-ID: <20050927172810.32F1522F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16394 Ubuntu | linux ------- Additional Comments From julien at jls-info.com 2005-09-27 18:28 UTC ------- Created an attachment (id=4130) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4130&action=view) Kernel log -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:28:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:28:49 +0100 (BST) Subject: [Bug 16394] graphical boot broken since 2.6.12-9 In-Reply-To: Message-ID: <20050927172849.A6D6122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16394 Ubuntu | linux ------- Additional Comments From julien at jls-info.com 2005-09-27 18:28 UTC ------- Created an attachment (id=4131) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4131&action=view) lsmod -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:31:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:31:27 +0100 (BST) Subject: [Bug 16394] graphical boot broken since 2.6.12-9 In-Reply-To: Message-ID: <20050927173127.3DC4A22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16394 Ubuntu | linux ------- Additional Comments From julien at jls-info.com 2005-09-27 18:31 UTC ------- Here are the results of my last tests : - 2.6.12-9 with vga=791 does not work (blank screen), with and without the splash option - 2.6.12-9 without vga=791 displays usplash in 640x480 - 2.6.12-8 works with all options (vga=791 and splash), but I do not get usplash, may be another problem because it used to work ? I attached the kernel log and the lsmod output for the kernel options that fail : /boot/vmlinuz-2.6.12-9-k7 root=/dev/hda1 ro quiet splash vga=791 Hope this helps ! Julien -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:35:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:35:14 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050927173514.1750322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From svu at gnome.org 2005-09-27 18:35 UTC ------- Just tried linux-powerpc64-smp 2.6.12-9 No changes. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 17:39:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 18:39:40 +0100 (BST) Subject: [Bug 15988] DVD burner not recognized In-Reply-To: Message-ID: <20050927173940.1258722F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15988 Ubuntu | UNKNOWN ------- Additional Comments From frederic.riss at gmail.com 2005-09-27 18:39 UTC ------- I failed to mention that the drive works perfectly as a reader ; it's just not recognized as a burner. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 18:00:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 19:00:43 +0100 (BST) Subject: [Bug 16473] New: e100 fails to load interface after hibernation on IBM X30 laptop. Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16473 Ubuntu | linux Summary: e100 fails to load interface after hibernation on IBM X30 laptop. Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: jesper at krogh.cc QAContact: kernel-bugs at lists.ubuntu.com On an ordinary bootup the e100 NIC works fine. A /etc/init.d/networking restart does not solve the problem. The build-in wireless NIC works fine, even after hibernation, thus resulting in a device reordering since a normal bootup gives: Kat5 -> eth0 Wireless -> eth1 After hibernation the wireless becomes eth0 ..... dmesg from a resume ..... Sep 27 19:31:03 localhost kernel: [4294945.940000] e100: Intel(R) PRO/100 Network Driver, 3.4.8-k2-NAPI Sep 27 19:31:03 localhost kernel: [4294945.940000] e100: Copyright(c) 1999-2005 Intel Corporation Sep 27 19:31:03 localhost kernel: [4294945.946000] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [LNKE] -> GSI 11 (level, low) -> IRQ 11 Sep 27 19:31:03 localhost kernel: [4294946.037000] e100: 0000:01:08.0: e100_eeprom_load: EEPROM corrupted Sep 27 19:31:03 localhost kernel: [4294946.037000] ACPI: PCI interrupt for device 0000:01:08.0 disabled .... dmesg from ordinary boot ... Sep 27 19:27:08 localhost kernel: [4294668.948000] ACPI: bus type ide registered Sep 27 19:27:08 localhost kernel: [4294669.040000] e100: Intel(R) PRO/100 Network Driver, 3.4.8-k2-NAPI Sep 27 19:27:08 localhost kernel: [4294669.040000] e100: Copyright(c) 1999-2005 Intel Corporation Sep 27 19:27:08 localhost kernel: [4294669.041000] ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 11 Sep 27 19:27:08 localhost kernel: [4294669.041000] ACPI: PCI Interrupt 0000:01:08.0[A] -> Link [LNKE] -> GSI 11 (level, low) -> IRQ 11 Sep 27 19:27:08 localhost kernel: [4294669.064000] e100: eth0: e100_probe: addr 0xd0200000, irq 11, MAC addr 00:09:6B:42:FA:4F -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 18:02:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 19:02:21 +0100 (BST) Subject: [Bug 16474] New: Boot hang, apparently blocking on SW RAID rebuild Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16474 Ubuntu | kernel-package Summary: Boot hang, apparently blocking on SW RAID rebuild Product: Ubuntu Version: unspecified Platform: amd64 OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: finley at anl.gov QAContact: kernel-bugs at lists.ubuntu.com I am experiencing this issue on a new Sun Fire V40z Server in a well cooled machine room. (please refer to http://bugzilla.ubuntu.com/show_bug.cgi?id=10916) Hardware: - Quad CPU amd64 -- AMD Opteron(tm) Processor 852 - 32G memory - 2x SCSI disks RAID config: - /dev/md0 RAID1 Mount point: /boot Partitions: /dev/sda1, /dev/sdb1 - /dev/md1 RAID1 Physical device for LVM vg0 $ mount | grep vg0 /dev/mapper/vg0-root on / type ext3 (rw,errors=remount-ro) /dev/mapper/vg0-tmp on /tmp type ext3 (rw) /dev/mapper/vg0-var on /var type ext3 (rw) I didn't try the "acpi=off" option, but was able to temporarily resolve the situation in this way: - multiple boots failed with hoary 2.6.10-5-amd64-k8-smp in the way described below - normal, just hit boot failed - append "init=/bin/bash" boot boot failed - append "single" boot failed - boot from "live" CD, then "watch cat /proc/mdstat" showed /dev/md1 re-syncing - after the re-sync was complete, I was able to reboot with kernel 2.6.12.2-bef without incident (smp kernel) - then tried booting again from 2.6.10-5-amd64-k8-smp, and also had success Another point of potential interest is the file "/script" on the initrd, as this is where the RAID arrays are assembled. It contains the following for my system: mdadm -A /devfs/md/1 -R -u 55f3a23c:a0ef4950:a0a11bfe:250e3f63 /dev/sda2 /dev/sdb2 mkdir /devfs/vg0 mount_tmpfs /var if [ -f /etc/lvm/lvm.conf ]; then cat /etc/lvm/lvm.conf > /var/lvm.conf fi mount_tmpfs /etc/lvm if [ -f /var/lvm.conf ]; then cat /var/lvm.conf > /etc/lvm/lvm.conf fi mount -nt devfs devfs /dev vgchange -a y vg0 umount /dev umount -n /var umount -n /etc/lvm ROOT=/dev/mapper/vg0-root mdadm -A /devfs/md/1 -R -u 55f3a23c:a0ef4950:a0a11bfe:250e3f63 /dev/sda2 /dev/sdb2 The machine is in use now, and I am unable to perform further tests on it. However, I will be receiving another one soon (identical, I believe), and will be able to re-create this problem and do further testing on it. Please let me know if there are tests you would like me to perform. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 18:48:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 19:48:49 +0100 (BST) Subject: [Bug 16390] Remote mouse control with ATI Remote Wonder break In-Reply-To: Message-ID: <20050927184849.46D8022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16390 Ubuntu | linux ------- Additional Comments From ubuntu-bugzilla at fdnet.biz 2005-09-27 19:48 UTC ------- I don't know. There is any history on disk so I can check if I had the same thing on hoary ? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 18:57:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 19:57:39 +0100 (BST) Subject: [Bug 15571] Low hard drive performance on breezy In-Reply-To: Message-ID: <20050927185739.8A91A22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kernel- | |bugs at lists.ubuntu.com, | |desktop- | |bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-27 19:57 UTC ------- (In reply to comment #11) > I can't see any major issues myself :( Well, it tells us that the difference isn't due to increased CPU load or increased disk activity, which eliminates some factors. If you log out of GNOME again, do things return to normal? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 18:58:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 19:58:39 +0100 (BST) Subject: [Bug 8140] Ubuntu's kernels wont boot without acpi=off In-Reply-To: Message-ID: <20050927185839.A92EF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8140 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 19:58 UTC ------- Can you try the Colony 5 live cd please? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 18:59:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 19:59:25 +0100 (BST) Subject: [Bug 15571] Low hard drive performance on breezy In-Reply-To: Message-ID: <20050927185925.4577F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From ubuntu at lwillis.plus.com 2005-09-27 19:59 UTC ------- I saw this problem originally on a desktop PC so PCMCIA doesn't seem to be the problem there. [My laptop *doesn't* have this problem on breezy]. As for logging out of GNOME then yes, things return to normal, then slow again when I log back in. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:00:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:00:19 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050927190019.80B9A303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Low hard drive performance |Reduced I/O performance when |on breezy |logged into GNOME -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:00:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:00:50 +0100 (BST) Subject: [Bug 16454] snd-powermac does not support new iBooks In-Reply-To: Message-ID: <20050927190050.E95E522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16454 Ubuntu | linux ------- Additional Comments From torsten.rausche at medien.uni-weimar.de 2005-09-27 20:00 UTC ------- I recompiled the actual Ubuntu kernel with the changes mentioned in the ALSA bugtracker and sound works with my iBook now. Please add this patch. It is just adding two cases to a switch statement to tell snd-powermac that the new iBooks have a "Snapper" audio chipset. --- sound/ppc/pmac.c.orig 2005-06-17 21:48:29.000000000 +0200 +++ sound/ppc/pmac.c 2005-09-27 17:59:52.000000000 +0200 @@ -982,6 +982,8 @@ * single frequency until proper i2s control is implemented */ switch(layout_id) { + case 0x5c: + case 0x50: case 0x48: case 0x46: case 0x33: -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:05:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:05:52 +0100 (BST) Subject: [Bug 8189] [Hoary] Recording DVD through external USB writer fails. (reset high speed USB device...) In-Reply-To: Message-ID: <20050927190552.58AB622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8189 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 20:05 UTC ------- Any chance you can test with the latest breezy or using a Colony 5 live cd? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:06:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:06:04 +0100 (BST) Subject: [Bug 8189] [Hoary] Recording DVD through external USB writer fails. (reset high speed USB device...) In-Reply-To: Message-ID: <20050927190604.A1FC222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8189 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:11:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:11:10 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050927191110.4DB6C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From kaaloo at gmail.com 2005-09-27 20:11 UTC ------- I have an update to this. The 2.6.12-9-18 kernel has wireless networking working right after boot. Networking will stop working after a while (an hour or so) and a reboot is needed to get it going again. Networking will also not work after coming back from hibernation. I'm attaching the output that was requested in an earlier comment. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:11:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:11:44 +0100 (BST) Subject: [Bug 8229] nvidia, onboard network card error In-Reply-To: Message-ID: <20050927191144.CE5E622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8229 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 20:11 UTC ------- Does this still occur with latest breezy kernel (2.6.12-9.18)? Please also attach contents of /etc/network/interfaces, and the output of the commands lsmod and "ifconfig -a", both on a fresh boot (without any other commands run). Currently it sems the the built-in nvidia card is eth0, please try this: ifdown eth0 rmmod forcedeth modprobe forcedeth ifup eth0 And send ifconfig eth0 output and dmesg, please. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:12:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:12:25 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050927191225.92A3C22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From kaaloo at gmail.com 2005-09-27 20:12 UTC ------- Created an attachment (id=4133) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4133&action=view) lspci -vv and lspci -vvn output Requested output from lspci -vv and lspci -vvn -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:13:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:13:31 +0100 (BST) Subject: [Bug 8246] Power indicator not working properly, (Hoary latest CD) Lifebook E7110 In-Reply-To: Message-ID: <20050927191331.D4FCC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8246 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 20:13 UTC ------- Please test with latest breezy, or Colony 5 live cd. Also, attach the output of dmesg and acpi commands. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:15:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:15:02 +0100 (BST) Subject: [Bug 8249] Fan doesn't shut down completely (Hoary latest CD) Lifebook E7110 In-Reply-To: Message-ID: <20050927191502.3A84322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8249 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |NOTABUG ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 20:15 UTC ------- Closing, since I don't think this is a bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:15:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:15:39 +0100 (BST) Subject: [Bug 16394] graphical boot broken since 2.6.12-9 In-Reply-To: Message-ID: <20050927191539.EA98122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16394 Ubuntu | linux julien at jls-info.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From julien at jls-info.com 2005-09-27 20:15 UTC ------- Everything works again with package version 2.6.12-9.18 ... Strange ! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:16:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:16:35 +0100 (BST) Subject: [Bug 8274] Oops while suspending the computer In-Reply-To: Message-ID: <20050927191635.287C922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8274 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 20:16 UTC ------- Does this occur if the firewire disk is disconnected when you sleep/resume? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:17:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:17:47 +0100 (BST) Subject: [Bug 8286] "losing ticks" message/error under moderate load In-Reply-To: Message-ID: <20050927191747.D67A122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8286 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 20:17 UTC ------- No response, closing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:18:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:18:37 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050927191837.48CF022F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-27 20:18 UTC ------- (In reply to comment #16) > I saw this problem originally on a desktop PC so PCMCIA doesn't seem to be > the problem there. [My laptop *doesn't* have this problem on breezy]. > > As for logging out of GNOME then yes, things return to normal, then slow again > when I log back in. Both useful data points, thanks. My current suspicion is that this is related to inotify; Sebastien, is there an easy way to disable it so that we can test that hypothesis? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:19:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:19:52 +0100 (BST) Subject: [Bug 8288] orinoco.c: Error -110 writing Tx descriptor to BAP In-Reply-To: Message-ID: <20050927191952.7CE2522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8288 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 20:19 UTC ------- Assuming fixed in breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:20:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:20:54 +0100 (BST) Subject: [Bug 15199] Ports on localhost doesn't work In-Reply-To: Message-ID: <20050927192054.C08BB22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-27 20:20 UTC ------- Something on your system is deconfiguring the loopback interface. Perhaps you ran "dhclient" with no arguments (bug #10174) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:21:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:21:58 +0100 (BST) Subject: [Bug 8303] installer ignores initrd error In-Reply-To: Message-ID: <20050927192158.0EB3122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8303 Ubuntu (installer) | kernel-package ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|linux |kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 20:21 UTC ------- Kicking this over to kernel-package, since it handles defaults. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:23:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:23:49 +0100 (BST) Subject: [Bug 5731] ath0 interface non-functional in installer In-Reply-To: Message-ID: <20050927192349.1DB9922F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5731 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-27 20:23 UTC ------- (In reply to comment #15) > Yes, the Colony 5 live cd is fine for testing. Yes, but be careful...if it isn't working in d-i, then the module will still be loaded later (and ath0 will appear). Check whether it gets an IP address automatically. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:30:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:30:57 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050927193057.4341322F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From arne at datafloater.de 2005-09-27 20:30 UTC ------- I had this problem also with my iBook ( it got fixed with recent kernels ). In my case it was related to CPU frequency scaling and it never occurred when I let the CPU always run on a fixed frequency. Maybe you want to try that also. Have you verified you really boot into a recent kernel ( with uname -a )? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:44:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:44:08 +0100 (BST) Subject: [Bug 16473] e100 fails to load interface after hibernation on IBM X30 laptop. In-Reply-To: Message-ID: <20050927194408.31ABA22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16473 Ubuntu (laptop) | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk Keywords| |laptop -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 19:44:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 20:44:46 +0100 (BST) Subject: [Bug 16474] Boot hang, apparently blocking on SW RAID rebuild In-Reply-To: Message-ID: <20050927194446.2C31222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16474 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com Component|kernel-package |linux ------- Additional Comments From mdz at ubuntu.com 2005-09-27 20:44 UTC ------- Can you describe the way in which the boot failed? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 20:06:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 21:06:15 +0100 (BST) Subject: [Bug 8320] pcmcia modem not working on powerbook In-Reply-To: Message-ID: <20050927200615.DCA5022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8320 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 21:06 UTC ------- Can you try with latest breezy, or Colony 5 cd? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 20:12:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 21:12:02 +0100 (BST) Subject: [Bug 8358] No sound on ThinkPad 600E In-Reply-To: Message-ID: <20050927201202.5576322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8358 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |WONTFIX ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 21:12 UTC ------- If it works, then there's not really a bug. Because it's ISA, I'm not inclined to think it wont be fixed to where it doesn't require manual parameters. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 20:17:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 21:17:45 +0100 (BST) Subject: [Bug 8411] Hibernate failure? In-Reply-To: Message-ID: <20050927201745.7F01222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8411 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 21:17 UTC ------- Can the bug submitter confirm that they tried the hoary kernel with hoary scripts, on a fresh hoary install? Atleast try Colony 5 live cd, if you can't do an upgrade to breezy. Thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 20:20:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 21:20:01 +0100 (BST) Subject: [Bug 8412] Sluggish performance unless ACPI is disabled In-Reply-To: Message-ID: <20050927202001.B481B22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8412 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 21:20 UTC ------- Can you please retest with breezy or Colony 5? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 20:48:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 21:48:44 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050927204844.2A37722F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-27 21:48 UTC ------- Created an attachment (id=4138) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4138&action=view) the good file well, it mistakes when putting the labels, here this the good file -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:08:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:08:11 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050927210811.412CA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From seb128 at ubuntu.com 2005-09-27 22:08 UTC ------- (In reply to comment #17) > Both useful data points, thanks. My current suspicion is that this is related > to inotify; Sebastien, is there an easy way to disable it so that we can test > that hypothesis? Booting with the "noinotify" option was working before hoary, I would try that. The other option is to rebuild gamin with the right configure flag to use only dnotify. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:12:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:12:02 +0100 (BST) Subject: [Bug 15070] /sbin/reboot does not hald/reboot In-Reply-To: Message-ID: <20050927211202.CF50822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15070 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-27 22:12 UTC ------- That's because I haven't uploaded it yet :) Look for 2.6.12-9.19 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:28:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:28:42 +0100 (BST) Subject: [Bug 16251] After initial Ubuntu kernel boot starts HD light remains constantly on In-Reply-To: Message-ID: <20050927212842.E116422F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16251 Ubuntu | linux ------- Additional Comments From mschering at intermesh.nl 2005-09-27 22:28 UTC ------- I have the same problem on my: ASUS P5GDC-Deluxe Board with P4 3,2 Ghz Processor 250 GB Western DIgital SATA disk All worked fine with kernel 2.6.10 but with 2.6.12 the light turns on at boot. before loading any service. I read on the forums that Hard drives are even getting hot because of this so I' m afraid to use the system now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:29:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:29:21 +0100 (BST) Subject: [Bug 16251] After initial Ubuntu kernel boot starts HD light remains constantly on In-Reply-To: Message-ID: <20050927212921.6D0C122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16251 Ubuntu | linux mschering at intermesh.nl changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mschering at intermesh.nl -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:33:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:33:44 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050927213344.49B9C22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From mdz at ubuntu.com 2005-09-27 22:33 UTC ------- (In reply to comment #16) > I saw this problem originally on a desktop PC so PCMCIA doesn't seem to be > the problem there. [My laptop *doesn't* have this problem on breezy]. What's different between your laptop and your desktop? I assume they both have ATA disks. Same kernel? Same installed software? What chipsets? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:40:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:40:14 +0100 (BST) Subject: [Bug 13831] [dapper] ltmodem doesn't build against .12 In-Reply-To: Message-ID: <20050927214014.B6ABC22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13831 Ubuntu | linux-restricted-modules ------- Additional Comments From manuel.listas at gmail.com 2005-09-27 22:40 UTC ------- Please, please do not remove this packages. Here on the 3rd world not everyone have a sdl or similar conection. And the lucent modems are one of the few choices we have on linux dial up modems. If there is anything that can do for help, please tell. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:42:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:42:25 +0100 (BST) Subject: [Bug 15362] harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050927214225.995BC22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Harddisk LED always on, |harddisk type not recognized |harddisk type not recognized|with hdparm |with hdparm | ------- Additional Comments From mdz at ubuntu.com 2005-09-27 22:42 UTC ------- Please use bug #15634 to discuss the LED problem, and this one only for the hdparm issue. I assume that on a different kernel, hdparm -i was working for you? Which one? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:43:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:43:20 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050927214320.75EB122F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Hard drive led constantly |Hard drive LED constantly |lit |lit ------- Additional Comments From mdz at ubuntu.com 2005-09-27 22:43 UTC ------- Please send lsmod output if you are experiencing this problem; is it specific to a particular driver? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 21:52:06 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 22:52:06 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050927215206.B5D43303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mschering at intermesh.nl 2005-09-27 22:52 UTC ------- Here's my lsmod. I don't know if it's driver specific. How could I find that out? root at mschering:~# lsmod Module Size Used by nls_cp437 5664 1 isofs 35960 1 udf 90820 0 rfcomm 38460 0 l2cap 24740 5 rfcomm bluetooth 48356 4 rfcomm,l2cap af_packet 21768 2 cpufreq_userspace 4316 0 cpufreq_stats 5252 0 freq_table 4388 1 cpufreq_stats cpufreq_powersave 1696 0 cpufreq_ondemand 6044 0 cpufreq_conservative 6948 0 video 15748 0 tc1100_wmi 6692 0 sony_acpi 5324 0 pcc_acpi 11104 0 hotkey 9284 0 dev_acpi 11108 0 i2c_acpi_ec 5472 0 button 6480 0 battery 9348 0 container 4384 0 ac 4708 0 ipv6 251200 17 joydev 9984 0 floppy 59124 0 pcspkr 3396 0 rtc 12344 0 usblp 12640 0 sk98lin 202616 1 ohci1394 34356 0 i2c_i801 8556 0 i2c_core 21200 2 i2c_acpi_ec,i2c_i801 tpm_nsc 6656 0 tpm 9888 1 tpm_nsc snd_hda_intel 16704 1 snd_hda_codec 80096 1 snd_hda_intel snd_pcm_oss 52704 0 snd_mixer_oss 19296 1 snd_pcm_oss snd_pcm 88840 3 snd_hda_intel,snd_hda_codec,snd_pcm_oss snd_timer 24164 1 snd_pcm snd 54884 8 snd_hda_intel,snd_hda_codec,snd_pcm_oss,snd_mixe r_oss,snd_pcm,snd_timer soundcore 9600 1 snd snd_page_alloc 10600 2 snd_hda_intel,snd_pcm shpchp 96996 0 pci_hotplug 27508 1 shpchp intel_agp 23164 1 agpgart 34792 1 intel_agp dm_mod 57692 1 evdev 9664 0 tsdev 7776 0 sr_mod 17028 0 sbp2 22952 0 ieee1394 100792 2 ohci1394,sbp2 psmouse 30116 0 mousedev 11616 1 parport_pc 35236 1 lp 12292 0 parport 35912 2 parport_pc,lp ide_disk 18464 0 md 45584 0 ext3 136264 1 jbd 54776 1 ext3 mbcache 9252 1 ext3 vga16fb 12584 1 vgastate 9664 1 vga16fb thermal 13000 0 processor 22812 1 thermal fan 4484 0 usbhid 35264 0 ehci_hcd 34248 0 uhci_hcd 31184 0 usbcore 117884 5 usblp,usbhid,ehci_hcd,uhci_hcd sd_mod 19120 3 ide_cd 41572 1 cdrom 39616 2 sr_mod,ide_cd ide_generic 1376 0 ata_piix 10052 0 ahci 11716 4 libata 50436 2 ata_piix,ahci scsi_mod 136296 5 sr_mod,sbp2,sd_mod,ahci,libata piix 10372 1 ide_core 138772 4 ide_disk,ide_cd,ide_generic,piix unix 26896 816 fbcon 38496 72 tileblit 2368 1 fbcon font 8224 1 fbcon bitblit 5632 1 fbcon vesafb 7992 0 cfbcopyarea 4608 2 vga16fb,vesafb cfbimgblt 2944 2 vga16fb,vesafb cfbfillrect 3872 2 vga16fb,vesafb softcursor 2272 2 vga16fb,vesafb capability 4712 0 commoncap 6816 1 capability root at mschering:~# -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 22:03:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 23:03:14 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050927220314.CDB2122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mschering at intermesh.nl 2005-09-27 23:03 UTC ------- Another thing when I try to do some things with hdparm I get on all options: root at mschering:~# hdparm -i /dev/sda1 /dev/sda1: HDIO_GET_IDENTITY failed: Inappropriate ioctl for device Maybe this can be of help. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 22:21:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 23:21:57 +0100 (BST) Subject: [Bug 8140] Ubuntu's kernels wont boot without acpi=off In-Reply-To: Message-ID: <20050927222157.ABF3122F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8140 Ubuntu | linux ------- Additional Comments From typo at netcabo.pt 2005-09-27 23:21 UTC ------- The colony 5 CD has the exact same problem. I am now running breezy so you can ask me to test with the kernels there. So far they're all the same. If you want, tell me how I can compile the same kernel Ubuntu does but leaving out any patches that might be creating this so that the problem can be isolated. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 22:58:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Tue, 27 Sep 2005 23:58:08 +0100 (BST) Subject: [Bug 15858] Logitech Quickcam Messenger is not usable In-Reply-To: Message-ID: <20050927225808.A68B622F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15858 Ubuntu | linux ------- Additional Comments From fraser.hanson at gmail.com 2005-09-27 23:58 UTC ------- (In reply to comment #1) Thanks for looking into this, Matt. I agree, it's not supported by this same module. Apparently the link I posted was to another kernel module that is also called quickcam.ko, but it is not the official kernel one. BTW, I have gotten this hardware working using the module at http://home.mag.cx/messenger/. It required a little bit of work: 1. Edit the quickcam.sh script to accept ID 046d:08f0 as a valid device 2. Apply this patch: --- qc-usb-messenger-0.8/qc-memory.c-old 2005-02-24 19:40:37.000000000 -0500 +++ qc-usb-messenger-0.8/qc-memory.c 2005-02-24 19:41:12.000000000 -0500 @@ -233,7 +233,11 @@ pos = (unsigned long)src; while ((long)size > 0) { physaddr = kvirt_to_pa(pos); - if (remap_page_range(vma, start, physaddr, PAGE_SIZE, PAGE_SHARED)) + if (remap_pfn_range(vma, + start, + physaddr >> PAGE_SHIFT, + PAGE_SIZE, + PAGE_SHARED)) return -EAGAIN; start += PAGE_SIZE; pos += PAGE_SIZE; The resulting quickcam.ko module works fine with this camera. I suppose this is not Ubuntu's problem though, I guess you'll probably just wait for it to be supported in the official kernel source. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:00:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:00:45 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050927230045.D8715303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN col at baibell.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |col at baibell.org -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:12:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:12:43 +0100 (BST) Subject: [Bug 8287] Corrupt NTFS filesystem after resize In-Reply-To: Message-ID: <20050927231243.2B11F22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8287 Ubuntu (installer) | ntfstools-udeb ------- Additional Comments From magnus at thinkware.se 2005-09-28 00:12 UTC ------- (In reply to comment #32) > Magnus, if you have any additional information, please post it here. Nope, and I recently reinstalled XP (in a space I don't need to resize) and wiped the rest of the disk planing to put Ubuntu 05.10 there when it pops up. (I didn't use the laptop much lately). I'm really greatful for the efforts that you've all made with this and the rest of ubuntu, as well as with ntfstools. While I think it's critical that installing Ubuntu doesn't destroy Windows like this, it certainly seems like a fairy small problem in real life if it just happened once. If it was up to me, I'd probably upgrade ntfstools and close this bug report, but I realize that you're close to a release and that any change implies work and risks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:17:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:17:51 +0100 (BST) Subject: [Bug 16371] RTL-8319 not working (in what way?) In-Reply-To: Message-ID: <20050927231751.6748D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:17 UTC ------- Ok, this is the part I was looking at: de00-deff : 0000:00:0c.0 de00-de03 : motherboard de00-de03 : pnp 00:00 That first memory range (de00-deff) is the I/O memory reserved for the 8139 device, and it is the showing the right PCI ID. However, the first 4 bytes are actually being used by motherboard/pnp? Not sure why that is. Can you send me /proc/ioports from 2.6.10 please? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:19:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:19:58 +0100 (BST) Subject: [Bug 16371] RTL-8139 cannot get I/O memory under 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050927231958.816BA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|RTL-8319 not working (in |RTL-8139 cannot get I/O |what way?) |memory under 2.6.12 | |(regression from 2.6.10) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:22:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:22:53 +0100 (BST) Subject: [Bug 16371] RTL-8139 cannot get I/O memory under 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050927232253.CBA0E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:22 UTC ------- Try booting with noisapnp option, please. Looking back at the dmesg, PNP surely reserves this area, which it shouldn't. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:27:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:27:14 +0100 (BST) Subject: [Bug 11617] Ubuntu (Breezy) freezes after wireless config change (ndiswrapper) In-Reply-To: Message-ID: <20050927232714.858EB22F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11617 Ubuntu | linux ------- Additional Comments From seth at sethkinast.com 2005-09-28 00:27 UTC ------- This may be a related bug, not sure. Using ndiswrapper with Broadcom drivers. In the last couple weeks I've noticed that sometimes my wireless connection will spontaneously drop. It still appears to be connected but nothing gets through. If I issue "sudo ifdown wlan0 && sudo ifup wlan0", the VERY next thing I try to do that uses the network, my systems locks. This happens both in X and in console, and if I try it in console Alt+SysRq+T dumps nothing to console. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:27:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:27:29 +0100 (BST) Subject: [Bug 16371] RTL-8139 cannot get I/O memory under 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050927232729.C3EB522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-28 00:27 UTC ------- I have a problem, even says "permission denied" like root... If I execute with "sh /proc/ioports" I obtain the following thing root at sauron:/home/jose # sh /proc/ioports /proc/ioports: line 1: 0000-001f: command not found /proc/ioports: line 2: 0020-0021: command not found /proc/ioports: line 3: 0040-0043: command not found /proc/ioports: line 4: 0050-0053: command not found /proc/ioports: line 5: 0060-006f: command not found /proc/ioports: line 6: 0070-0077: command not found /proc/ioports: line 7: 0080-008f: command not found /proc/ioports: line 8: 00a0-00a1: command not found /proc/ioports: line 9: 00c0-00df: command not found /proc/ioports: line 10: 00f0-00ff: command not found /proc/ioports: line 11: 0170-0177: command not found /proc/ioports: line 12: 01f0-01f7: command not found /proc/ioports: line 13: 02f8-02ff: command not found /proc/ioports: line 14: 0376-0376: command not found /proc/ioports: line 15: 0378-037a: command not found /proc/ioports: line 16: 037b-037f: command not found /proc/ioports: line 17: 03c0-03df: command not found /proc/ioports: line 18: 03f6-03f6: command not found /proc/ioports: line 19: 03f8-03ff: command not found /proc/ioports: line 20: 0778-077a: command not found /proc/ioports: line 21: 0cf8-0cff: command not found /proc/ioports: line 22: 5000-507f: command not found /proc/ioports: line 23: 5000-5003: command not found /proc/ioports: line 24: 5004-5005: command not found /proc/ioports: line 25: 5008-500b: command not found /proc/ioports: line 26: 5010-5015: command not found /proc/ioports: line 27: 5020-5023: command not found /proc/ioports: line 28: 5080-50ff: command not found /proc/ioports: line 29: 50e0-50ef: command not found /proc/ioports: line 30: c000-cfff: command not found /proc/ioports: line 31: da00-da03: command not found /proc/ioports: line 32: da00-da00: command not found /proc/ioports: line 33: dc00-dc3f: command not found /proc/ioports: line 34: dc00-dc3f: command not found /proc/ioports: line 35: de00-deff: command not found /proc/ioports: line 36: de00-deff: command not found /proc/ioports: line 37: f000-f00f: command not found /proc/ioports: line 38: f000-f007: command not found /proc/ioports: line 39: f008-f00f: command not found root at sauron:/home/jose # this is not good, right? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:31:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:31:28 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050927233128.E834122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:31 UTC ------- Can you send me the output of dmesg too? Does the 8139 device work? If so, I need to change this bug title. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:33:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:33:31 +0100 (BST) Subject: [Bug 16394] graphical boot broken since 2.6.12-9 In-Reply-To: Message-ID: <20050927233331.D918922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16394 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:33 UTC ------- Very strange because nothing between -8 and -9 changed anywhere in the video code :) Please reopen if problems crop up. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:33:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:33:46 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050927233346.B6A1222F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From kleeman at cims.nyu.edu 2005-09-28 00:33 UTC ------- Works now with my Yukon II card and the 2.6.12-9.18 kernel. Thanks Ben! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:46:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:46:19 +0100 (BST) Subject: [Bug 16454] snd-powermac does not support new iBooks In-Reply-To: Message-ID: <20050927234619.A530A22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16454 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:46 UTC ------- I'll include this patch in the next kernel upload. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:51:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:51:16 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050927235116.D2CAA22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:51 UTC ------- Fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:53:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:53:09 +0100 (BST) Subject: [Bug 13370] [Breezy|Hoary] Dell D610 (and other models) freezes at least once a day In-Reply-To: Message-ID: <20050927235309.45E9E22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13370 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:53 UTC ------- Fixed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:53:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:53:39 +0100 (BST) Subject: [Bug 13826] linux-source-2.6.12 FTBFS with custom config In-Reply-To: Message-ID: <20050927235339.BCC0D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13826 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:53 UTC ------- Fixed -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:54:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:54:18 +0100 (BST) Subject: [Bug 13927] [Colony #3] No sound on Audigy In-Reply-To: Message-ID: <20050927235418.BBFB222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13927 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:54 UTC ------- Fixed -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:54:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:54:52 +0100 (BST) Subject: [Bug 14103] prism2_usb crash In-Reply-To: Message-ID: <20050927235452.EEF1922F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14103 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:54 UTC ------- Fixed -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:55:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:55:28 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050927235528.1F98022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:55 UTC ------- Fixed in 2.6.12-9.18 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:55:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:55:58 +0100 (BST) Subject: [Bug 14964] Logitech QuickCam 4000 Pro is not supported In-Reply-To: Message-ID: <20050927235558.84B4822F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14964 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:55 UTC ------- Fixed -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:56:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:56:46 +0100 (BST) Subject: [Bug 15184] Powerbook special keys not working on newer powerbooks In-Reply-To: Message-ID: <20050927235646.5AF4422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15184 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:56 UTC ------- Fixed everything on my end. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:57:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:57:07 +0100 (BST) Subject: [Bug 15299] sk98lin is not in the kernel anymore In-Reply-To: Message-ID: <20050927235707.56B8222F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15299 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:57 UTC ------- Fixed in 2.6.12-9.18 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:58:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:58:14 +0100 (BST) Subject: [Bug 15849] SMC9452TX (Marvel Yukon - driver sk98 and skge) In-Reply-To: Message-ID: <20050927235814.24C8C22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15849 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:58 UTC ------- Fixed in 2.6.12-9.18. THat is, sk98lin is back in for cards not supported by skge. Anyone experiencing problems with skge driver, should open a new bug report. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:58:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:58:56 +0100 (BST) Subject: [Bug 15854] Hang loading driver for Marvell Yukon 88E8036 In-Reply-To: Message-ID: <20050927235856.BDCEC22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15854 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:58 UTC ------- Fixed in 2.6.12-9.18. Please test that kernel version. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:59:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:59:18 +0100 (BST) Subject: [Bug 16235] amd64 ndiswrapper module fails to load In-Reply-To: Message-ID: <20050927235918.713C322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16235 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:59 UTC ------- Fixed in 2.6.12-9.18 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:59:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:59:27 +0100 (BST) Subject: [Bug 16371] RTL-8139 cannot get I/O memory under 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050927235927.9742F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-28 00:59 UTC ------- Created an attachment (id=4141) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4141&action=view) dmesg output whit noisapnp Wiht "noisapnp" it follows without working. The dmesg output is in archive. I feel it, tomorrow I must go to me was days, return the next Monday, I will not be able to continue sending information until then. A greeting and thank you very much. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Tue Sep 27 23:59:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 00:59:47 +0100 (BST) Subject: [Bug 16298] Marvell 88E8053 isn't recognized In-Reply-To: Message-ID: <20050927235947.0AEAD22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16298 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|PENDINGUPLOAD |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 00:59 UTC ------- Fixed in 2.6.12-9.18 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:09:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:09:33 +0100 (BST) Subject: [Bug 16371] RTL-8139 cannot get I/O memory under 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050928000933.55FA722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:09 UTC ------- Please use cat, not sh, in order to get /proc/ioports. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:09:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:09:53 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050928000953.0242B22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mark-ubuntu-vaio-laptop- | |testing- | |bugzilla at mousepushers.com ------- Additional Comments From mdz at ubuntu.com 2005-09-28 01:09 UTC ------- *** Bug 16251 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:13:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:13:13 +0100 (BST) Subject: [Bug 16371] ISAPNP grabbing I/O region reserved for PCI device on 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050928001313.BE6C522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|RTL-8139 cannot get I/O |ISAPNP grabbing I/O region |memory under 2.6.12 |reserved for PCI device on |(regression from 2.6.10) |2.6.12 (regression from | |2.6.10) ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:13 UTC ------- Please also send me the dmesg from 2.6.10 aswell. Thanks for getting me all this info. Hopefully we will get a fix soon. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:16:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:16:57 +0100 (BST) Subject: [Bug 16371] ISAPNP grabbing I/O region reserved for PCI device on 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050928001657.242E322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-28 01:16 UTC ------- Created an attachment (id=4142) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4142&action=view) ioports 2.6.10 well, this is the output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:27:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:27:11 +0100 (BST) Subject: [Bug 8427] k3b locked up my ubuntu hoary totally when UDF DVD+RW is in the drive In-Reply-To: Message-ID: <20050928002711.455BF22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8427 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:27 UTC ------- Closing due to no response. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:27:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:27:57 +0100 (BST) Subject: [Bug 16371] ISAPNP grabbing I/O region reserved for PCI device on 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050928002757.9BA7522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From fourier21 at gmail.com 2005-09-28 01:27 UTC ------- Created an attachment (id=4143) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4143&action=view) dmesg of 2.6.10 thanks to you for your dedication, I hope that it is not thus (because already you have fixed it :) ), but if Monday you need more information, you do not doubt in sending a message to me. A greeting and luck -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:42:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:42:36 +0100 (BST) Subject: [Bug 16371] ISAPNP grabbing I/O region reserved for PCI device on 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050928004236.EE32422F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | kernel-package ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:42 UTC ------- Since noisapnp alone didn't do it, try all these options together: noisapnp pnpacpi=off If that doesn't work, also try: noisapnp pnpacpi=off pnpbios=off Send dmesg for each of those boots (working or not). Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:50:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:50:49 +0100 (BST) Subject: [Bug 8477] Blank Screen on IBM600X Laptop In-Reply-To: Message-ID: <20050928005049.6715522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8477 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:50 UTC ------- Any updates on this, especially with regards to breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:52:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:52:26 +0100 (BST) Subject: [Bug 8482] Kernel crashed at boot time with serial modem In-Reply-To: Message-ID: <20050928005226.3809522F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8482 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:52 UTC ------- What were the results of the tests? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:52:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:52:55 +0100 (BST) Subject: [Bug 8636] serial8250 error message during install In-Reply-To: Message-ID: <20050928005255.463D722F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8636 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:52 UTC ------- Assuming fixed in breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:55:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:55:12 +0100 (BST) Subject: [Bug 16348] insmoding fcpci module causes kernel panic when 2 fcpci cards installed In-Reply-To: Message-ID: <20050928005512.9BEDE22F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16348 Ubuntu | linux-restricted-modules ------- Additional Comments From woody+ubuntu at solutionsfirst.com.au 2005-09-28 01:55 UTC ------- I received a reply (below) I have asked them if there is a work-around since my country (Australia) has not approved the B1, C2, or C4 controllers to my knowledge. Ticket-ID CID648770 Dear Mr Wood, that is true and not really a bug. This is among the reasons why it is not possible to use more than one passive ISDN controller per system. If more than one ISDN line shall be used, it is necessary to use active isdn controllers such as the AVM B1, C2 or C4 controllers. Yours sincerly DXXX HXXXXX (AVM Support) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:55:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:55:37 +0100 (BST) Subject: [Bug 8648] Periodic system freeze In-Reply-To: Message-ID: <20050928005537.6B65D22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8648 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:55 UTC ------- No response from submitter. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:55:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:55:49 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050928005549.A5A2022F4010@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From tillm at optushome.com.au 2005-09-28 01:55 UTC ------- Here's my lsmod output Module Size Used by ipv6 263968 8 binfmt_misc 12456 1 rfcomm 40600 0 l2cap 27840 5 rfcomm bluetooth 51364 4 rfcomm,l2cap speedstep_lib 4548 0 cpufreq_userspace 6208 0 cpufreq_stats 6080 0 freq_table 4736 1 cpufreq_stats cpufreq_powersave 1920 0 cpufreq_ondemand 7208 0 cpufreq_conservative 8140 0 nvidia 3713448 12 agpgart 35436 1 nvidia video 16004 0 tc1100_wmi 6916 0 sony_acpi 5548 0 pcc_acpi 11360 0 hotkey 9508 0 dev_acpi 11396 0 i2c_acpi_ec 5696 0 button 6704 0 battery 9572 0 container 4608 0 ac 4932 0 af_packet 23656 2 tsdev 8000 0 floppy 60564 0 pcspkr 3880 0 rtc 13672 0 ohci1394 35252 0 i2c_i801 8844 0 i2c_core 21760 2 i2c_acpi_ec,i2c_i801 tpm_nsc 6912 0 tpm 10464 1 tpm_nsc snd_hda_intel 17856 1 snd_hda_codec 80448 1 snd_hda_intel snd_pcm_oss 53760 0 snd_mixer_oss 19584 1 snd_pcm_oss snd_pcm 92900 3 snd_hda_intel,snd_hda_codec,snd_pcm_oss snd_timer 25956 1 snd_pcm snd 57764 8 snd_hda_intel,snd_hda_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_timer soundcore 10176 1 snd snd_page_alloc 10824 2 snd_hda_intel,snd_pcm shpchp 97860 0 pci_hotplug 28412 1 shpchp dm_mod 59232 1 evdev 9920 0 sr_mod 17476 0 sbp2 23624 0 ieee1394 103128 2 ohci1394,sbp2 psmouse 30628 0 mousedev 12132 1 parport_pc 36356 1 lp 12548 0 parport 37384 2 parport_pc,lp md 47536 0 ext3 138824 1 jbd 59768 1 ext3 mbcache 10116 1 ext3 vga16fb 12840 1 vgastate 9888 1 vga16fb thermal 13320 0 processor 23816 1 thermal fan 4708 0 usbhid 36096 0 8139too 27264 0 mii 5920 1 8139too uhci_hcd 32720 0 usbcore 121180 3 usbhid,uhci_hcd sd_mod 19680 4 ide_cd 42148 0 cdrom 40096 2 sr_mod,ide_cd ide_generic 1600 0 ata_piix 10308 0 ahci 12164 6 libata 51140 2 ata_piix,ahci scsi_mod 138472 5 sr_mod,sbp2,sd_mod,ahci,libata piix 10980 1 ide_core 140628 3 ide_cd,ide_generic,piix unix 29392 610 fbcon 38880 72 tileblit 2592 1 fbcon font 8448 1 fbcon bitblit 5856 1 fbcon vesafb 8216 0 cfbcopyarea 4832 2 vga16fb,vesafb cfbimgblt 3168 2 vga16fb,vesafb cfbfillrect 4096 2 vga16fb,vesafb softcursor 2496 2 vga16fb,vesafb capability 4936 0 commoncap 7040 1 capability I noticed some updates to hdparm this morning and some quoting it fixed the problem for them, but not for me I'm affraid to say :( -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:57:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:57:37 +0100 (BST) Subject: [Bug 8713] Installation Freeze when trying to accesses Repositories In-Reply-To: Message-ID: <20050928005737.9E81122F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8713 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:57 UTC ------- No response from submitter. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 00:58:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 01:58:48 +0100 (BST) Subject: [Bug 8739] spurious keyboard messages in syslog with multimedia keyboard In-Reply-To: Message-ID: <20050928005848.DA04F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8739 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 01:58 UTC ------- This is supposedly fixed in breezy kernels. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 01:03:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 02:03:21 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050928010321.8FD8322F4026@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 02:03 UTC ------- So far you're both using the ide_generic driver. Please send lspci output as well. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 01:08:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 02:08:08 +0100 (BST) Subject: [Bug 8745] ov511 webcam does not work In-Reply-To: Message-ID: <20050928010808.1249322F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8745 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 02:08 UTC ------- Camera should work if you disable compression (modprobe ov511 compress=0). The ov511_decomp isn't included in the kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 01:24:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 02:24:56 +0100 (BST) Subject: [Bug 8813] 2.6.10 kernel module hang on Gateway GP7-450 In-Reply-To: Message-ID: <20050928012456.1337F22F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8813 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 02:24 UTC ------- I'll consider this fixed, unless the submitter wants to reopen it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 01:31:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 02:31:53 +0100 (BST) Subject: [Bug 8852] Audio device supported by snd_es18xx in Warty, not in Hoary In-Reply-To: Message-ID: <20050928013153.2F57622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8852 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 02:31 UTC ------- Driver works, although requires manual params (ISA). Closing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 01:33:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 02:33:30 +0100 (BST) Subject: [Bug 8866] 3Com/USR hardware modem causes PPC kernel panic In-Reply-To: Message-ID: <20050928013330.E785622F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8866 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 02:33 UTC ------- Can this bug be comfirmed with breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 01:34:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 02:34:13 +0100 (BST) Subject: [Bug 8907] Shutdown fails to power off Tyan S2460-based system In-Reply-To: Message-ID: <20050928013413.7C2F022F4011@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8907 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 02:34 UTC ------- Retest against breezy, please. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 02:06:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 03:06:47 +0100 (BST) Subject: [Bug 9113] Ubuntu freezes on PowerBook In-Reply-To: Message-ID: <20050928020647.EB15B303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=9113 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 03:06 UTC ------- Can you test against latest breezy or COlony 5 cd? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 02:32:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 03:32:11 +0100 (BST) Subject: [Bug 14741] Hibernate doesn't work on Dell Latitude D410 (Colony 4) In-Reply-To: Message-ID: <20050928023211.6E987303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14741 Ubuntu | linux panickedthumb at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED ------- Additional Comments From panickedthumb at gmail.com 2005-09-28 03:32 UTC ------- about one out of every 20 times I try this (tried it I guess 40 times, I'm that dedicated) it will hibernate and immediately resume. I imagine that's some weird hardware quirk. But it does work now. Sorry, I thought I had posted this already, but apparently not. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 02:57:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 03:57:42 +0100 (BST) Subject: [Bug 13831] [dapper] ltmodem doesn't build against .12 In-Reply-To: Message-ID: <20050928025742.0E2BC303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13831 Ubuntu | linux-restricted-modules ------- Additional Comments From adconrad at ubuntu.com 2005-09-28 03:57 UTC ------- (In reply to comment #3) > If there is anything that can do for help, please tell. Well, the most obviously helpful thing you could do is provide patches to the ltmodem source to make it build against the linux 2.6.12 headers in Ubuntu. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 04:01:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 05:01:47 +0100 (BST) Subject: [Bug 16508] New: do_initrd message fails in noninteractive install Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16508 Ubuntu | kernel-package Summary: do_initrd message fails in noninteractive install Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: major Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: debzilla at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com Automatically imported from Debian bug report #330445 http://bugs.debian.org/330445 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 04:41:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 05:41:09 +0100 (BST) Subject: [Bug 16252] acpi does *NOT* recognize if laptop is unplugged or not. [Hoary] In-Reply-To: Message-ID: <20050928044109.65204303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16252 Ubuntu | linux ------- Additional Comments From ajvehrs at yahoo.com 2005-09-28 05:41 UTC ------- ACPI on the Breezy LiveCD (http://cdimage.ubuntu.com/daily-live/current/) knows whether it is plugged or not. However, it does NOT update the info (Battery Charge Monitor Gnome applet) at all. The light on HP ze5185 was blinking as a low-batt warning. So, I plugged the AC back. Also, when I typed "apci -V" in the terminal and the info "refuses" to be updated! Same goes for charging info. No change. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 04:42:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 05:42:50 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050928044250.428F8303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux thomas.dorr at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |thomas.dorr at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:16:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:16:35 +0100 (BST) Subject: [Bug 16508] do_initrd message fails in noninteractive install In-Reply-To: Message-ID: <20050928051635.367B1303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16508 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:16 UTC ------- Message-ID: <20050928042451.GA4552 at localhost.localdomain> Date: Wed, 28 Sep 2005 06:24:51 +0200 From: Sven Luther To: Ryan Murray , 330445 at bugs.debian.org Subject: Re: Bug#330445: do_initrd message fails in noninteractive install reassign 330445 kernel-package thanks On Tue, Sep 27, 2005 at 08:22:38PM -0700, Ryan Murray wrote: > Package: linux-image-2.6.12-1-powerpc,linux-kernel-di-powerpc-2.6,kernel-package > Severity: serious > > The problem: > * linux-kernel-di-powerpc-2.6 build-depends on kernel images. > * build daemons install packages in noninteractive mode > * the kernel images do not install successfully in noninteractive mode: This is not a linux kernel package, but exclusively a kernel-package issue, which provides the postinst and co scripts, and needs to be made debconf aware. Manoj promised some rewrite, modularization and debconfification for post-sarge, but i don't know what the current planes are for this. Friendly, Sven Luther -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:32:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:32:15 +0100 (BST) Subject: [Bug 16508] do_initrd message fails in noninteractive install In-Reply-To: Message-ID: <20050928053215.C5F18303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16508 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:32 UTC ------- Message-ID: <87slvpokt8.fsf at glaurung.internal.golden-gryphon.com> Date: Tue, 27 Sep 2005 23:52:51 -0500 From: Manoj Srivastava To: Ryan Murray Cc: 330445 at bugs.debian.org, control at bugs.debian.org Subject: Re: Bug#330445: do_initrd message fails in noninteractive install severity 330445 normal merge 330445 115884 thanks Hi, This is not really a serious bug: ,----[ Policy document ] | 6.3. Controlling terminal for maintainer scripts | ------------------------------------------------ | | The maintainer scripts are guaranteed to run with a controlling | terminal and can interact with the user. If they need to prompt for | passwords, do full-screen interaction or something similar you should | do these things to and from `/dev/tty', since `dpkg' will at some | point redirect scripts' standard input and output so that it can log | the installation process. Likewise, because these scripts may be | executed with standard output redirected into a pipe for logging | purposes, Perl scripts should set unbuffered output by setting `$|=1' | so that the output is printed immediately rather than being buffered. `---- The fact that kernel-package does not have these image packages use debconf is a bug (a normal bug, so far), and I am thus merging this report with the other "use debconf" reports. manoj -- Pohl's law: Nothing is so good that somebody, somewhere, will not hate it. Manoj Srivastava 1024D/BF24424C print 4966 F272 D093 B493 410B 924B 21BA DABB BF24 424C -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:31 +0100 (BST) Subject: [Bug 16513] does not install non-interactively In-Reply-To: Message-ID: <20050928054531.97FC5303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16513 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <20040506202554.GA12557 at catalunya> Date: Thu, 6 May 2004 13:25:54 -0700 From: Matt Kraai To: submit at bugs.debian.org Subject: does not install non-interactively Package: kernel-image-2.6.5-1-386 Version: 2.6.5-4 Severity: serious pbuilder cannot install kernel-image-2.6.5-1-386: ... (Reading database ... 11351 files and directories currently installed.) Unpacking kernel-image-2.6.5-1-386 (from .../kernel-image-2.6.5-1-386_2.6.5-1_i386.deb) ... You are attempting to install an initrd kernel image (version 2.6.5-1-386) This will not work unless you have configured your boot loader to use initrd. (An initrd image is a kernel image that expects to use an INITial Ram Disk to mount a minimal root file system into RAM and use that for booting). As a reminder, in order to configure LILO, you need to add an 'initrd=/initrd.img' to the image=/vmlinuz stanza of your /etc/lilo.conf I repeat, You need to configure your boot loader -- please read your bootloader documentation for details on how to add initrd images. If you have already done so, and you wish to get rid of this message, please put `do_initrd = Yes' in /etc/kernel-img.conf. Note that this is optional, but if you do not, you'll continue to see this message whenever you install a kernel image using initrd. Do you want to stop now? [Y/n]Ok, Aborting dpkg: error processing /var/cache/apt/archives/kernel-image-2.6.5-1-386_2.6.5-1_i386.deb (--unpack): subprocess pre-installation script returned error exit status 1 Errors were encountered while processing: /var/cache/apt/archives/kernel-image-2.6.5-1-386_2.6.5-1_i386.deb E: Sub-process /usr/bin/dpkg returned an error code (1) E: Unrecoverable error installing build-dependencies. E: pbuilder-satisfydepends failed. ... This is a serious bug because it prevents linux-kernel-di-i386-2.6 from building. -- Matt Kraai kraai at ftbfs.org http://ftbfs.org/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:10 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928054510.1EA08303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <20011017002509.B948 at aragorn> Date: Wed, 17 Oct 2001 00:25:09 +0200 From: Robert Millan To: submit at bugs.debian.org Subject: using debconf Package: kernel-package Severity: wishlist The kernel-* packages generated by make-kpkg ask (or may ask) some questions to the user through standard output. Could you set kernel-* packages to use the debconf interface? I'm planning to develop a gtk frontend to make-kpkg (to install the kernel-* packages also) and it wouldn't work without using the GNOME debconf frontend on those packages (otherwise output would be lost on stdout) Thanks, -- -------------------------------------------------- Robert Millan Debian GNU/Hurd user zeratul2 wanadoo es http://getyouriso.dyndns.org/ -------------------------------------------------- GPG ID C8D6942C 237F 8688 C2E5 BC64 E152 97B4 FB28 D41B C8D6 942C -------------------------------------------------- Some words for my friends Carnivore and Echelon -------------------------------------------------- FBI CIA NSA Assault Bomb Terrorism Jihad Allah Ossama Bin Laden Saddam Hussein Handgun Assault Plane Crash Pentagon World Trade Center Whitehouse President Bush Putin Twin Towers Air Force One USA America DeCCS RIAA BSA piracy illegal drugs heroin Big Brother is watching you defcon nuclear holocaust world war arabian afghanistan cryptography PGP GPG crack RSA algorithm Chechnya OMON Spetsnaz T-72 Merkava M1A1 Abrams Chieftain Challenger Turret Apache Missiles Skinheads troopers Kazakhstan Muhhamed Atta ----------------------------------------------------------- Put this in your signature and join us in confusing the Big Brother -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:12 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928054512.839B3303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <87n0e4424z.fsf at glaurung.green-gryphon.com> Date: Wed, 20 Aug 2003 13:25:48 -0500 From: Manoj Srivastava To: control at bugs.debian.org Subject: Adding tags tags 192016 + help tags 174608 + help tags 193736 + help tags 200823 + help tags 205035 + help tags 115884 + help tags 148550 + help tags 154129 + help tags 176288 + help tags 193229 + help tags 203542 + help tags 188872 + help tags 4073 + help tags 59311 + help tags 81656 + help tags 107624 + help tags 117566 + help tags 128114 + help tags 157730 + help tags 170910 + help tags 197764 + help tags 189782 + help tags 192109 + help tags 27697 + help tags 43171 + help tags 164165 + help tags 176639 + help -- What sin has not been committed in the name of efficiency? Manoj Srivastava 1024R/C7261095 print CB D9 F4 12 68 07 E4 05 CC 2D 27 12 1D F5 E8 6E 1024D/BF24424C print 4966 F272 D093 B493 410B 924B 21BA DABB BF24 424C -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:33 +0100 (BST) Subject: [Bug 16513] does not install non-interactively In-Reply-To: Message-ID: <20050928054533.54B1E303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16513 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <87slvpokt8.fsf at glaurung.internal.golden-gryphon.com> Date: Tue, 27 Sep 2005 23:52:51 -0500 From: Manoj Srivastava To: Ryan Murray Cc: 330445 at bugs.debian.org, control at bugs.debian.org Subject: Re: Bug#330445: do_initrd message fails in noninteractive install severity 330445 normal merge 330445 115884 thanks Hi, This is not really a serious bug: ,----[ Policy document ] | 6.3. Controlling terminal for maintainer scripts | ------------------------------------------------ | | The maintainer scripts are guaranteed to run with a controlling | terminal and can interact with the user. If they need to prompt for | passwords, do full-screen interaction or something similar you should | do these things to and from `/dev/tty', since `dpkg' will at some | point redirect scripts' standard input and output so that it can log | the installation process. Likewise, because these scripts may be | executed with standard output redirected into a pipe for logging | purposes, Perl scripts should set unbuffered output by setting `$|=1' | so that the output is printed immediately rather than being buffered. `---- The fact that kernel-package does not have these image packages use debconf is a bug (a normal bug, so far), and I am thus merging this report with the other "use debconf" reports. manoj -- Pohl's law: Nothing is so good that somebody, somewhere, will not hate it. Manoj Srivastava 1024D/BF24424C print 4966 F272 D093 B493 410B 924B 21BA DABB BF24 424C -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:14 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928054514.732E8303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <20030826152932.GF685 at aragorn> Date: Tue, 26 Aug 2003 15:29:32 +0000 From: Robert Millan To: 115884 at bugs.debian.org Subject: Re: Bug#115884 acknowledged by developer (kernel-package: debconf should prompt for /etc/kernel-pkg.conf maintainer info) On Mon, Aug 25, 2003 at 09:03:18PM -0500, Debian Bug Tracking System wrote: > > Hi, > > On reflection, this is not a good idea. We already have too > many questions being asked at install time, even at low priority; and > this value needs not be set for any functionality of the package or > the resultant kernel image. > > As you said, the config file is not hard to modify. I am > closing this report. ok. -- Robert Millan "[..] but the delight and pride of Aule is in the deed of making, and in the thing made, and neither in possession nor in his own mastery; wherefore he gives and hoards not, and is free from care, passing ever on to some new work." -- J.R.R.T, Ainulindale (Silmarillion) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:08 +0100 (BST) Subject: [Bug 16512] New: using debconf Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package Summary: using debconf Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: major Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: debzilla at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com Automatically imported from Debian bug report #115884 http://bugs.debian.org/115884 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:10 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928054510.D2EF9303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <87g07vvk5o.fsf at glaurung.green-gryphon.com> Date: Sat, 03 Nov 2001 11:28:19 -0600 From: Manoj Srivastava To: Robert Millan Cc: 115884 at bugs.debian.org Subject: Re: Bug#115884: using debconf Hi, Well, using debconf is a goal for all my packages, but I haven't gotten around to spending the time required to grok debconf. Since there is a freeze impending, I do not want to enter into a new phase of instability with all my packages; but this shall come to the top of the list post-woody. manoj -- War is delightful to those who have had no experience of it. Desiderius Erasmus Manoj Srivastava 1024R/C7261095 print CB D9 F4 12 68 07 E4 05 CC 2D 27 12 1D F5 E8 6E 1024D/BF24424C print 4966 F272 D093 B493 410B 924B 21BA DABB BF24 424C -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:11 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928054511.9903D303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <87vgaaiq1o.fsf at glaurung.green-gryphon.com> Date: Mon, 29 Apr 2002 08:37:39 -0500 From: Manoj Srivastava To: control at bugs.debian.org Subject: Re: Bug#144982: kernel-package: debconf should prompt for /etc/kernel-pkg.conf maintainer info merge 144982 115884 thanks Hi, kernel-package does not yet use debconf. manoj -- "Calling J-Man Kink. Calling J-Man Kink. Hash missile sighted, target Los Angeles. Disregard personal feelings about city and intercept." The Firesign Theatre movie, _J-Men Forever_ Manoj Srivastava 1024R/C7261095 print CB D9 F4 12 68 07 E4 05 CC 2D 27 12 1D F5 E8 6E 1024D/BF24424C print 4966 F272 D093 B493 410B 924B 21BA DABB BF24 424C -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:20 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928054520.7F69E303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <20050928051039.GO17585 at cyberhqz.com> Date: Tue, 27 Sep 2005 22:10:39 -0700 From: Ryan Murray To: 330445 at bugs.debian.org, control at bugs.debian.org Subject: Re: Bug#330445: do_initrd message fails in noninteractive install --jllsgs4PL/sXFNaa Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable severity 330445 serious thanks > The fact that kernel-package does not have these image > packages use debconf is a bug (a normal bug, so far), and I am thus > merging this report with the other "use debconf" reports. http://release.debian.org/etch_rc_policy.txt Point 4, Autobuilding. This bug is causing the di kernel images to FTBFS. > This is not really a serious bug: > ,----[ Policy document ] > | 6.3. Controlling terminal for maintainer scripts > | ------------------------------------------------ > |=20 > | The maintainer scripts are guaranteed to run with a controlling > | terminal and can interact with the user. If they need to prompt f= or > | passwords, do full-screen interaction or something similar you sho= uld > | do these things to and from `/dev/tty', since `dpkg' will at some > | point redirect scripts' standard input and output so that it can l= og > | the installation process. Likewise, because these scripts may be > | executed with standard output redirected into a pipe for logging > | purposes, Perl scripts should set unbuffered output by setting `$|= =3D1' > | so that the output is printed immediately rather than being buffer= ed. > `---- I'd say that policy is out of date with current practices, and release team policies. --jllsgs4PL/sXFNaa Content-Type: application/pgp-signature; name="signature.asc" Content-Description: Digital signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDOiXPN2Dbz/1mRasRApFpAKDl2sIUs/OucFafvUru7tIsjK/JUgCfbnr/ Z3mj6khRByjCDzStMSxHgJo= =kv06 -----END PGP SIGNATURE----- --jllsgs4PL/sXFNaa-- -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:19 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928054519.6DAEA303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 06:45 UTC ------- Message-ID: <20050611212403.GA17046 at aragorn> Date: Sat, 11 Jun 2005 23:24:03 +0200 From: Robert Millan To: control at bugs.debian.org Subject: new address submitter 115884 ! submitter 118910 ! submitter 120409 ! submitter 120910 ! submitter 121520 ! submitter 121630 ! submitter 121631 ! submitter 121793 ! submitter 122470 ! submitter 122520 ! submitter 122522 ! submitter 122524 ! submitter 122822 ! submitter 122948 ! submitter 125929 ! submitter 132316 ! submitter 133808 ! submitter 134112 ! submitter 134156 ! submitter 134494 ! submitter 134582 ! submitter 136844 ! submitter 137355 ! submitter 139081 ! submitter 139083 ! submitter 139635 ! submitter 144031 ! submitter 144042 ! submitter 144545 ! submitter 144633 ! submitter 145622 ! submitter 149309 ! submitter 150472 ! submitter 150475 ! submitter 152106 ! submitter 153512 ! submitter 154281 ! submitter 158683 ! submitter 160769 ! submitter 169129 ! submitter 169201 ! submitter 169542 ! submitter 170420 ! submitter 170453 ! submitter 170454 ! submitter 170456 ! submitter 170705 ! submitter 171103 ! submitter 171361 ! submitter 173214 ! submitter 175722 ! submitter 180189 ! submitter 183642 ! submitter 184565 ! submitter 184624 ! submitter 185450 ! submitter 187309 ! submitter 187391 ! submitter 189425 ! submitter 189990 ! submitter 190367 ! submitter 190581 ! submitter 190953 ! submitter 194606 ! submitter 195271 ! submitter 195914 ! submitter 195921 ! submitter 195925 ! submitter 196158 ! submitter 196251 ! submitter 197037 ! submitter 197412 ! submitter 199060 ! submitter 199632 ! submitter 200160 ! submitter 200530 ! submitter 200531 ! submitter 203211 ! submitter 203490 ! submitter 203498 ! submitter 206419 ! submitter 206422 ! submitter 211027 ! submitter 211028 ! submitter 212353 ! submitter 213500 ! submitter 213503 ! submitter 215556 ! submitter 216757 ! submitter 216886 ! submitter 217316 ! submitter 218394 ! submitter 218400 ! submitter 218581 ! submitter 220401 ! submitter 220748 ! submitter 222892 ! submitter 224437 ! submitter 226452 ! submitter 226997 ! submitter 227072 ! submitter 227124 ! submitter 232658 ! submitter 232661 ! submitter 238057 ! submitter 240068 ! submitter 240501 ! submitter 241937 ! submitter 242490 ! submitter 242494 ! submitter 242950 ! submitter 246825 ! submitter 248182 ! submitter 248397 ! submitter 249372 ! submitter 249931 ! submitter 252587 ! submitter 253302 ! submitter 253405 ! submitter 253600 ! submitter 256919 ! submitter 258051 ! submitter 258646 ! submitter 261315 ! submitter 261542 ! submitter 261712 ! submitter 262339 ! submitter 262350 ! submitter 262756 ! submitter 263240 ! submitter 263536 ! submitter 263748 ! submitter 264042 ! submitter 264453 ! submitter 264677 ! submitter 264931 ! submitter 265046 ! submitter 266268 ! submitter 266385 ! submitter 266699 ! submitter 266899 ! submitter 267446 ! submitter 267448 ! submitter 267499 ! submitter 267501 ! submitter 267997 ! submitter 268693 ! submitter 268694 ! submitter 268709 ! submitter 269262 ! submitter 269294 ! submitter 269297 ! submitter 269423 ! submitter 269440 ! submitter 269884 ! submitter 269916 ! submitter 270649 ! submitter 270973 ! submitter 270974 ! submitter 271115 ! submitter 272029 ! submitter 272373 ! submitter 272465 ! submitter 272498 ! submitter 272499 ! submitter 272516 ! submitter 273650 ! submitter 274927 ! submitter 277672 ! submitter 278595 ! submitter 280365 ! submitter 280963 ! submitter 283878 ! submitter 285116 ! submitter 285713 ! submitter 285785 ! submitter 285983 ! submitter 286121 ! submitter 287135 ! submitter 287157 ! submitter 287158 ! submitter 289599 ! submitter 289619 ! submitter 290431 ! submitter 290521 ! submitter 290719 ! submitter 290940 ! submitter 291082 ! submitter 291449 ! submitter 291458 ! submitter 291486 ! submitter 291939 ! submitter 293197 ! submitter 293237 ! submitter 293411 ! submitter 293412 ! submitter 293846 ! submitter 294136 ! submitter 294143 ! submitter 294145 ! submitter 294518 ! submitter 294728 ! submitter 294739 ! submitter 295555 ! submitter 297775 ! submitter 297894 ! submitter 298229 ! submitter 298710 ! submitter 298856 ! submitter 298864 ! submitter 299186 ! submitter 299611 ! submitter 300213 ! submitter 300963 ! submitter 300967 ! submitter 300969 ! submitter 301417 ! submitter 304635 ! submitter 304778 ! submitter 305152 ! submitter 305340 ! submitter 306323 ! submitter 306533 ! submitter 306902 ! submitter 307475 ! submitter 307543 ! submitter 307825 ! submitter 307925 ! submitter 307927 ! submitter 308049 ! submitter 310627 ! submitter 310779 ! submitter 312270 ! thanks -- Robert Millan -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 05:45:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 06:45:30 +0100 (BST) Subject: [Bug 16513] New: does not install non-interactively Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16513 Ubuntu | kernel-package Summary: does not install non-interactively Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: major Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: debzilla at ubuntu.com QAContact: kernel-bugs at lists.ubuntu.com Automatically imported from Debian bug report #247782 http://bugs.debian.org/247782 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 06:00:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 07:00:07 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928060007.B6590303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package ------- Additional Comments From debzilla at ubuntu.com 2005-09-28 07:00 UTC ------- *** Bug 16513 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 06:00:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 07:00:29 +0100 (BST) Subject: [Bug 6142] Hang on network activity (onboard PCI-e Intel sk98lin) In-Reply-To: Message-ID: <20050928060029.54728303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6142 Ubuntu | linux ------- Additional Comments From dan at theidiots.org 2005-09-28 07:00 UTC ------- Thanks so much Ben. Just letting you know this is also working with the Marvell 88E8053 (onboard NIC for the Asus A8VE Deluxe). We really appreciate you hard work. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 06:06:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 07:06:50 +0100 (BST) Subject: [Bug 16512] using debconf In-Reply-To: Message-ID: <20050928060650.C7E70303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16512 Ubuntu | kernel-package fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTWARTY ------- Additional Comments From fabbione at ubuntu.com 2005-09-28 07:06 UTC ------- we won't need debconf for kernel-package -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 06:14:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 07:14:58 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050928061458.7695D303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mschering at intermesh.nl 2005-09-28 07:14 UTC ------- The dparm update didn' t fix it for me too. Here's my lspci: Can someone confirm that this bug is not dangerous for my hard drive? root at mschering:~# lspci 0000:00:00.0 Host bridge: Intel Corp. 915G/P/GV Processor to I/O Controller (rev 04) 0000:00:01.0 PCI bridge: Intel Corp. 915G/P/GV PCI Express Root Port (rev 04) 0000:00:1b.0 0403: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 03) 0000:00:1c.0 PCI bridge: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 03) 0000:00:1c.1 PCI bridge: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 2 (rev 03) 0000:00:1d.0 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03) 0000:00:1d.1 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 03) 0000:00:1d.2 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 03) 0000:00:1d.3 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 03) 0000:00:1d.7 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03) 0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev d3) 0000:00:1f.0 ISA bridge: Intel Corp. 82801FB/FR (ICH6/ICH6R) LPC Interface Bridge (rev 03) 0000:00:1f.1 IDE interface: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03) 0000:00:1f.2 IDE interface: Intel Corp. 82801FR/FRW (ICH6R/ICH6RW) SATA Controller (rev 03) 0000:00:1f.3 SMBus: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 03) 0000:01:03.0 FireWire (IEEE 1394): Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link) 0000:02:00.0 Ethernet controller: Marvell Technology Group Ltd.: Unknown device 4362 (rev 15) 0000:04:00.0 VGA compatible controller: nVidia Corporation: Unknown device 014f (rev a2) root at mschering:~# -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 06:16:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 07:16:54 +0100 (BST) Subject: [Bug 14566] spca5xx does not work In-Reply-To: Message-ID: <20050928061654.8DF23303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14566 Ubuntu | linux ------- Additional Comments From emmanuel.touzery at wanadoo.fr 2005-09-28 07:16 UTC ------- isn't bug #15809 a duplicate? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 06:24:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 07:24:09 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050928062409.3C09F303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN gnutered at yahoo.com.au changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |gnutered at yahoo.com.au -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 06:55:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 07:55:03 +0100 (BST) Subject: [Bug 16206] no reboot / shutdown on asus m6ne laptop [breezy] In-Reply-To: Message-ID: <20050928065503.3BB08303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16206 Ubuntu | linux ------- Additional Comments From yelo_3 at yahoo.it 2005-09-28 07:55 UTC ------- I think you have to ad a boot option to resolve this issue: nolapic because lapic is compiled in the kernel but it's not supported by asus laptops! try! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 07:34:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 08:34:58 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050928073458.4DF9E303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From ubuntu at lwillis.plus.com 2005-09-28 08:34 UTC ------- The desktop machine which experiences this problem is a Fujitsu/Siemens celeron 1.70GHz with 256M of memory. The disk info is: /dev/hda: ATA device, with non-removable media Model Number: Maxtor 2F040L0 Serial Number: F137NAVE Firmware Revision: VAM51JJ0 Standards: Supported: 7 6 5 4 Likely used: 7 Configuration: Logical max current cylinders 16383 16383 heads 16 16 sectors/track 63 63 -- CHS current addressable sectors: 16514064 LBA user addressable sectors: 80293248 device size with M = 1024*1024: 39205 MBytes device size with M = 1000*1000: 41110 MBytes (41 GB) Capabilities: LBA, IORDY(can be disabled) Queue depth: 1 Standby timer values: spec'd by Standard, no device specific minimum R/W multiple sector transfer: Max = 16 Current = 0 Advanced power management level: unknown setting (0x0000) Recommended acoustic management value: 192, current value: 254 DMA: mdma0 mdma1 mdma2 udma0 udma1 udma2 udma3 udma4 *udma5 udma6 Cycle time: min=120ns recommended=120ns PIO: pio0 pio1 pio2 pio3 pio4 Cycle time: no flow control=120ns IORDY flow control=120ns Commands/features: Enabled Supported: * NOP cmd * READ BUFFER cmd * WRITE BUFFER cmd * Host Protected Area feature set * Look-ahead * Write cache * Power Management feature set Security Mode feature set * SMART feature set * FLUSH CACHE EXT command * Mandatory FLUSH CACHE command * Device Configuration Overlay feature set * Automatic Acoustic Management feature set SET MAX security extension Advanced Power Management feature set * DOWNLOAD MICROCODE cmd * SMART self-test * SMART error logging Security: Master password revision code = 65534 supported not enabled not locked frozen not expired: security count not supported: enhanced erase HW reset results: CBLID- above Vih Device num = 0 determined by CSEL Checksum: correct All packages are up-to-date breezy (sudo apt-get dist-upgrade) [Kernel 2.6.12-9] The laptop [Which doesn't experience problems] is a Toshiba Satellite Pro A60, with a celeron 2.80GHz, 768M of memory. I can't post the hdparm info right now as I don't have it on me, but it's ATA 40G drive I'm fairly sure. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 08:51:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 09:51:04 +0100 (BST) Subject: [Bug 16524] New: Error inserting modules in 2.6.12-9-686 Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16524 Ubuntu | kernel-package Summary: Error inserting modules in 2.6.12-9-686 Product: Ubuntu Version: unspecified Platform: i386 OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: eamonn.sullivan at gmail.com QAContact: kernel-bugs at lists.ubuntu.com I just started getting these boot error messages when booting: insmod: error inserting '/lib/modules/2.6.12-9-686/kernel/drivers/video/consolebitblit.ko': -1 File exists. insmod: error inserting '/lib/modules/2.6.12-9-686/kernel/drivers/video/consolefont.ko': -1 File exists. And so on for consoletileblit.ko, consolefbcon.ko, cfbcoprea.ko, cfbfilect.ko, cfbimgt.ko and softcour.ko The system appears to run normally (i.e., no display problems that I see). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 08:56:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 09:56:29 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928085629.BB88D303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux julo at altern.org changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |julo at altern.org ------- Additional Comments From julo at altern.org 2005-09-28 09:56 UTC ------- I can confirm the freezing of the system when using my webcam. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 09:04:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 10:04:21 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050928090421.A4DC1303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-28 10:04 UTC ------- Any messages? -- No, just sits there with loading module message. Is it a hardlock, or can you still switch to the second console with Alt+F2? -- Don't know, will try in a bit. CD will edject so probably not hard. Have you had any other Linux dist working on this system? -- "Ubuntu 5.04 works fine"; installed and running. Knopix live runs. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 09:14:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 10:14:03 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050928091403.9EF92303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From kaaloo at gmail.com 2005-09-28 10:14 UTC ------- Created an attachment (id=4155) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4155&action=view) dmesg output Ben, I did not experience the case where wireless stops working and I have to reboot in order to get it running again. However, wireless not working when coming back from hibernation is clearly reproducable. The attached dmesg is interesting and shows the ipw2100 module failing (if I understand correctly): [4305406.963000] ipw2100: Detected Intel PRO/Wireless 2100 Network Connection [4305416.965000] ipw2100: eth1: Firmware 'ipw2100-1.3.fw' not available or load failed. [4305416.965000] ipw2100: eth1: ipw2100_get_firmware failed: -2 [4305416.965000] ipw2100: eth1: Failed to power on the adapter. [4305416.965000] ipw2100: eth1: Failed to start the firmware. [4305416.965000] ipw2100Error calling register_netdev. Everything works fine with the 2.6.10 kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 09:16:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 10:16:32 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050928091632.F2671303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-28 10:16 UTC ------- Alt+F2 works - "modprobe -v ide_cd" looks like last process. Main screen sitting as 86%. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 09:21:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 10:21:55 +0100 (BST) Subject: [Bug 16525] New: Can't boot with Aiptek HyperPen pluged in Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16525 Ubuntu | kernel-package Summary: Can't boot with Aiptek HyperPen pluged in Product: Ubuntu Version: unspecified Platform: Other OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: tobias.jakobs at web.de QAContact: kernel-bugs at lists.ubuntu.com I can't boot Ubuntu with my Aiptek HyperPen T-6000U pluged into the USB Port. Ubuntu makes a reboot just after uncompressing the kernel. ------------- $> lsusb Bus 005 Device 003: ID 058f:6362 Alcor Micro Corp. Hi-Speed 16-in-1 Flash Card Reader/Writer Bus 005 Device 001: ID 0000:0000 Bus 004 Device 002: ID 08ca:0020 Aiptek International, Inc. APT-6000U Tablet Bus 004 Device 001: ID 0000:0000 Bus 003 Device 002: ID 413c:3200 Dell Computer Corp. Bus 003 Device 001: ID 0000:0000 Bus 002 Device 001: ID 0000:0000 Bus 001 Device 001: ID 0000:0000 ---------- Some infos about the device: APT-6000U Manufacturer: AIPTEK Speed: 1.5Mb/s (low) USB Version: 1.00 Device Class: 00(>ifc ) Device Subclass: 00 Device Protocol: 00 Maximum Default Endpoint Size: 8 Number of Configurations: 1 Vendor Id: 08ca Product Id: 0020 Revision Number: 1.00 Config Number: 1 Number of Interfaces: 1 Attributes: a0 MaxPower Needed: 50mA Interface Number: 0 Name: aiptek Alternate Number: 0 Class: 03(HID ) Sub Class: 1 Protocol: 2 Number of Endpoints: 1 Endpoint Address: 81 Direction: in Attribute: 3 Type: Int. Max Packet Size: 8 Interval: 3ms ----------- Kernel: Linux version 2.6.12-9-686-smp (buildd at rothera) (gcc version 3.4.5 20050809 (prerelease) (Ubuntu 3.4.4-6ubuntu8)) #1 SMP Tue Sep 27 00:41:19 BST 2005 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 10:03:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 11:03:02 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050928100302.A153C303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From tillm at optushome.com.au 2005-09-28 11:03 UTC ------- Generic Driver? So something with the hardware scan is up and can't load the correct driver? Can we just tell it to use the correct driver? Anyway, here's my pci list: 0000:00:00.0 Host bridge: Intel Corp. 925X Memory Controller Hub (rev 04) 0000:00:01.0 PCI bridge: Intel Corp. 925X PCI Express Root Port (rev 04) 0000:00:1b.0 0403: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 03) 0000:00:1c.0 PCI bridge: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) PCI Express Port 1 (rev 03) 0000:00:1d.0 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03) 0000:00:1d.1 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 03) 0000:00:1d.2 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 03) 0000:00:1d.3 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 03) 0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev d3) 0000:00:1f.0 ISA bridge: Intel Corp. 82801FB/FR (ICH6/ICH6R) LPC Interface Bridge (rev 03) 0000:00:1f.1 IDE interface: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03) 0000:00:1f.2 IDE interface: Intel Corp. 82801FR/FRW (ICH6R/ICH6RW) SATA Controller (rev 03) 0000:00:1f.3 SMBus: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 03) 0000:01:03.0 FireWire (IEEE 1394): Texas Instruments TSB43AB22/A IEEE-1394a-2000 Controller (PHY/Link) 0000:01:0a.0 Ethernet controller: Accton Technology Corporation SMC2-1211TX (rev 10) 0000:03:00.0 VGA compatible controller: nVidia Corporation: Unknown device 0091 (rev a1) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 11:55:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 12:55:58 +0100 (BST) Subject: [Bug 16539] New: AltGR is not working anymore on text-console nor X Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux Summary: AltGR is not working anymore on text-console nor X Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: linux AssignedTo: ben.collins at ubuntu.com ReportedBy: sh at sourcecode.de QAContact: kernel-bugs at lists.ubuntu.com Hi, after upgrading warty -> hoary -> to breezy, I realized, that the AltGR key is not working anymore. So no german keyboards (or any other keyboards with special keys via AltGR) is working correctly. No @ sign, no \ no { or } anymore. As it appears as well on the console and in X I think it's a kernel problem. Oliver Grawert has the same problems. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 11:58:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 12:58:46 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050928115846.119C8303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-28 12:58 UTC ------- one more information: my test laptop was a Sony Vaio PCG-GRT786M Regards, \sh -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:01:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:01:19 +0100 (BST) Subject: [Bug 16222] Internal speaker not turned off when external is used In-Reply-To: Message-ID: <20050928120119.4EC8A303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16222 Ubuntu | linux ------- Additional Comments From mwh at sysrq.dk 2005-09-28 13:01 UTC ------- (In reply to comment #6) > (In reply to comment #3) > > Also notice that it works on Breezy, but not on Hoary. > > Are you sure you have this correct? If it works in breezy, but is broken in > hoary, then we don't really have to worry about anything with this bug report. > Not much chance that we'll fix this in hoary. Yes it is correct, it works perfectly in Breezy :o) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:04:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:04:42 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050928120442.6458E303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-28 13:04 UTC ------- I have not seen any updates and have done a fresh install last night with the same results. The machine hibernates just fine, but upon resume, it ends up going to a gray screen. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:10:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:10:09 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050928121009.58BB9303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From ogra at ubuntu.com 2005-09-28 13:10 UTC ------- note that it only occurs on my laptop, not on my desktop, since the laptop has a crappy keyboard anyway, i suspected a HW error... the prob is there since about 2 weeks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:18:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:18:41 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050928121841.A469B303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From callipeo at libero.it 2005-09-28 13:18 UTC ------- I just tried with the kernel 2.6.12-9.18 and powernowd disabled: it is the same. Total freeze after ~30 seconds. It's a bit frustrating since I have the time and the will to help debugging, but I can't find a way to do it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:27:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:27:45 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050928122745.D0153303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-28 13:27 UTC ------- Oh yes, on my HP nc6000 this problem is not reproducable. But i have a complete br0ken install of breezy ;) which I have to clean up after release ;) \sh -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:30:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:30:31 +0100 (BST) Subject: [Bug 15386] Resume failure on ThinkPad T41 In-Reply-To: Message-ID: <20050928123031.D940E303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15386 Ubuntu | linux ------- Additional Comments From mcmackin at earthlink.net 2005-09-28 13:30 UTC ------- Just tried after the new update to initramfs-tools. Ran dpkg-reconfigure as directed. Hibernates fine, upon resume, it get's to the point of copying from memory and reboots. Almost back to the original behavior. I'll gladly provide any info I can. Shannon -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:37:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:37:13 +0100 (BST) Subject: [Bug 14802] No ethernet colony 4 (8139cp vs. 8139too) In-Reply-To: Message-ID: <20050928123713.C276B303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ------- Additional Comments From kaaloo at gmail.com 2005-09-28 13:37 UTC ------- Created an attachment (id=4161) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4161&action=view) dmesg ouput (wireless just stops working) Ok, maybe its just a matter of time. This is the dmesg output in the case where the wireless connection just stops working and I cannot get an address via DHCP using ifup unless I reboot. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:54:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:54:20 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928125420.B5241303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 13:54 UTC ------- Please see: https://wiki.ubuntu.com/DebuggingSystemCrash And try to get some more information regarding this crash, thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:54:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:54:45 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050928125445.26CEE303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-28 13:54 UTC ------- Here is the output from lspci for my Sony VAIO A497XP: --- 0000:00:00.0 Host bridge: Intel Corp. Mobile Memory Controller Hub (rev 03) 0000:00:01.0 PCI bridge: Intel Corp. Mobile Memory Controller Hub PCI Express Port (rev 03) 0000:00:1b.0 0403: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) High Definition Audio Controller (rev 03) 0000:00:1d.0 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #1 (rev 03) 0000:00:1d.1 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #2 (rev 03) 0000:00:1d.2 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #3 (rev 03) 0000:00:1d.3 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB UHCI #4 (rev 03) 0000:00:1d.7 USB Controller: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller (rev 03) 0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev d3) 0000:00:1f.0 ISA bridge: Intel Corp. 82801FBM (ICH6M) LPC Interface Bridge (rev 03) 0000:00:1f.1 IDE interface: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) IDE Controller (rev 03) 0000:00:1f.2 IDE interface: Intel Corp. 82801FBM (ICH6M) SATA Controller (rev 03) 0000:00:1f.3 SMBus: Intel Corp. 82801FB/FBM/FR/FW/FRW (ICH6 Family) SMBus Controller (rev 03) 0000:01:01.0 CardBus bridge: Texas Instruments PCI7420 CardBus Controller 0000:01:01.2 FireWire (IEEE 1394): Texas Instruments PCI7x20 1394a-2000 OHCI Two-Port PHY/Link-Layer Controller 0000:01:01.3 Unknown mass storage controller: Texas Instruments PCI7420/PCI7620 Dual Socket CardBus and Smart Card Cont. w/ 1394a-2000 OHCI Two-Port PHY/Link-Layer Cont. an 0000:01:02.0 Network controller: Intel Corp. PRO/Wireless 2200BG (rev 05) 0000:01:03.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8169 Gigabit Ethernet (rev 10) 0000:03:00.0 VGA compatible controller: ATI Technologies Inc: Unknown device 3150 --- -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 12:59:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 13:59:14 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050928125914.0458B303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 13:59 UTC ------- I'm not sure what to tell you. This seems to be an isolated event. Without debugging information, I don't have much to go on. If you have the will and time, you could try compling your own stock 2.6.13 kernel and see if the problem still occurs with that (use /boot/config-2.6.12-9* as a starting point for your own .config). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:00:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:00:33 +0100 (BST) Subject: [Bug 16222] Internal speaker not turned off when external is used In-Reply-To: Message-ID: <20050928130033.022B9303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16222 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 14:00 UTC ------- (In reply to comment #7) > Yes it is correct, it works perfectly in Breezy :o) Then that's about as good as we can hope for :) Thanks -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:02:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:02:37 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050928130237.B83C2303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |ASSIGNED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 14:02 UTC ------- Can you attach the output of "lspci -vv" please? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:02:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:02:47 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050928130247.F1A7C303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-28 14:02 UTC ------- I have just noticed that if I run hdparm -i .. I also get the following error, I'm not sure whether this is a problem or not? /dev/sda: HDIO_GET_IDENTITY failed: Inappropriate ioctl for device More worrying, is that if I use "sudo smartctl -i /dev/sda" to query the S.M.A.R.T status of the drive, I get: smartctl version 5.32 Copyright (C) 2002-4 Bruce Allen Home page is http://smartmontools.sourceforge.net/ Device: ATA HTS541010G9SA00 Version: MBZO Serial number: MP2Z80X0G2ME6E Device type: disk Local Time is: Wed Sep 28 13:59:21 2005 BST Device does not support SMART The BIOS reports that this HD *does* support smart, and that is it enabled, so something in the smartmon tools isn't working correctly, could this be a related issue? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:07:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:07:58 +0100 (BST) Subject: [Bug 14802] ipw2100 Stops working In-Reply-To: Message-ID: <20050928130758.868D3303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |ASSIGNED Summary|No ethernet colony 4 (8139cp|ipw2100 Stops working |vs. 8139too) | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:11:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:11:58 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050928131158.5F468303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 14:11 UTC ------- I just noticed that you are using the install preview. Can you try the Colony 5 release instead: http://cdimage.ubuntu.com/releases/breezy/colony-5/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:14:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:14:18 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050928131418.7F084303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From callipeo at libero.it 2005-09-28 14:14 UTC ------- (In reply to comment #11) > I'm not sure what to tell you. This seems to be an isolated event. Without > debugging information, I don't have much to go on. I fully understand. > If you have the will and time, you could try compling your own stock 2.6.13 > kernel and see if the problem still occurs with that Will try. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:15:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:15:34 +0100 (BST) Subject: [Bug 15199] Ports on localhost doesn't work In-Reply-To: Message-ID: <20050928131534.45AD4303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15199 Ubuntu | UNKNOWN ------- Additional Comments From noplay at noplay.net 2005-09-28 14:15 UTC ------- (In reply to comment #7) > Something on your system is deconfiguring the loopback interface. > > Perhaps you ran "dhclient" with no arguments (bug #10174) Yes after some test when i run dhclient without args i lost the loopback interface. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:32:30 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:32:30 +0100 (BST) Subject: [Bug 14802] ipw2100 Stops working In-Reply-To: Message-ID: <20050928133230.A02F1303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux thomas.dorr at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC|thomas.dorr at gmail.com | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 13:49:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 14:49:28 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928134928.A4175303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From StempUbuntu at gmail.com 2005-09-28 14:49 UTC ------- I'll like to help you, but I don't know any software or command using the spca5xx driver without X. My Webcam is working on Hoary, and was on Breezy Colony 3. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 15:12:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 16:12:09 +0100 (BST) Subject: [Bug 10834] Little acpi event windows pop up in KDE In-Reply-To: Message-ID: <20050928151209.3A397303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10834 Ubuntu (laptop) | linux ubuntu_bugs at bits-fritz.de changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |ubuntu_bugs at bits-fritz.de -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 15:22:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 16:22:20 +0100 (BST) Subject: [Bug 10834] Little acpi event windows pop up in KDE In-Reply-To: Message-ID: <20050928152220.8A42B303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10834 Ubuntu (laptop) | linux ------- Additional Comments From ubuntu_bugs at bits-fritz.de 2005-09-28 16:22 UTC ------- (In reply to comment #6) > Bugzilla doesn't keep me up to date. If possible put me in CC list - my status > apparently doesn't allow me to do this myself. Well, I'm now prepared to join the ubuntu engeneers team - I fount out to hit the "Enter" key. :o)) Friedrich -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 15:27:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 16:27:09 +0100 (BST) Subject: [Bug 15423] random freezes after resuming from sleep In-Reply-To: Message-ID: <20050928152709.0CB54303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15423 Ubuntu | linux ------- Additional Comments From callipeo at libero.it 2005-09-28 16:27 UTC ------- Just tried with kernel 2.6.13.2: nothing changes. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 15:47:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 16:47:26 +0100 (BST) Subject: [Bug 15362] harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050928154726.EC372303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-28 16:47 UTC ------- The default kernel with Ubuntu Hoary worked but I don't know which version it was as I switched completely to Breezy -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 15:48:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 16:48:46 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928154846.72CB5303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From emmanuel.touzery at wanadoo.fr 2005-09-28 16:48 UTC ------- I don't know where to post this, #14566 or here, both bugs seem i identical. i got the lockup too, 2.6.12-9-386. I got a screenshot when running gnomemeeting on X and quickly switching to a text console. I'll post it now. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 15:49:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 16:49:44 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928154944.0ED6C303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From emmanuel.touzery at wanadoo.fr 2005-09-28 16:49 UTC ------- Created an attachment (id=4166) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4166&action=view) stacktrace of the lockup -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 15:52:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 16:52:00 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928155200.A43D4303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux emmanuel.touzery at wanadoo.fr changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |emmanuel.touzery at wanadoo.fr -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 15:53:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 16:53:02 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928155302.B2A30303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From emmanuel.touzery at wanadoo.fr 2005-09-28 16:53 UTC ------- btw, you surely know this, but i read on internet that that driver is incompatible with gcc4 and must be built with gcc3.4. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 16:02:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 17:02:13 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928160213.E6F33303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 17:02 UTC ------- (In reply to comment #6) > I don't know where to post this, #14566 or here, both bugs seem i identical. i > got the lockup too, 2.6.12-9-386. > I got a screenshot when running gnomemeeting on X and quickly switching to a > text console. I'll post it now. Thanks for the trace. I wish I could see the couple of lines that got missed. Any chance you could boot with a better resolution that has more lines on the console? It's sort of important, because I need to know the exception type (NULL deref, scheduling in IRQ, etc...). Atleast I know where the problem is occuring. Can you try one thing: rmmod spca5xx modprobe spca5xx compress=0 And retry the test? Maybe compression isn't as stable as it needs to be. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 16:03:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 17:03:03 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928160303.62C85303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 17:03 UTC ------- (In reply to comment #8) > btw, you surely know this, but i read on internet that that driver is > incompatible with gcc4 and must be built with gcc3.4. All of our kernels and associated modules are compiled with gcc-3.4. Try: cat /proc/version -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 16:09:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 17:09:48 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928160948.C9572303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From emmanuel.touzery at wanadoo.fr 2005-09-28 17:09 UTC ------- I'll just add that in hoary i self-compiled that module (spca5xx-20050328) and it was very stable with my webcam on the hoary kernel. before upgrading my kernel i uninstalled it. i'll try to get better resolution and the compression trick. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 16:28:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 17:28:58 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050928162858.2A20C303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 17:28 UTC ------- Created an attachment (id=4167) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4167&action=view) mdz's lspci -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 16:38:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 17:38:54 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928163854.C7974303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From emmanuel.touzery at wanadoo.fr 2005-09-28 17:38 UTC ------- Created an attachment (id=4169) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4169&action=view) complete stack trace -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 16:39:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 17:39:56 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050928163956.2A82A303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From emmanuel.touzery at wanadoo.fr 2005-09-28 17:39 UTC ------- Created an attachment (id=4170) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4170&action=view) it also crashes with no compression. i didn't check if the stacktrace is different, i attach it too. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 17:43:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 18:43:45 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050928174345.69065303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From mdz at ubuntu.com 2005-09-28 18:43 UTC ------- (In reply to comment #20) > The desktop machine which experiences this problem is a Fujitsu/Siemens celeron > 1.70GHz with 256M of memory. The disk info is: Please send lspci output so we can see the IDE chipset info -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 17:45:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 18:45:25 +0100 (BST) Subject: [Bug 16371] ISAPNP grabbing I/O region reserved for PCI device on 2.6.12 (regression from 2.6.10) In-Reply-To: Message-ID: <20050928174525.D78B4303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16371 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|kernel-package |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 17:48:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 18:48:20 +0100 (BST) Subject: [Bug 11617] Ubuntu (Breezy) freezes after wireless config change (ndiswrapper) In-Reply-To: Message-ID: <20050928174820.DF5DB303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11617 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 18:48 UTC ------- (In reply to comment #2) > the VERY next thing I try to do that uses the network, my systems > locks. This happens both in X and in console, and if I try it in console > Alt+SysRq+T dumps nothing to console. Make sure you do Alt+SysRq+1 first to increase the console logging level -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 17:52:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 18:52:17 +0100 (BST) Subject: [Bug 10306] i2c_i801 breaks suspend on hp compaq nc6000 In-Reply-To: Message-ID: <20050928175217.E0806303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10306 Ubuntu | hotplug mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |scott-bugs at ubuntu.com Status|NEEDINFO |NEW -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 17:53:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 18:53:11 +0100 (BST) Subject: [Bug 13743] Hang when hotplug tries to load driver for 8139 card In-Reply-To: Message-ID: <20050928175311.F0539303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13743 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|hotplug |linux -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 17:58:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 18:58:53 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit In-Reply-To: Message-ID: <20050928175853.96577303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-28 18:58 UTC ------- Apologies for yet another post, but I have just tried running iostat to check what it thinks is happening with the disk subsystem. I ran this under watch (watch -n 1 iostat), and then put my ear against the HD, it seeks now and then, but it's not hammering away or anything suspicious, however, iostat is reporting *alarming* stats: vaio:~$ iostat Linux 2.6.12-9-386 (vaio) 28/09/05 avg-cpu: %user %nice %sys %iowait %idle 6.93 0.11 1.48 16.15 75.33 Device: tps Blk_read/s Blk_wrtn/s Blk_read Blk_wrtn sda 41.22 1624.51 78.85 1278410 62049 I monitor iostat on a lot of my Linux servers at work, as they are heavily utilised DB boxes and application servers. Typical values on another SATA-based workstation system are around 30-40 reads/second when idle, and perhaps a few hundred blocks/second when running a clean build of an enterprise Java application, but never in the region of 1600 reads/second. I think perhaps iostat might be mis-reporting the figures - but it does make me wonder.... anyone got any thoughts about this?? Thanks, Mark -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:05:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:05:42 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050928180542.ADE02303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|seb128 at ubuntu.com |tfheen at ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:08:21 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:08:21 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050928180821.F1E70303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-28 19:08 UTC ------- Tried the colony-5 Live. Same thing. Looked in /var/log messages (last line): insmod ...... ide/ide-cd.ko syslog (last lines): hw-detect: Detected module 'ide-cd' ............ hw-detect: trying to load module 'ide-cd' stays like this for at least 10 mins. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:09:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:09:25 +0100 (BST) Subject: [Bug 13743] Hang when hotplug tries to load driver for 8139 card In-Reply-To: Message-ID: <20050928180925.DFA3E303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13743 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 19:09 UTC ------- The 8139 driver isn't hanging the boot process. We went through this with another bug report. It's just that there is no output (quiet), and 8139cp spews these messages (which aren't bugs), and the user thought that the period where there was no output was caused by the 8139 driver, since nothing else showed on the console until usplash started. Everyone must note that the PCI vendor/device ID's of these cards are _exactly_ the same. The only way to tell if it's an 8139C+ card is to load the driver and have it read the eeprom. Not something that can be easily done from user space. So 8139too takes over afterwards, and sets up the card if it wasn't already taken by 8139cp. This is not a bug, and the current situation is ideal. THe only thing that may be done is to get rid of the messages, or tone them down to KERN_INFO. It's just cosmetic, and nothing more. This is a non-bug and should be closed. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:23:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:23:20 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050928182320.50C7C303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 19:23 UTC ------- Created an attachment (id=4171) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4171&action=view) mdz's /proc/ioports -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:23:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:23:33 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050928182333.CA378303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 19:23 UTC ------- Created an attachment (id=4172) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4172&action=view) mdz's /proc/interrupts -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:25:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:25:15 +0100 (BST) Subject: [Bug 16011] Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid In-Reply-To: Message-ID: <20050928182515.CC671303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16011 Ubuntu | linux ------- Additional Comments From scianos at speakeasy.net 2005-09-28 19:25 UTC ------- Created an attachment (id=4173) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4173&action=view) Screenshot of Kernel Panic Screenshot of the kernel panic... Prevents Ubuntu installer from booting off CD. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:28:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:28:34 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit on Intel ICH6 IDE In-Reply-To: Message-ID: <20050928182834.AC158303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Hard drive LED constantly |Hard drive LED constantly |lit |lit on Intel ICH6 IDE -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:52:18 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:52:18 +0100 (BST) Subject: [Bug 16525] Spontaneous reboot during startup with Aiptek HyperPen pluged in In-Reply-To: Message-ID: <20050928185218.5A936303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16525 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |major Component|kernel-package |linux Summary|Can't boot with Aiptek |Spontaneous reboot during |HyperPen pluged in |startup with Aiptek HyperPen | |pluged in ------- Additional Comments From mdz at ubuntu.com 2005-09-28 19:52 UTC ------- Please send lspci -vv output. Does this still happen if you use the -386 or -686 kernel? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:54:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:54:03 +0100 (BST) Subject: [Bug 16528] Some VIA-based systems require pci=noacpi In-Reply-To: Message-ID: <20050928185403.909CF303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16528 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Why Ubuntu installer doesn't|Some VIA-based systems |detect VIA chipset |require pci=noacpi ------- Additional Comments From mdz at ubuntu.com 2005-09-28 19:54 UTC ------- (In reply to comment #0) > It's true that I can read this in one of the help pages of the start but, as > Ubuntu tries to be an easy distribution, I ask myself if the installer can't > detect this chipset so it puts that option automatically. I haven't had that > problem with some other chipsets or motherboards. The kernel is capable of recognizing hardware which has such problems and automatically disabling these features. Please attach the output from "lspci" and "sudo dmidecode" -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 18:56:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 19:56:54 +0100 (BST) Subject: [Bug 15939] MSI Neo4 FI hangs without acpi=off In-Reply-To: Message-ID: <20050928185654.1F9F1303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15939 Ubuntu | linux ------- Additional Comments From bart at verwilst.be 2005-09-28 19:56 UTC ------- Created an attachment (id=4175) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4175&action=view) dmidecode output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 19:24:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 20:24:11 +0100 (BST) Subject: [Bug 16541] high speed USB devices fail to work - intermittently In-Reply-To: Message-ID: <20050928192411.D2E5D303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16541 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|libusb |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-28 20:24 UTC ------- Please attach dmesg and lspci -vv output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 19:28:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 20:28:25 +0100 (BST) Subject: [Bug 15362] harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050928192825.E56AA303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 20:28 UTC ------- (In reply to comment #9) > The default kernel with Ubuntu Hoary worked but I don't know which version it > was as I switched completely to Breezy Unless you explicitly purged the old kernel, it is still installed and available from the grub menu for testing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 19:31:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 20:31:50 +0100 (BST) Subject: [Bug 13743] Hang when hotplug tries to load driver for 8139 card In-Reply-To: Message-ID: <20050928193150.C4CFF303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13743 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |NOTABUG ------- Additional Comments From mdz at ubuntu.com 2005-09-28 20:31 UTC ------- Agreed, I don't see a bug here, at least not one where we have access to the user who experienced this bug. Please have them open their own bug if they can participate in diagnosis. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 20:36:46 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 21:36:46 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG "ipw2200" not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050928203646.A08B0303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux ------- Additional Comments From alitawil82 at gmail.com 2005-09-28 21:36 UTC ------- (In reply to comment #3) > On a HP 8220 with the same model of wireless card I had a similar problem, I > couldn't see the access point. > In other locations however the card wroked fine so it may have been a particular > AP/setup it does not like. > Unfortunately I cannot go back and test again on the initial location as it's in > another town, but I'll ask about the AP hardware type it may be it's the same > kind of incompatibility that we bumped into. Hello, didn't have time to visit the cafe again, but after the tests i guess Jani Monoses theory that it depends on Access Point configuration is right. In System tools --> networks tools the test showed that i was assigned a DHCP address and was connected to the Gateway with packets sent/recieved. Since the wireless card is identified properly in device manager "ipw2200BG" and network was detected i think problem is resolved. Thanks and Regards. Ali Tawil -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:00:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:00:38 +0100 (BST) Subject: [Bug 16528] Some VIA-based systems require pci=noacpi In-Reply-To: Message-ID: <20050928210038.6A526303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16528 Ubuntu | linux ------- Additional Comments From benjavalero at yahoo.es 2005-09-28 22:00 UTC ------- (In reply to comment #1) > The kernel is capable of recognizing hardware which has such problems and > automatically disabling these features. Please attach the output from "lspci" > and "sudo dmidecode" The output from "lpsci": benja at ubuntu:~$ lspci 0000:00:00.0 Host bridge: VIA Technologies, Inc. VT8377 [KT400/KT600 AGP] Host Bridge (rev 80) 0000:00:01.0 PCI bridge: VIA Technologies, Inc. VT8237 PCI Bridge 0000:00:0f.0 RAID bus controller: VIA Technologies, Inc. VIA VT6420 SATA RAID Controller (rev 80) 0000:00:0f.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06) 0000:00:10.0 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81) 0000:00:10.1 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81) 0000:00:10.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81) 0000:00:10.3 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 81) 0000:00:10.4 USB Controller: VIA Technologies, Inc. USB 2.0 (rev 86) 0000:00:11.0 ISA bridge: VIA Technologies, Inc. VT8237 ISA bridge [K8T800 South] 0000:00:11.5 Multimedia audio controller: VIA Technologies, Inc. VT8233/A/8235/8237 AC97 Audio Controller (rev 60) 0000:00:12.0 Ethernet controller: VIA Technologies, Inc. VT6102 [Rhine-II] (rev 78) 0000:01:00.0 VGA compatible controller: ATI Technologies Inc Radeon RV100 QY [Radeon 7000/VE] The output from "sudo dmidecode": benja at ubuntu:~$ sudo dmidecode # dmidecode 2.5 SMBIOS 2.3 present. 38 structures occupying 1060 bytes. Table at 0x000F0100. Handle 0x0000 DMI type 0, 20 bytes. BIOS Information Vendor: Award Software International, Inc. Version: F5 Release Date: 10/01/2004 Address: 0xE0000 Runtime Size: 128 kB ROM Size: 256 kB Characteristics: PCI is supported PNP is supported APM is supported BIOS is upgradeable BIOS shadowing is allowed Boot from CD is supported Selectable boot is supported BIOS ROM is socketed EDD is supported 5.25"/360 KB floppy services are supported (int 13h) 5.25"/1.2 MB floppy services are supported (int 13h) 3.5"/720 KB floppy services are supported (int 13h) 3.5"/2.88 MB floppy services are supported (int 13h) Print screen service is supported (int 5h) 8042 keyboard services are supported (int 9h) Serial services are supported (int 14h) Printer services are supported (int 17h) CGA/mono video services are supported (int 10h) ACPI is supported USB legacy is supported AGP is supported LS-120 boot is supported ATAPI Zip drive boot is supported BIOS boot specification is supported Handle 0x0001 DMI type 1, 25 bytes. System Information Manufacturer: Product Name: Version: Serial Number: UUID: Not Present Wake-up Type: Power Switch Handle 0x0002 DMI type 2, 8 bytes. Base Board Information Manufacturer: Gigabyte Technology Co., Ltd. Product Name: 7VT600-P-RZ Version: x.x Serial Number: Handle 0x0003 DMI type 3, 17 bytes. Chassis Information Manufacturer: Type: Desktop Lock: Not Present Version: Serial Number: Asset Tag: Boot-up State: Unknown Power Supply State: Unknown Thermal State: Unknown Security Status: Unknown OEM Information: 0x00000000 Handle 0x0004 DMI type 4, 35 bytes. Processor Information Socket Designation: Socket A Type: Central Processor Family: Athlon Manufacturer: AMD ID: A0 06 00 00 FF FB 83 03 Signature: Family 6, Model A, Stepping 0 Flags: FPU (Floating-point unit on-chip) VME (Virtual mode extension) DE (Debugging extension) PSE (Page size extension) TSC (Time stamp counter) MSR (Model specific registers) PAE (Physical address extension) MCE (Machine check exception) CX8 (CMPXCHG8 instruction supported) APIC (On-chip APIC hardware supported) SEP (Fast system call) MTRR (Memory type range registers) PGE (Page global enable) MCA (Machine check architecture) CMOV (Conditional move instruction supported) PAT (Page attribute table) PSE-36 (36-bit page size extension) MMX (MMX technology supported) FXSR (Fast floating-point save and restore) SSE (Streaming SIMD extensions) Version: AMD Athlon(tm) XP Voltage: 1.7 V External Clock: 167 MHz Max Speed: 2800 MHz Current Speed: 1921 MHz Status: Populated, Enabled Upgrade: Socket A (Socket 462) L1 Cache Handle: 0x0009 L2 Cache Handle: 0x000A L3 Cache Handle: Not Provided Serial Number: Asset Tag: Part Number: Handle 0x0005 DMI type 5, 22 bytes. Memory Controller Information Error Detecting Method: None Error Correcting Capabilities: None Supported Interleave: Four-way Interleave Current Interleave: Four-way Interleave Maximum Memory Module Size: 1024 MB Maximum Total Memory Size: 3072 MB Supported Speeds: 70 ns 60 ns Supported Memory Types: Standard EDO Memory Module Voltage: 5.0 V Associated Memory Slots: 3 0x0006 0x0007 0x0008 Enabled Error Correcting Capabilities: None Handle 0x0006 DMI type 6, 12 bytes. Memory Module Information Socket Designation: A0 Bank Connections: 0 1 Current Speed: 60 ns Type: Unknown Installed Size: Not Installed (Single-bank Connection) Enabled Size: Not Installed (Single-bank Connection) Error Status: OK Handle 0x0007 DMI type 6, 12 bytes. Memory Module Information Socket Designation: A1 Bank Connections: 2 3 Current Speed: 60 ns Type: DIMM SDRAM Installed Size: 512 MB (Single-bank Connection) Enabled Size: 512 MB (Single-bank Connection) Error Status: OK Handle 0x0008 DMI type 6, 12 bytes. Memory Module Information Socket Designation: ..h. Bank Connections: 0 9 Current Speed: 60 ns Type: DIMM SDRAM Installed Size: 32 MB (Single-bank Connection) Enabled Size: 32 MB (Single-bank Connection) Error Status: OK Handle 0x0009 DMI type 7, 19 bytes. Cache Information Socket Designation: Internal Cache Configuration: Enabled, Not Socketed, Level 1 Operational Mode: Write Back Location: Internal Installed Size: 128 KB Maximum Size: 128 KB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x000A DMI type 7, 19 bytes. Cache Information Socket Designation: External Cache Configuration: Enabled, Not Socketed, Level 2 Operational Mode: Write Back Location: Internal Installed Size: 512 KB Maximum Size: 512 KB Supported SRAM Types: Synchronous Installed SRAM Type: Synchronous Speed: Unknown Error Correction Type: Unknown System Type: Unknown Associativity: Unknown Handle 0x000B DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: PRIMARY IDE Internal Connector Type: On Board IDE External Reference Designator: External Connector Type: None Port Type: Other Handle 0x000C DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: SECONDARY IDE Internal Connector Type: On Board IDE External Reference Designator: External Connector Type: None Port Type: Other Handle 0x000D DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: FDD Internal Connector Type: On Board Floppy External Reference Designator: External Connector Type: None Port Type: 8251 FIFO Compatible Handle 0x000E DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: COM1 Internal Connector Type: 9 Pin Dual Inline (pin 10 cut) External Reference Designator: External Connector Type: DB-9 male Port Type: Serial Port 16450 Compatible Handle 0x000F DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: COM2 Internal Connector Type: 9 Pin Dual Inline (pin 10 cut) External Reference Designator: External Connector Type: DB-9 male Port Type: Serial Port 16450 Compatible Handle 0x0010 DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: LPT1 Internal Connector Type: DB-25 female External Reference Designator: External Connector Type: DB-25 female Port Type: Parallel Port ECP/EPP Handle 0x0011 DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: Keyboard Internal Connector Type: Other External Reference Designator: External Connector Type: PS/2 Port Type: Keyboard Port Handle 0x0012 DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: PS/2 Mouse Internal Connector Type: PS/2 External Reference Designator: Detected External Connector Type: PS/2 Port Type: Mouse Port Handle 0x0013 DMI type 8, 9 bytes. Port Connector Information Internal Reference Designator: USB Internal Connector Type: None External Reference Designator: External Connector Type: Access Bus (USB) Port Type: USB Handle 0x0014 DMI type 9, 13 bytes. System Slot Information Designation: PCI Type: 32-bit PCI Current Usage: Available Length: Long ID: 9 Characteristics: 5.0 V is provided 3.3 V is provided PME signal is supported SMBus signal is supported Handle 0x0015 DMI type 9, 13 bytes. System Slot Information Designation: PCI Type: 32-bit PCI Current Usage: Available Length: Long ID: 10 Characteristics: 5.0 V is provided 3.3 V is provided PME signal is supported SMBus signal is supported Handle 0x0016 DMI type 9, 13 bytes. System Slot Information Designation: PCI Type: 32-bit PCI Current Usage: Available Length: Long ID: 11 Characteristics: 5.0 V is provided 3.3 V is provided PME signal is supported SMBus signal is supported Handle 0x0017 DMI type 9, 13 bytes. System Slot Information Designation: PCI Type: 32-bit PCI Current Usage: Available Length: Long ID: 12 Characteristics: 5.0 V is provided 3.3 V is provided PME signal is supported SMBus signal is supported Handle 0x0018 DMI type 9, 13 bytes. System Slot Information Designation: PCI Type: 32-bit PCI Current Usage: Available Length: Long ID: 13 Characteristics: 5.0 V is provided 3.3 V is provided PME signal is supported SMBus signal is supported Handle 0x0019 DMI type 9, 13 bytes. System Slot Information Designation: AGP Type: 32-bit AGP Current Usage: In Use Length: Long ID: 8 Characteristics: 5.0 V is provided Handle 0x001A DMI type 13, 22 bytes. BIOS Language Information Installable Languages: 3 n|US|iso8859-1 n|US|iso8859-1 r|CA|iso8859-1 Currently Installed Language: n|US|iso8859-1 Handle 0x001B DMI type 16, 15 bytes. Physical Memory Array Location: System Board Or Motherboard Use: System Memory Error Correction Type: None Maximum Capacity: 768 MB Error Information Handle: Not Provided Number Of Devices: 3 Handle 0x001C DMI type 17, 27 bytes. Memory Device Array Handle: 0x001B Error Information Handle: Not Provided Total Width: 64 bits Data Width: 64 bits Size: No Module Installed Form Factor: DIMM Set: None Locator: A0 Bank Locator: Bank0/1 Type: Unknown Type Detail: None Speed: Unknown Manufacturer: Serial Number: Asset Tag: Part Number: Handle 0x001D DMI type 17, 27 bytes. Memory Device Array Handle: 0x001B Error Information Handle: Not Provided Total Width: 64 bits Data Width: 64 bits Size: 512 MB Form Factor: DIMM Set: None Locator: A1 Bank Locator: Bank2/3 Type: Unknown Type Detail: None Speed: 400 MHz (2.5 ns) Manufacturer: Serial Number: Asset Tag: Part Number: Handle 0x001E DMI type 17, 27 bytes. Memory Device Array Handle: 0x001B Error Information Handle: Not Provided Total Width: 64 bits Data Width: 64 bits Size: 32 MB Form Factor: DIMM Set: None Locator: ..h. Bank Locator: Bank4/5 Type: Unknown Type Detail: None Speed: Unknown Manufacturer: Serial Number: Asset Tag: Part Number: Handle 0x001F DMI type 19, 15 bytes. Memory Array Mapped Address Starting Address: 0x00000000000 Ending Address: 0x00021FFFFFF Range Size: 544 MB Physical Array Handle: 0x001B Partition Width: 32 Handle 0x0020 DMI type 20, 19 bytes. Memory Device Mapped Address Starting Address: 0x00000000000 Ending Address: 0x000000003FF Range Size: 1 kB Physical Device Handle: 0x001C Memory Array Mapped Address Handle: 0x001F Partition Row Position: 1 Handle 0x0021 DMI type 20, 19 bytes. Memory Device Mapped Address Starting Address: 0x00000000000 Ending Address: 0x0001FFFFFFF Range Size: 512 MB Physical Device Handle: 0x001D Memory Array Mapped Address Handle: 0x001F Partition Row Position: 1 Handle 0x0022 DMI type 20, 19 bytes. Memory Device Mapped Address Starting Address: 0x00020000000 Ending Address: 0x00021FFFFFF Range Size: 32 MB Physical Device Handle: 0x001E Memory Array Mapped Address Handle: 0x001F Partition Row Position: 1 Handle 0x0023 DMI type 32, 11 bytes. System Boot Information Status: No errors detected Handle 0x0024 DMI type 127, 4 bytes. End Of Table Handle 0x0025 DMI type 64, 13 bytes. Unknown Type Header and Data: 40 0D 25 00 00 20 ED B4 A2 07 FF FF 68 Strings: Enjoy it! :P (for me that is like chinese) Benja -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:13:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:13:31 +0100 (BST) Subject: [Bug 15734] Pro Wireless 2200BG "ipw2200" not working on Hp Compaq nx9030 laptop ubuntu breezy preview In-Reply-To: Message-ID: <20050928211331.EE635303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15734 Ubuntu (laptop) | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From ben.collins at ubuntu.com 2005-09-28 22:13 UTC ------- Closing on request. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:15:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:15:02 +0100 (BST) Subject: [Bug 13786] vga16fb broken on some hardware. In-Reply-To: Message-ID: <20050928211502.E352B303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13786 Ubuntu (installer) | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-28 22:15 UTC ------- There are several machines which don't work with vga16fb on CRT output. sis hardware appears to be something of a special case. On the VIA machine I have which doesn't work properly on vga16fb, there's no obviously significant difference in the crtc setup between the vga16fb case and the 640x480 vesafb case. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:21:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:21:53 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit on Intel ICH6 IDE In-Reply-To: Message-ID: <20050928212153.9C95A303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-28 22:21 UTC ------- Just tested the 5.10 (Breezy) and 5.04 (Hoary) Live CDs, and this HD LED issue is not present, so it would appear to be something to do the loading the kernel from disk rather than CD? Just about run out of ideas now, any help would be greatly appreciated. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:23:26 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:23:26 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit on Intel ICH6 IDE In-Reply-To: Message-ID: <20050928212326.E1D3F303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 22:23 UTC ------- (In reply to comment #10) > Generic Driver? So something with the hardware scan is up and can't load the > correct driver? > Can we just tell it to use the correct driver? The generic driver is correct for your hardware. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:24:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:24:02 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit on Intel ICH6 IDE In-Reply-To: Message-ID: <20050928212402.40AC6303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 22:24 UTC ------- (In reply to comment #14) > Just tested the 5.10 (Breezy) and 5.04 (Hoary) Live CDs, and this HD LED issue > is not present, so it would appear to be something to do the loading the kernel > from disk rather than CD? Just about run out of ideas now, any help would be > greatly appreciated. There is no 5.10 CD yet; the release isn't until October 13th. Which Breezy CD did you try? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:26:08 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:26:08 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050928212608.8C6A5303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-28 22:26 UTC ------- Tonight I have tried booting of the Hoary (5.04) and Breezy (5.10) LIVE CDs, and performing the same reboot tests. On the 5.04, the system rebooted flawlessly, where as with the 5.10 LIVE CD, it failed just the same way it does with the HD installation. FYI - kernel versions are: Installed: 2.6.12-9 and 2.6.12-8 (issue present on both) Live CD 5.10: 2.6.12-8 Live CD 5.04: 2.6.10-5 Anything else that I can do to help tracing this issue ... let me know. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:36:16 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:36:16 +0100 (BST) Subject: [Bug 16525] Spontaneous reboot during startup with Aiptek HyperPen pluged in In-Reply-To: Message-ID: <20050928213616.6C5DF303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16525 Ubuntu | linux ------- Additional Comments From tobias.jakobs at web.de 2005-09-28 22:36 UTC ------- Created an attachment (id=4182) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4182&action=view) lspci -vv -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:38:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:38:37 +0100 (BST) Subject: [Bug 16525] Spontaneous reboot during startup with Aiptek HyperPen pluged in In-Reply-To: Message-ID: <20050928213837.DE5A2303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16525 Ubuntu | linux ------- Additional Comments From tobias.jakobs at web.de 2005-09-28 22:38 UTC ------- It works fine with the -386 and -686 kernel. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:42:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:42:25 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050928214225.2D779303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-28 22:42 UTC ------- Created an attachment (id=4183) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4183&action=view) /var/log/messages -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:42:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:42:58 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050928214258.E96D3303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-28 22:42 UTC ------- Created an attachment (id=4184) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4184&action=view) /var/log/syslog -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 21:43:58 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 22:43:58 +0100 (BST) Subject: [Bug 16398] Freeze @ Loading module 'IDE-CD' for 'Linux ATAPI CD-ROM' ... In-Reply-To: Message-ID: <20050928214358.3B632303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-28 22:43 UTC ------- Freeze was a bad choice of word! Left it to have some food and it is progressing. But so slowly. 3hrs + and still going - loading additional components. Some stuff missing according to syslog. Used a USB Pen to get files off. Attaching /var/log/messages & syslog. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 22:50:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 23:50:44 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit on Intel ICH6 IDE In-Reply-To: Message-ID: <20050928225044.D60AF303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-28 23:50 UTC ------- The Breezy 5.10 pre-release Live CD and Install CD are both available here: http://releases.ubuntu.com/5.10/ Install Image: http://releases.ubuntu.com/5.10/ubuntu-5.10-preview-install-i386.iso Live Image: http://releases.ubuntu.com/5.10/ubuntu-5.10-preview-live-i386.iso I realise this is preview / pre-release, apologies for any confusion. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 22:53:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 23:53:01 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050928225301.8AB0B303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-28 23:53 UTC ------- Again, there is no Ubuntu 5.10 yet. When talking about Breezy, you need to tell us exactly which snapshot you used, because it's constantly changing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 22:54:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 23:54:14 +0100 (BST) Subject: [Bug 16525] [SMP] Spontaneous reboot during startup with Aiptek HyperPen connected In-Reply-To: Message-ID: <20050928225414.595CA303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16525 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Spontaneous reboot during |[SMP] Spontaneous reboot |startup with Aiptek HyperPen|during startup with Aiptek |pluged in |HyperPen connected -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 22:55:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 23:55:57 +0100 (BST) Subject: [Bug 16398] Long delay loading ide-cd In-Reply-To: Message-ID: <20050928225557.1ADE6303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Freeze @ Loading module |Long delay loading ide-cd |'IDE-CD' for 'Linux ATAPI | |CD-ROM' ... | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 22:59:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Wed, 28 Sep 2005 23:59:05 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050928225905.2902D303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|adconrad at ubuntu.com |ben.collins at ubuntu.com Component|console-tools |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-28 23:59 UTC ------- If showkey doesn't show anything, then we aren't even getting a scancode, and this is either a kernel or hardware problem. What's different about the systems where you see this problem, compared to the ones where you don't? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 23:18:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 00:18:45 +0100 (BST) Subject: [Bug 16398] Long delay loading ide-cd In-Reply-To: Message-ID: <20050928231845.C3996303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-29 00:18 UTC ------- What I need then is dmesg output and lspci -vv output. Also, please try booting with acpi=off and ide=nodma, just to see if there's something screwy. What do you have on the IDE chain? I notice it is seeing your cdrom, is that on IDE? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Wed Sep 28 23:19:48 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 00:19:48 +0100 (BST) Subject: [Bug 6061] mdadm - is not able to properly assemble multipath device In-Reply-To: Message-ID: <20050928231948.A0E44303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6061 Ubuntu | mdadm mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |NOTWARTY ------- Additional Comments From mdz at ubuntu.com 2005-09-29 00:19 UTC ------- No point in tracking this indedpenently of Debian; it isn't severe and we won't pursue it -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 00:05:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 01:05:24 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050929000524.80A70303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-29 01:05 UTC ------- I'm unsure which "snapshot" as it was simply labeled as a preview release. They were downloaded on the 8th September AFAI can tell, see below: md5sum `ls ubuntu-5.10-preview-*` 88c0d18ee3dfee3fb2e2651c75044db3 ubuntu-5.10-preview-install-i386.iso 487c576eeb732f31ec2624a46017c8af ubuntu-5.10-preview-live-i386.iso ls ubuntu-5.10-preview-* 664293376 Sep 8 14:27 ubuntu-5.10-preview-install-i386.iso 681310208 Sep 8 15:28 ubuntu-5.10-preview-live-i386.iso I have kept everything up to date using synaptic / apt - last update was yesterday and today, and the problems still persist... hope I have understood your question correctly... Mark -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 00:27:28 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 01:27:28 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050929002728.0BA89303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-29 01:27 UTC ------- (In reply to comment #6) > I'm unsure which "snapshot" as it was simply labeled as a preview release. That's what we needed to know, thanks. There is now a newer snapshot than the preview, called "Colony 5". If you could try that and confirm whether the bug still exists there, that would be helpful. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 00:36:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 01:36:40 +0100 (BST) Subject: [Bug 7246] Array 6 Live CD Fails to boot after SCSI Subsystem Initialized In-Reply-To: Message-ID: <20050929003640.1F9BA303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7246 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|ubuntu-live |linux Keywords|livecd | QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-29 01:36 UTC ------- Does this still occur with the most recent development snapshot (Breezy, Colony 5)? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 00:37:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 01:37:01 +0100 (BST) Subject: [Bug 7246] Hang with 'IOMEGA Jaz Jet' (Advansys ABP-960U) In-Reply-To: Message-ID: <20050929003701.AE179303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7246 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Array 6 Live CD Fails to |Hang with 'IOMEGA Jaz Jet' |boot after SCSI Subsystem |(Advansys ABP-960U) |Initialized | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 00:46:41 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 01:46:41 +0100 (BST) Subject: [Bug 8773] missing keyboard events In-Reply-To: Message-ID: <20050929004641.CC92E303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8773 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com ------- Additional Comments From mdz at ubuntu.com 2005-09-29 01:46 UTC ------- Please try the Colony 5 live CD and see if this problem still exists there, and tell us more about your keyboard. Attach the output from the 'dmesg' command. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 01:22:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 02:22:11 +0100 (BST) Subject: [Bug 13786] vga16fb broken on some hardware. In-Reply-To: Message-ID: <20050929012211.A43F0303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13786 Ubuntu (installer) | linux daniel.stone at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |t2512tra at yahoo.it ------- Additional Comments From daniel.stone at ubuntu.com 2005-09-29 02:22 UTC ------- *** Bug 14735 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 04:08:04 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 05:08:04 +0100 (BST) Subject: [Bug 5731] ath0 interface non-functional in installer In-Reply-To: Message-ID: <20050929040804.A5CF2303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5731 Ubuntu | linux ------- Additional Comments From lgoss007 at gmail.com 2005-09-29 05:08 UTC ------- Ok, well here's my results after testing colony 5. After booting up the cd I tested my connection, but it wasn't connected so I went to "System->Administration->Networking". There were three devices (ppp0, eth0, and ath0), all with the status of not configured. I clicked on the properties for ath0, set the essid, and changed the configuration to dhcp, then clicked ok. I clicked ok again and tested the connection, it still wasn't there. I went back into the Networking, and changed the "Default gateway device" to ath0. I clicked ok again and tested the connection but it still wasn't there. So I went back to Networking one more time and noticed the "Default gateway device" wasn't set to ath0 (even though I set it previously). I figured out that I had to create a location (I don't remember having to do this previously), but after I created a location and changed the "Default gateway device" to ath0, it stayed ath0, and my connection finally worked. So yes, it worked after doing the above, thanks. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 05:09:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 06:09:22 +0100 (BST) Subject: [Bug 5731] No restricted-modules support in d-i In-Reply-To: Message-ID: <20050929050922.32D2A303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5731 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |cjwatson at ubuntu.com Status|NEEDINFO |NEW Summary|ath0 interface non- |No restricted-modules |functional in installer |support in d-i ------- Additional Comments From mdz at ubuntu.com 2005-09-29 06:09 UTC ------- This problem was fixed for Hoary, but presumably unfixed for Breezy with the new l-r-m infrastructure -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 05:29:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 06:29:44 +0100 (BST) Subject: [Bug 16046] Processor sometimes locked at 800 Mhz, random, both with and without powernowd In-Reply-To: Message-ID: <20050929052944.C5D41303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16046 Ubuntu | linux underspecified at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |underspecified at gmail.com ------- Additional Comments From underspecified at gmail.com 2005-09-29 06:29 UTC ------- I also experience this bug on an IBM Thinkpad T42 under both Hoary and the latest Breezy. The processor will often become stuck on 600 MHz, which is its lowest setting. Like the original poster I observe this in the Gnome panel CPU frequency applet. I have found that restarting or outright killing powernowd sometimes solves the problem, but other times it has no effect. I haven't tried uninstalling powernowd entirely. Is there anything other than powernowd that can change the CPU speed? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 06:30:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 07:30:39 +0100 (BST) Subject: [Bug 15362] harddisk type not recognized with hdparm In-Reply-To: Message-ID: <20050929063039.07777303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15362 Ubuntu | linux ------- Additional Comments From fbn at thelogic.org 2005-09-29 07:30 UTC ------- (In reply to comment #10) > Unless you explicitly purged the old kernel, it is still installed and available > from the grub menu for testing. Unfortunately not because I did a brand new installation at the time Breezy testing CDs came out. But I still have Hoary installed on my notebook, updated yesterday and kernel is 2.6.10-5-686 package ii linux-image-686 2.6.10-7 Linux kernel image on PPro/Celeron/PII/PIII/ -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 07:19:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 08:19:37 +0100 (BST) Subject: [Bug 14802] ipw2100 Stops working In-Reply-To: Message-ID: <20050929071937.635A1303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14802 Ubuntu | linux kaaloo at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kaaloo at gmail.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 07:59:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 08:59:36 +0100 (BST) Subject: [Bug 5731] No restricted-modules support in d-i In-Reply-To: Message-ID: <20050929075936.9F507303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5731 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbailey at ubuntu.com, | |mdz at ubuntu.com ------- Additional Comments From cjwatson at ubuntu.com 2005-09-29 08:59 UTC ------- (In reply to comment #18) > This problem was fixed for Hoary, but presumably unfixed for Breezy with the new > l-r-m infrastructure Yes. We need binutils-static-udeb (ugh!) before anything can be done about this. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 08:07:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 09:07:39 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050929080739.AF8B3303C040@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From ubuntu at lwillis.plus.com 2005-09-29 09:07 UTC ------- 0000:00:00.0 Host bridge: Intel Corp. 82845G/GL[Brookdale-G]/GE/PE DRAM Controller/Host-Hub Interface (rev 01) 0000:00:02.0 VGA compatible controller: Intel Corp. 82845G/GL[Brookdale-G]/GE Chipset Integrated Graphics Device (rev 01) 0000:00:1d.0 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #1 (rev 01) 0000:00:1d.1 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #2 (rev 01) 0000:00:1d.2 USB Controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) USB UHCI Controller #3 (rev 01) 0000:00:1d.7 USB Controller: Intel Corp. 82801DB/DBM (ICH4/ICH4-M) USB 2.0 EHCI Controller (rev 01) 0000:00:1e.0 PCI bridge: Intel Corp. 82801 PCI Bridge (rev 81) 0000:00:1f.0 ISA bridge: Intel Corp. 82801DB/DBL (ICH4/ICH4-L) LPC Bridge (rev 01) 0000:00:1f.1 IDE interface: Intel Corp. 82801DB/DBL (ICH4/ICH4-L) UltraATA-100 IDE Controller (rev 01) 0000:00:1f.3 SMBus: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) SMBus Controller (rev 01) 0000:00:1f.5 Multimedia audio controller: Intel Corp. 82801DB/DBL/DBM (ICH4/ICH4-L/ICH4-M) AC'97 Audio Controller (rev 01) 0000:02:08.0 Ethernet controller: Intel Corp. 82801BD PRO/100 VE (LOM) Ethernet Controller (rev 81) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 08:26:02 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 09:26:02 +0100 (BST) Subject: [Bug 16541] high speed USB devices fail to work - intermittently In-Reply-To: Message-ID: <20050929082602.6EC34303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16541 Ubuntu | linux ------- Additional Comments From mike at hingston.demon.co.uk 2005-09-29 09:26 UTC ------- Created an attachment (id=4194) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4194&action=view) dmesg -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 08:26:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 09:26:56 +0100 (BST) Subject: [Bug 16541] high speed USB devices fail to work - intermittently In-Reply-To: Message-ID: <20050929082656.61DB3303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16541 Ubuntu | linux ------- Additional Comments From mike at hingston.demon.co.uk 2005-09-29 09:26 UTC ------- Created an attachment (id=4195) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4195&action=view) lspci -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 08:51:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 09:51:27 +0100 (BST) Subject: [Bug 16398] Long delay loading ide-cd In-Reply-To: Message-ID: <20050929085127.617A2303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-29 09:51 UTC ------- Created an attachment (id=4196) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4196&action=view) dmesg.txt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 08:51:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 09:51:33 +0100 (BST) Subject: [Bug 16370] Problem with VIA Technologies Inc. VT1720/24 [Envy2 4PT/HT] In-Reply-To: Message-ID: <20050929085133.96F8A303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16370 Ubuntu | linux ------- Additional Comments From jensen at mermaidconsulting.com 2005-09-29 09:51 UTC ------- As a followup to last info I posted The forum post @ http://www.ubuntuforums.org/showthread.php?t=62430 The very last post contains some more in-debth info regarding how I fix this problem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 09:40:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 10:40:32 +0100 (BST) Subject: [Bug 16398] Long delay loading ide-cd In-Reply-To: Message-ID: <20050929094032.DA7CB303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-29 10:40 UTC ------- dmesg attachment. lspci not available as far as I can find. Tried "live acpi=off ide=nodma" - straight through. Tried "live acpi=off" only - straight through. (Note IDE_Generic seems to take 3? seconds to load.) Its a laptop - not sure how it is set up. We had them at work and I had the impression that the CD was a USB device but I cannot remember why I think that. This laptop (IBM R30) has a brand new internal drive, no floppy, a CD, 2 USB (mouse and Data Pen in at present). I have to give this machine back to my customer real soon (Monday?) since the new disk is in so if you want me to try anything it has to be soon. Attached lspci -vv. Took over half an hour to boot the live CD and a number of desktop applets? crashed (don't have time to follow up now). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 09:41:07 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 10:41:07 +0100 (BST) Subject: [Bug 16398] Long delay loading ide-cd In-Reply-To: Message-ID: <20050929094107.5A572303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16398 Ubuntu | linux ------- Additional Comments From eddie-ubuntu at cherrytreefarm.org.uk 2005-09-29 10:41 UTC ------- Created an attachment (id=4198) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4198&action=view) lspci.txt -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 09:49:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 10:49:31 +0100 (BST) Subject: [Bug 7754] On opening Pd, I get an error In-Reply-To: Message-ID: <20050929094931.7C488303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7754 Ubuntu | linux edwardjorge at iol.pt changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution| |FIXED Summary|On opening Pd, I get error |On opening Pd, I get an | |error ------- Additional Comments From edwardjorge at iol.pt 2005-09-29 10:49 UTC ------- (In reply to comment #4) > Your output for lspci was actually a duplicate of the dmesg output. Can you > resend the lspci -v and lspci -vn output please? > > Also, would you mind testing the Colony 5 live or install CD's, or latest breezy? I am running the latest breezy, and the problem seems to have disappeared. I had some problems configuring JACK through QjackCtl, but I have solved them. It seems I am unable to use JACK in realtime :( . It would be cool to see some kernel patches in the repository optimized for multimedia production ;) I am going to change the status for this bug to fixed, since in Breezy things are working well and it's just a matter of upgrading. Thanks and keep the good work :D -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 09:58:47 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 10:58:47 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050929095847.C9E17303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From tfheen at ubuntu.com 2005-09-29 10:58 UTC ------- I'm unable to reproduce this on an nforce2-based system. Will try later today on an intel-based rig. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 12:13:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 13:13:52 +0100 (BST) Subject: [Bug 15809] Spca5xx not working In-Reply-To: Message-ID: <20050929121352.C83EA303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15809 Ubuntu | linux ------- Additional Comments From eljefe123 at gmail.com 2005-09-29 13:13 UTC ------- Yes i have the same kind of trace. I have compiled with gcc-3.4 (export CC=gcc-3.4), but i think if you compile the module with gcc-4.0, the system won't hang but the driver will simply not work and the will give the message that it is compiled with the wrong gcc version. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 12:18:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 13:18:55 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050929121855.D5E08303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jdthood at yahoo.co.uk ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 13:18 UTC ------- The problem is that the alsa-utils package inadequately handles changes in the mixer interface from one kernel version to another. On shutting down the mixer state is stored in /var/lib/alsa/asound.state. After booting with the new kernel, "alsactl restore" tries to feed this asound.state to the (new 'n' improved) driver and the driver gags because the mixer descriptions have changed. /etc/init.d/alsa-utils already runs alsactl with the "-F" option in an attempt to deal with this, but apparently that is not good enough. It would be nice if alsactl and the driver dealt with this problem in a better way. alsa-utils should be changed so that instead of doing a mere "alsactl restore" it takes the following steps in the "start" method (on boot): Move old asound.state to asound.state_PREV Run "alsactl store" to create new asound.state Run asound.state through a processor which sets "sane" default values without changing the structure of the file Use the values in asound.state_PREV to update the values in the new asound.state without changing the structure of the file Run "alsactl restore" Mandriva already does something like this. Any volunteers to implement this? ;) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 12:22:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 13:22:05 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050929122205.9C705303C03C@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |jdthood at yahoo.co.uk Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 12:22:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 13:22:55 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050929122255.B16EE303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |hcbrugmans at gmail.com ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 13:22 UTC ------- *** Bug 15544 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 12:54:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 13:54:43 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit on Intel ICH6 IDE In-Reply-To: Message-ID: <20050929125443.EBACE303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk ------- Additional Comments From mjg59 at codon.org.uk 2005-09-29 13:54 UTC ------- This is probably due to the system using the ahci driver now rather than the ata_piix one. This ought to be correct, but it's possible that there's a minor bug in the ahci driver. Could you check /proc/scsi in order to ensure that ahci is actually bound to your devices? If so, then it's almost certainly just a cosmetic driver bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:00:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:00:43 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit on Intel ICH6 IDE In-Reply-To: Message-ID: <20050929130043.54979303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From mschering at intermesh.nl 2005-09-29 14:00 UTC ------- There is a dir ahci in there: root at mschering:/proc/scsi# ls ahci device_info scsi root at mschering:/proc/scsi# cd ahci/ root at mschering:/proc/scsi/ahci# ls 0 1 2 3 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:14:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:14:29 +0100 (BST) Subject: [Bug 15634] Hard drive LED constantly lit on Intel ICH6 IDE In-Reply-To: Message-ID: <20050929131429.F1730303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15634 Ubuntu | linux ------- Additional Comments From tillm at optushome.com.au 2005-09-29 14:14 UTC ------- [quote]Could you check /proc/scsi in order to ensure that ahci is actually bound to your devices?[/quote] Sorry this is a bit above me in linux. How do I do that exactly, or is what Merijn posted correct? If so, mine is exactly the same! -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:14:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:14:32 +0100 (BST) Subject: [Bug 16255] Login sound looping, unable to login In-Reply-To: Message-ID: <20050929131432.EE836303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16255 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:14 UTC ------- (In reply to comment #0) > My hardware is: > AMD Athlon 64 3000+ > MSI MS-7093 (ver 1.0) > 1Gig DDR 400 Dual channel > Western digital WD200 HDD What is your sound hardware? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:14:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:14:53 +0100 (BST) Subject: [Bug 16255] Login sound looping, unable to login In-Reply-To: Message-ID: <20050929131453.65BF7303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16255 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:14 UTC ------- Compare #14489. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:19:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:19:13 +0100 (BST) Subject: [Bug 14827] Sound from ES1978 Maestro 2E garbled when USB CD-ROM drive plugged in In-Reply-To: Message-ID: <20050929131913.2CA62303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Garbled sound |Sound from ES1978 Maestro 2E | |garbled when USB CD-ROM | |drive plugged in -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:24:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:24:54 +0100 (BST) Subject: [Bug 11274] via8235 sound problems, via P4MAM-V mobo In-Reply-To: Message-ID: <20050929132454.DB7A0303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11274 Ubuntu | linux jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEW Ever Confirmed|0 |1 ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:24 UTC ------- Try booting with each of the following kernel options: acpi=off pci=noacpi noapic nolapic -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:25:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:25:12 +0100 (BST) Subject: [Bug 14827] Sound from ES1978 Maestro 2E garbled when USB CD-ROM drive plugged in In-Reply-To: Message-ID: <20050929132512.1C8AD303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14827 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:25 UTC ------- Try booting with each of the following kernel options: acpi=off pci=noacpi noapic nolapic -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:30:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:30:03 +0100 (BST) Subject: [Bug 10155] sound still comes out of speakers when PCM volume is set to 0 In-Reply-To: Message-ID: <20050929133003.60E20303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10155 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:30 UTC ------- (In reply to comment #2) > I am having the same problem but for me this occurs when when "Master" is set to > zero. This is NOT the same problem. The original report was that "sound still comes out of speakers when PCM volume is set to 0". Please file a separate bug report describing your (different) symptoms. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:30:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:30:23 +0100 (BST) Subject: [Bug 10155] sound still comes out of speakers when PCM volume is set to 0 In-Reply-To: Message-ID: <20050929133023.B3B40303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10155 Ubuntu | linux jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |INVALID ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:30 UTC ------- The original submitter was asked for more information four months ago. In the absence of additional information... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:31:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:31:38 +0100 (BST) Subject: [Bug 16255] Login sound looping, unable to login In-Reply-To: Message-ID: <20050929133138.E2D51303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16255 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:31 UTC ------- Try booting with each of the following kernel options: acpi=off pci=noacpi noapic nolapic -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:35:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:35:22 +0100 (BST) Subject: [Bug 5383] sound distortion when scrolling (snd_intel8x0 and savage) In-Reply-To: Message-ID: <20050929133522.6345A303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5383 Ubuntu | linux jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:35 UTC ------- (In reply to comment #9) > The problem does not exist on hoary running X.org. OK -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:37:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:37:50 +0100 (BST) Subject: [Bug 6683] Crystal sound device not detected In-Reply-To: Message-ID: <20050929133750.5EA2A303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=6683 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:37 UTC ------- See also #4787. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 13:42:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 14:42:17 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to Intel high definition audio sound chipset In-Reply-To: Message-ID: <20050929134217.D648D303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |NEEDINFO ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 14:42 UTC ------- (In reply to comment #8) > sudo wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.9a.tar.bz2 > sudo tar -jxvf alsa-driver-1.0.9a.tar.bz2 > cd alsa-driver-1.0.9a > sudo ./configure > sudo make > sudo make install ... > So yeah it was the hda-intel driver. I only had to modprobe it once. Sound just > worked on the next boot and thenafter. As Breezy now comes with ALSA 1.0.9, you should be able to boot Breezy. Can you confirm? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 14:19:55 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 15:19:55 +0100 (BST) Subject: [Bug 16626] New: insmod varios errors: inserting '/lib/modules/2.6.12-9-amd64-k8/kernel/drivers/video/ Message-ID: Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16626 Ubuntu | kernel-package Summary: insmod varios errors: inserting '/lib/modules/2.6.12-9- amd64-k8/kernel/drivers/video/ Product: Ubuntu Version: unspecified Platform: Other OS/Version: other Status: UNCONFIRMED Severity: normal Priority: P2 Component: kernel-package AssignedTo: ben.collins at ubuntu.com ReportedBy: javiermon at gmail.com QAContact: kernel-bugs at lists.ubuntu.com I have some error displayed on my amd64 box: insmod: error inserting '/lib/modules/2.6.12-9-amd64-k8/kernel/drivers/video/.../tileblit.ko': -1 File exists There are a bunch or error like this with different kernel modules: tileblit.ko, imgblt.ko, tcursos.ko, fbcon.ko, etc. They are displayed on the main console (ctrl+alt+f1). The kernel boots correctly, X start normally, and everything seems fine. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 14:20:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 15:20:24 +0100 (BST) Subject: [Bug 16626] insmod varios errors: inserting '/lib/modules/2.6.12-9-amd64-k8/kernel/drivers/video/ In-Reply-To: Message-ID: <20050929142024.34954303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16626 Ubuntu | kernel-package ------- Additional Comments From javiermon at gmail.com 2005-09-29 15:20 UTC ------- Created an attachment (id=4202) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4202&action=view) dmesg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 14:21:14 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 15:21:14 +0100 (BST) Subject: [Bug 16626] insmod varios errors: inserting '/lib/modules/2.6.12-9-amd64-k8/kernel/drivers/video/ In-Reply-To: Message-ID: <20050929142114.03568303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16626 Ubuntu | kernel-package ------- Additional Comments From javiermon at gmail.com 2005-09-29 15:21 UTC ------- Created an attachment (id=4203) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4203&action=view) /var/log/kern.log -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 14:21:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 15:21:59 +0100 (BST) Subject: [Bug 16626] insmod varios errors: inserting '/lib/modules/2.6.12-9-amd64-k8/kernel/drivers/video/ In-Reply-To: Message-ID: <20050929142159.0C269303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16626 Ubuntu | kernel-package ------- Additional Comments From javiermon at gmail.com 2005-09-29 15:21 UTC ------- uname -a shows: Linux A64 2.6.12-9-amd64-k8 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 15:34:52 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 16:34:52 +0100 (BST) Subject: [Bug 14931] Missing libata "passthrough" functionality In-Reply-To: Message-ID: <20050929153452.3920D303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14931 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |PENDINGUPLOAD -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 15:44:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 16:44:13 +0100 (BST) Subject: [Bug 15100] Reboot fails in vmware In-Reply-To: Message-ID: <20050929154413.34F00303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15100 Ubuntu | linux ------- Additional Comments From kenden at free.fr 2005-09-29 16:44 UTC ------- I experienced the same problem with Ubuntu 5.10 colony 5, with Vmware 4.5.2. After the first stage of installation. The screen prints: "Please stand by while rebooting the system. Restarting the system" forever. Afterwards, I get "Grub error 18" and cannot boot Ubuntu, but that might be a different bug. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 15:53:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 16:53:51 +0100 (BST) Subject: [Bug 7981] nautilus does not warn when copying files to read only usb flash drive In-Reply-To: Message-ID: <20050929155351.6825D303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7981 Ubuntu | linux ------- Additional Comments From samtygier at yahoo.co.uk 2005-09-29 16:53 UTC ------- i have tested use the breezy preview live cd and the symptoms persist (i could try colony 5 next week) ubuntu at ubuntu:~$ uname -a Linux ubuntu 2.6.12-8-powerpc #1 Tue Aug 30 23:03:49 BST 2005 ppc GNU/Linux dmesg in plugging the device with it set to ro [ 1532.259790] usb 2-1: new full speed USB device using ohci_hcd and address 6 [ 1532.370080] scsi5 : SCSI emulation for USB Mass Storage devices [ 1532.373879] usb-storage: device found at 6 [ 1532.373891] usb-storage: waiting for device to settle before scanning [ 1537.377862] Vendor: Generic Model: Flash Disk Rev: 7.77 [ 1537.377894] Type: Direct-Access ANSI SCSI revision: 02 [ 1537.390635] SCSI device sdb: 256000 512-byte hdwr sectors (131 MB) [ 1537.390651] sdb: assuming drive cache: write through [ 1537.402840] SCSI device sdb: 256000 512-byte hdwr sectors (131 MB) [ 1537.402854] sdb: assuming drive cache: write through [ 1537.402867] /dev/scsi/host5/bus0/target0/lun0: p1 [ 1537.415094] Attached scsi disk sdb at scsi5, channel 0, id 0, lun 0 [ 1537.419294] usb-storage: device scan complete [ 1538.269583] FAT: utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! and the output from mount /dev/sdb1 on /media/usbdisk type vfat (rw,noexec,nosuid,nodev,quiet,shortname=winnt,uid=1000,gid=1000,umask=077,iocharset=utf8) and if i try to write a file ubuntu at ubuntu:/media$ mkdir /media/usbdisk/foo ubuntu at ubuntu:/media$ ls /media/usbdisk/ foo ubuntu at ubuntu:/media$ sync ubuntu at ubuntu:/media$ ls /media/usbdisk/ there is a big dump of stuff in dmesg after the sync command [ 1728.841673] SCSI error : <5 0 0 0> return code = 0x8000002 [ 1728.841688] sdb: Current: sense key: Data Protect [ 1728.841695] Additional sense: Write protected [ 1728.841712] Info fld=0x0 [ 1728.841717] end_request: I/O error, dev sdb, sector 64 [ 1728.841727] Buffer I/O error on device sdb1, logical block 1 [ 1728.841735] lost page write due to I/O error on sdb1 [ 1728.855674] SCSI error : <5 0 0 0> return code = 0x8000002 [ 1728.855688] sdb: Current: sense key: Data Protect [ 1728.855695] Additional sense: Write protected [ 1728.855712] Info fld=0x0 [ 1728.855717] end_request: I/O error, dev sdb, sector 299 [ 1728.855728] Buffer I/O error on device sdb1, logical block 236 [ 1728.855735] lost page write due to I/O error on sdb1 [ 1728.869674] SCSI error : <5 0 0 0> return code = 0x8000002 [ 1728.869688] sdb: Current: sense key: Data Protect [ 1728.869695] Additional sense: Write protected [ 1728.869711] Info fld=0x0 [ 1728.869717] end_request: I/O error, dev sdb, sector 534 [ 1728.869728] Buffer I/O error on device sdb1, logical block 471 [ 1728.869735] lost page write due to I/O error on sdb1 [ 1728.883689] SCSI error : <5 0 0 0> return code = 0x8000002 [ 1728.883703] sdb: Current: sense key: Data Protect [ 1728.883710] Additional sense: Write protected [ 1728.883726] Info fld=0x0 [ 1728.883732] end_request: I/O error, dev sdb, sector 574 [ 1728.883743] Buffer I/O error on device sdb1, logical block 511 [ 1728.883750] lost page write due to I/O error on sdb1 [ 1728.897675] SCSI error : <5 0 0 0> return code = 0x8000002 [ 1728.897689] sdb: Current: sense key: Data Protect [ 1728.897696] Additional sense: Write protected [ 1728.897713] Info fld=0x0 [ 1728.897718] end_request: I/O error, dev sdb, sector 575 [ 1728.897729] Buffer I/O error on device sdb1, logical block 512 [ 1728.897737] lost page write due to I/O error on sdb1 [ 1728.911675] SCSI error : <5 0 0 0> return code = 0x8000002 [ 1728.911690] sdb: Current: sense key: Data Protect [ 1728.911697] Additional sense: Write protected [ 1728.911713] Info fld=0x0 [ 1728.911718] end_request: I/O error, dev sdb, sector 576 [ 1728.911730] Buffer I/O error on device sdb1, logical block 513 [ 1728.911737] lost page write due to I/O error on sdb1 [ 1728.925670] SCSI error : <5 0 0 0> return code = 0x8000002 [ 1728.925685] sdb: Current: sense key: Data Protect [ 1728.925692] Additional sense: Write protected [ 1728.925708] Info fld=0x0 [ 1728.925713] end_request: I/O error, dev sdb, sector 577 [ 1728.925724] Buffer I/O error on device sdb1, logical block 514 [ 1728.925731] lost page write due to I/O error on sdb1 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 15:56:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 16:56:39 +0100 (BST) Subject: [Bug 8320] pcmcia modem not working on powerbook In-Reply-To: Message-ID: <20050929155639.AFBA2303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=8320 Ubuntu | linux ------- Additional Comments From samtygier at yahoo.co.uk 2005-09-29 16:56 UTC ------- ok, i had a go with the breezy preview, no change really. i could get colony 5 next week, if there are new changes. ubuntu at ubuntu:~$ uname -a Linux ubuntu 2.6.12-8-powerpc #1 Tue Aug 30 23:03:49 BST 2005 ppc GNU/Linux dmesg on card insert [ 494.078775] cs: memory probe 0x80000000-0x80ffffff: excluding 0x80000000-0x800fffff [ 494.343683] Oops: kernel access of bad area, sig: 11 [#1] [ 494.343702] NIP: C012C2FC LR: C012F78C SP: E22D9980 REGS: e22d98d0 TRAP: 0300 Not tainted [ 494.343713] MSR: 00009032 EE: 1 PR: 0 FP: 0 ME: 1 IR/DR: 11 [ 494.343720] DAR: 00000014, DSISR: 40000000 [ 494.343727] TASK = ee97a660[22636] 'cardmgr' THREAD: e22d8000 [ 494.343733] Last syscall: 54 [ 494.343737] GPR00: 00000000 E22D9980 EE97A660 C02685A8 C030630C 00000000 E22D9A48 EF71561C [ 494.343754] GPR08: 00000000 E22D8000 00000000 00000000 42008442 1002290C 10010000 F2145748 [ 494.343770] GPR16: F2380000 E22D9D00 F214581C DBBB7400 DBBB7418 00000000 F214581C 00000000 [ 494.343787] GPR24: 00000000 DAD6A614 EE943C00 C0270000 C02685A8 00000000 C0270000 C030630C [ 494.343805] NIP [c012c2fc] uart_remove_one_port+0x38/0xf0 [ 494.343826] LR [c012f78c] serial8250_register_port+0x138/0x1ec [ 494.343838] Call trace: [ 494.343844] [c012f78c] serial8250_register_port+0x138/0x1ec [ 494.343855] [f2143300] setup_serial+0x7c/0x13c [serial_cs] [ 494.343873] [f2143f08] serial_event+0xa40/0xb10 [serial_cs] [ 494.343885] [f237b048] pcmcia_register_client+0x2fc/0x33c [pcmcia] [ 494.343917] [f2143234] serial_attach+0xc0/0x110 [serial_cs] [ 494.343929] [f237a494] pcmcia_device_probe+0xbc/0x128 [pcmcia] [ 494.343948] [c013513c] driver_probe_device+0x4c/0xa8 [ 494.343959] [c0135208] device_attach+0x70/0xf8 [ 494.343969] [c01359a0] bus_rescan_devices_helper+0x3c/0x68 [ 494.343979] [c0134e38] __bus_for_each_dev+0x58/0xb0 [ 494.343989] [c0135a2c] bus_rescan_devices+0x60/0xbc [ 494.343998] [f237c398] ds_ioctl+0x984/0xaa4 [pcmcia] [ 494.344016] [c007b5e0] do_ioctl+0x68/0x9c [ 494.344031] [c007b6cc] vfs_ioctl+0xb8/0x400 [ 494.344040] [c007ba54] sys_ioctl+0x40/0x74 if i run cardctl info or cardctl ident they both hang. wvdialconf cannot find a modem. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 16:19:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 17:19:03 +0100 (BST) Subject: [Bug 15100] Reboot fails in vmware In-Reply-To: Message-ID: <20050929161903.062D6303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15100 Ubuntu | linux kenden at free.fr changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kenden at free.fr -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 17:26:12 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 18:26:12 +0100 (BST) Subject: [Bug 16340] Halts instead of rebooting In-Reply-To: Message-ID: <20050929172612.9C713303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16340 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Status|ASSIGNED |NEW Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|When You Choose "Reboot" |Halts instead of rebooting |Ubuntu Shuts Down Instead. | ------- Additional Comments From mdz at ubuntu.com 2005-09-29 18:26 UTC ------- Please attach /var/log/dmesg, and the output from "sudo dmidecode". Try booting with the "reboot=b" or "reboot=h" option -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 17:26:31 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 18:26:31 +0100 (BST) Subject: [Bug 16046] Processor sometimes locked at 800 Mhz, random, both with and without powernowd In-Reply-To: Message-ID: <20050929172631.A0A9A303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16046 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-29 18:26 UTC ------- No such problem with my T42 running breezy -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:04:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:04:51 +0100 (BST) Subject: [Bug 16608] Acer Aspire 1802 doesn't power off In-Reply-To: Message-ID: <20050929180451.074C7303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16608 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|ubuntu-base |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|Can't shutdown system |Acer Aspire 1802 doesn't | |power off ------- Additional Comments From mdz at ubuntu.com 2005-09-29 19:04 UTC ------- Please attach "dmesg" and "sudo dmidecode" output. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:24:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:24:32 +0100 (BST) Subject: [Bug 16608] Acer Aspire 1802 doesn't power off In-Reply-To: Message-ID: <20050929182432.53671303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16608 Ubuntu | linux ------- Additional Comments From paul.hendrick at gmail.com 2005-09-29 19:24 UTC ------- Created an attachment (id=4207) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4207&action=view) dmsg output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:24:56 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:24:56 +0100 (BST) Subject: [Bug 16608] Acer Aspire 1802 doesn't power off In-Reply-To: Message-ID: <20050929182456.A8160303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16608 Ubuntu | linux ------- Additional Comments From paul.hendrick at gmail.com 2005-09-29 19:24 UTC ------- Created an attachment (id=4208) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4208&action=view) dmidecode output -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:25:19 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:25:19 +0100 (BST) Subject: [Bug 16608] Acer Aspire 1802 doesn't power off In-Reply-To: Message-ID: <20050929182519.903E3303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16608 Ubuntu | linux ------- Additional Comments From paul.hendrick at gmail.com 2005-09-29 19:25 UTC ------- here's the ouput you requests... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:36:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:36:54 +0100 (BST) Subject: [Bug 16632] Sounds still exists when Master is set to 0 In-Reply-To: Message-ID: <20050929183654.2FF47303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16632 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jdthood at yahoo.co.uk, | |crimsun at fungus.sh.nu AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|alsa-base |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:37:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:37:53 +0100 (BST) Subject: [Bug 16633] 8139too error is confusing In-Reply-To: Message-ID: <20050929183753.8797A303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16633 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|debzilla at ubuntu.com |ben.collins at ubuntu.com Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com Summary|initramfs image asks for |8139too error is confusing |driver 8139too | ------- Additional Comments From mdz at ubuntu.com 2005-09-29 19:37 UTC ------- Ben, can we lower the log level of this message so that users don't see it? It's irrelevant since we try both drivers automatically, and users are confused by it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:52:44 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:52:44 +0100 (BST) Subject: [Bug 13102] on thinkpad T43p, hibernate sometimes fails to resume In-Reply-To: Message-ID: <20050929185244.3A717303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13102 Ubuntu | acpi-support puff at darksleep.com changed: What |Removed |Added ---------------------------------------------------------------------------- Component|linux |acpi-support ------- Additional Comments From puff at darksleep.com 2005-09-29 19:52 UTC ------- See bug 8586. I finally noticed this message in dmesg: "swsusp: Resume mismatch: version" In a possibly-related issue (I'll open a new bug for that) swsusp "loses" the wireless hardware on resume. I've found that "modprobe -r ipw2200" followed by "modprobe ipw2200" seems to bring it back, but it still doesn't show up in ifconfig or iwconfig output; I have to bring up -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:57:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:57:57 +0100 (BST) Subject: [Bug 7956] on powerbook sound successively quieter until unaudible In-Reply-To: Message-ID: <20050929185757.4F0E3303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7956 Ubuntu | linux jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bertranddekoninck at wanadoo.fr ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 19:57 UTC ------- *** Bug 15161 has been marked as a duplicate of this bug. *** -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 18:58:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 19:58:42 +0100 (BST) Subject: [Bug 7956] on powerbook sound successively quieter until unaudible In-Reply-To: Message-ID: <20050929185842.C081F303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7956 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 19:58 UTC ------- See similar report in https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1010 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 19:00:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 20:00:59 +0100 (BST) Subject: [Bug 13102] on thinkpad T43p, hibernate sometimes fails to resume In-Reply-To: Message-ID: <20050929190059.6E996303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13102 Ubuntu | acpi-support ------- Additional Comments From puff at darksleep.com 2005-09-29 20:00 UTC ------- See also bugs 8586 and 16646. I finally noticed this message in dmesg: "swsusp: Resume mismatch: version" -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 19:04:54 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 20:04:54 +0100 (BST) Subject: [Bug 16632] Sounds still exists when Master is set to 0 In-Reply-To: Message-ID: <20050929190454.94277303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16632 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 20:04 UTC ------- Please provide the contents of /proc/asound/cards and the output of "lspci -v". Possibly relevant: https://bugtrack.alsa-project.org/alsa-bug/view.php?id=1441 . -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 19:08:15 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 20:08:15 +0100 (BST) Subject: [Bug 16632] Sounds still exists when Master is set to 0 In-Reply-To: Message-ID: <20050929190815.3FACD303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16632 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-29 20:08 UTC ------- (In reply to comment #0) > If I am using the line out. This is not a sentence. > The volume is controlled by the "Master" control. I can Set the Master > volume to zero and sound still comes through the line out. This is a contradiction. Please clarify. > If I "Mute" the "Master" volume then sound stops. > > This also happens with the "PC Speakers" volume. > Except it plays through the internal speakers rather than the line out. Exactly _what_ also happens? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 19:10:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 20:10:39 +0100 (BST) Subject: [Bug 15975] Occasional hard lockups on T43 Thinkpad In-Reply-To: Message-ID: <20050929191039.D39F7303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15975 Ubuntu | linux ------- Additional Comments From kozz at pegasos.org 2005-09-29 20:10 UTC ------- I had the same problem. Seems like it was related to the SATA drivers and heavy I/O, since it was easy to lock it when using I/O on the hardrive. This problem was however solved from 2.6.12-8, and has been working without problem since that, at least for me. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 19:53:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 20:53:11 +0100 (BST) Subject: [Bug 16633] 8139too error is confusing In-Reply-To: Message-ID: <20050929195311.8AA46303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16633 Ubuntu | linux ben.collins at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |PENDINGUPLOAD ------- Additional Comments From ben.collins at ubuntu.com 2005-09-29 20:53 UTC ------- Sure thing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 19:53:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 20:53:34 +0100 (BST) Subject: [Bug 16473] e100 fails to load interface after hibernation on IBM X30 laptop. In-Reply-To: Message-ID: <20050929195334.50286303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16473 Ubuntu (laptop) | linux ------- Additional Comments From jesper at krogh.cc 2005-09-29 20:53 UTC ------- I google'd and found this one that reports the same problem on an R21 on Hoary. The suggestion is to use the eepro100 driver instead seems to work for some people but brings up an "defect" interface for other. The latter is the case for me. http://www.vobcopy.org/pipermail/r31/2005-June/thread.html#653 This seems to be the same bug in FC2, but it is closed as fixed. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=122621 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 20:55:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 21:55:40 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050929205540.5C06F303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-29 21:55 UTC ------- No luck reproducing on my ATI/ALI based i386 laptop ... I get 35 MB/sec whatever is running. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 20:56:23 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 21:56:23 +0100 (BST) Subject: [Bug 16632] Sounds still exists when Master is set to 0 In-Reply-To: Message-ID: <20050929205623.A2FF8303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16632 Ubuntu | linux ------- Additional Comments From dufresnj at lafayette.edu 2005-09-29 21:56 UTC ------- Created an attachment (id=4218) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4218&action=view) The output from lspci -v -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 20:59:29 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Thu, 29 Sep 2005 21:59:29 +0100 (BST) Subject: [Bug 16632] Sounds still exists when Master is set to 0 In-Reply-To: Message-ID: <20050929205929.8D485303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16632 Ubuntu | linux ------- Additional Comments From dufresnj at lafayette.edu 2005-09-29 21:59 UTC ------- Ok. When I have speakers plugged into the line out, the "Master" volume controls the volume level. If I drag the volume down to 0 the volume is softer but definately still there. If I mute the volume it stops. If I unplug the speakers sound comes out through the keyboard. This volume is controled by "PC Speaker" volume. I can do the same thing as above. The point is sound still comes out when the volume is set to 0. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Thu Sep 29 23:10:17 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 00:10:17 +0100 (BST) Subject: [Bug 16244] Vaio A497XP doesn't reboot In-Reply-To: Message-ID: <20050929231017.8C1E4303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16244 Ubuntu (laptop) | linux ------- Additional Comments From mark-ubuntu-vaio-laptop-testing-bugzilla at mousepushers.com 2005-09-30 00:10 UTC ------- Matt, I've spent the evening on the Ubuntu IRC channels, and after asking around, had it confirmed that if I do a full update (apt-get dist-upgrade) from a preview-release of Breezy, I should theoretically be up to date in terms of having effectively a Colony-5 install. This sounds plausible and logical to me, but is it correct? If so - then unfortunately, the problems are still present. For future reference, when Breezy final is released, is there an upgrade path from the current install, or would full re-installation be advisable? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 00:57:11 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 01:57:11 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930005711.1077D303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From ogra at ubuntu.com 2005-09-30 01:57 UTC ------- it definately doesnt happen on my x86 desktop PC the laptop where it happens for me is a acer 1520 amd64, but since i know the aforementioned Sony Vaio very well and know its x86 this seems not to be arch specific... probably a laptop thing ... -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 01:16:32 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 02:16:32 +0100 (BST) Subject: [Bug 16340] Halts instead of rebooting In-Reply-To: Message-ID: <20050930011632.9F73E303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16340 Ubuntu | linux ------- Additional Comments From jlacroix82 at gmail.com 2005-09-30 02:16 UTC ------- Created an attachment (id=4223) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4223&action=view) DMESG -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 01:17:22 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 02:17:22 +0100 (BST) Subject: [Bug 16340] Halts instead of rebooting In-Reply-To: Message-ID: <20050930011722.6B462303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16340 Ubuntu | linux ------- Additional Comments From jlacroix82 at gmail.com 2005-09-30 02:17 UTC ------- Created an attachment (id=4224) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4224&action=view) dmidecode -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 01:17:57 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 02:17:57 +0100 (BST) Subject: [Bug 16340] Halts instead of rebooting In-Reply-To: Message-ID: <20050930011757.33CB5303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16340 Ubuntu | linux ------- Additional Comments From jlacroix82 at gmail.com 2005-09-30 02:17 UTC ------- I did reboot=b at the command line, nothing happened. I rebooted and it did the same thing. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 02:30:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 03:30:10 +0100 (BST) Subject: [Bug 15465] Hotplug hangs on boot due to Intel high definition audio sound chipset In-Reply-To: Message-ID: <20050930023010.9AA20303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15465 Ubuntu | linux ------- Additional Comments From myles at myles.id.au 2005-09-30 03:30 UTC ------- (In reply to comment #9) > (In reply to comment #8) > > sudo wget ftp://ftp.alsa-project.org/pub/driver/alsa-driver-1.0.9a.tar.bz2 > > sudo tar -jxvf alsa-driver-1.0.9a.tar.bz2 > > cd alsa-driver-1.0.9a > > sudo ./configure > > sudo make > > sudo make install > ... > > So yeah it was the hda-intel driver. I only had to modprobe it once. Sound just > > worked on the next boot and thenafter. > > As Breezy now comes with ALSA 1.0.9, you should be able to boot Breezy. > Can you confirm? Is there a new preview release? This bug appears in the current Breezy Preview 1 (8th September) release. It did not appear in hoary, the above notes are just a reference of how I got it working in hoary. I think this issue is related to the current alsa release combined with the current ubuntu kernel. Do you need any more info? I've posted lsmod, lspci, syslog messages, is there anything more I can add? The only way I can boot breezy now is by disabling my soundcard in the BIOS and obviously this is not ideal ... Thanks, -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 02:36:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 03:36:01 +0100 (BST) Subject: [Bug 16302] analog device doesn't claim user's PNP device id In-Reply-To: Message-ID: <20050930023601.3DA11303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16302 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |scott-bugs at ubuntu.com AssignedTo|scott-bugs at ubuntu.com |ben.collins at ubuntu.com Status|NEEDINFO |UNCONFIRMED QAContact| |kernel-bugs at lists.ubuntu.com Summary|joypad does not work until |analog device doesn't claim |modprobe, and no GUI |user's PNP device id ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-30 03:36 UTC ------- Do you know which of those PNP devices is your joystick? If so, you could add "alias pnp:dPNPxxxx analog" to /etc/modprobe.d/isapnp -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 02:42:05 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 03:42:05 +0100 (BST) Subject: [Bug 15068] CardBus not functional, no IRQ, ENE CB1410 CardBus In-Reply-To: Message-ID: <20050930024205.36105303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15068 Ubuntu | linux ------- Additional Comments From carey at internode.on.net 2005-09-30 03:42 UTC ------- Look here: 00100000-1bfcffff : System RAM 00100000-00261e67 : Kernel code 00261e68-00320bff : Kernel data 1bfd0000-1bfddfff : ACPI Tables 1bfde000-1bffffff : ACPI Non-volatile Storage 1c000000-1c000fff : 0000:00:0a.0 1c000000-1c000fff : yenta_socket >From that I've gathered that my Yenta cardbus adapter is being overlapped by my RAM?? So I think all I need to do to fix it is to pass the right "reserve=" option to my kernel. (just like here: http://lists.infradead.org/pipermail/linux-pcmcia/2004-March/000633.html) Am I on the right track??? PS: My patching attempts failed miserably (from lack of knowledge). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 02:58:01 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 03:58:01 +0100 (BST) Subject: [Bug 13102] on thinkpad T43p, hibernate sometimes fails to resume In-Reply-To: Message-ID: <20050930025801.44CC7303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13102 Ubuntu | acpi-support mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-30 03:58 UTC ------- That error implies that you're booting into a different kernel than the one you suspended in, which doesn't seem to correlate to your original problem. Are you still seeing this failure with the latest kernel in Breezy? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 03:08:53 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 04:08:53 +0100 (BST) Subject: [Bug 10306] i2c_i801 breaks suspend on hp compaq nc6000 In-Reply-To: Message-ID: <20050930030853.BE0E8303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10306 Ubuntu | hotplug scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-30 04:08 UTC ------- What's this module used for? If we black-list it by default, nothing will be able to use it. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 03:11:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 04:11:43 +0100 (BST) Subject: [Bug 10306] i2c_i801 breaks suspend on hp compaq nc6000 In-Reply-To: Message-ID: <20050930031143.9BDFB303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10306 Ubuntu | hotplug ------- Additional Comments From mjg59 at codon.org.uk 2005-09-30 04:11 UTC ------- Communicating with the system i2c bus. There's no reason whatsoever to do this in a default setup. In theory there may be hardware sensors on there, but in general there aren't. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 03:12:40 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 04:12:40 +0100 (BST) Subject: [Bug 16473] e100 fails to load interface after hibernation on IBM X30 laptop. In-Reply-To: Message-ID: <20050930031240.33932303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16473 Ubuntu (laptop) | linux mjg59 at codon.org.uk changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|ben.collins at ubuntu.com |mjg59 at codon.org.uk Status|UNCONFIRMED |ASSIGNED Ever Confirmed|0 |1 ------- Additional Comments From mjg59 at codon.org.uk 2005-09-30 04:12 UTC ------- The latest acpi-support package has a new feature. Can you upgrade to it, and then add a line at the end of /etc/default/acpi-support saying MODULES_WHITELIST="e100" and see if that helps you? -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 03:30:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 04:30:51 +0100 (BST) Subject: [Bug 16469] Unable to create LVM In-Reply-To: Message-ID: <20050930033051.55E33303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16469 Ubuntu | linux fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|fabbione at ubuntu.com |ben.collins at ubuntu.com Status|NEEDINFO |UNCONFIRMED Component|UNKNOWN |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 03:31:10 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 04:31:10 +0100 (BST) Subject: [Bug 16469] kernel can't see vmware partitions. In-Reply-To: Message-ID: <20050930033110.2400F303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16469 Ubuntu | linux fabbione at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Unable to create LVM |kernel can't see vmware | |partitions. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 03:48:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 04:48:13 +0100 (BST) Subject: [Bug 5234] irq 11: nobody cared (try booting with the "irqpoll" option. In-Reply-To: Message-ID: <20050930034813.931B9303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=5234 Ubuntu | linux ------- Additional Comments From mdz at ubuntu.com 2005-09-30 04:48 UTC ------- I've booted without irqpoll and loaded the snd_via82xx.ko you provided, and so far it's working fine. With the old module, it would die very quickly when playing music. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 05:31:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 06:31:20 +0100 (BST) Subject: [Bug 16473] e100 fails to load interface after hibernation on IBM X30 laptop. In-Reply-To: Message-ID: <20050930053120.329D7303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16473 Ubuntu (laptop) | linux ------- Additional Comments From jesper at krogh.cc 2005-09-30 06:31 UTC ------- I upgraded acpi-support, but i didn't need to add the line since it was there allready. It didn't fix the problem and now there are not logmessages at resume about the e100 card at all. If i do a rmmod e100 && modprobe e100 afterwards the NIC successfully gets up and works. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 06:02:27 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 07:02:27 +0100 (BST) Subject: [Bug 10306] i2c_i801 breaks suspend on hp compaq nc6000 In-Reply-To: Message-ID: <20050930060227.C553F303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=10306 Ubuntu | hotplug scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-30 07:02 UTC ------- -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Fri, 30 Sep 2005 07:01:02 +0100 Source: hotplug Binary: hotplug hotplug-udeb Architecture: source Version: 0.0.20040329-22ubuntu12 Distribution: breezy Urgency: low Maintainer: Fumitoshi UKAI Changed-By: Scott James Remnant Description: hotplug - Linux Hotplug Scripts hotplug-udeb - Linux Hotplug Scripts Changes: hotplug (0.0.20040329-22ubuntu12) breezy; urgency=low . * Added debian/patches/95blacklist-i2c-i801 (Ubuntu: #10306). Files: bfd3c2ac6893bb9e45a712a695d1eecc 695 admin standard hotplug_0.0.20040329-22ubuntu12.dsc 7e555c40ed8c0887439c6a06a2c250cd 57306 admin standard hotplug_0.0.20040329-22ubuntu12.diff.gz Package-Type: udeb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.1 (GNU/Linux) iD8DBQFDPNTiSnQiFMl4yK4RAnq9AJ0SkuYz4rwBqhPURrt/FD6sDtjIogCfa8tL l7c9IvpiJj1J6SGf83uVPBQ= =3FJs -----END PGP SIGNATURE----- -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 06:26:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 07:26:34 +0100 (BST) Subject: [Bug 4787] ISAPNP Crystal Sound card in IBM Thinkpad 380ED not detected In-Reply-To: Message-ID: <20050930062634.9ECF6303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=4787 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|scott-bugs at ubuntu.com |ben.collins at ubuntu.com Status|ASSIGNED |NEW QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 07:45:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 08:45:43 +0100 (BST) Subject: [Bug 13102] on thinkpad T43p, hibernate sometimes fails to resume In-Reply-To: Message-ID: <20050930074543.3F3FF303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=13102 Ubuntu | acpi-support ------- Additional Comments From mdke at ubuntu.com 2005-09-30 08:45 UTC ------- I will hibernate it overnight tonight to test. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 08:22:37 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 09:22:37 +0100 (BST) Subject: [Bug 16302] analog device doesn't claim user's PNP device id In-Reply-To: Message-ID: <20050930082237.C6B87303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16302 Ubuntu | linux ------- Additional Comments From maurizio.colucci at gmail.com 2005-09-30 09:22 UTC ------- > Do you know which of those PNP devices is your joystick? I don't know. If you need this info I can try them one at a time. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 08:26:59 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 09:26:59 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930082659.BA6CA303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-30 09:26 UTC ------- Created an attachment (id=4225) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4225&action=view) debconf-show console-data from sony vaio Ok... sorry for the late report, but yesterday I didn't have a chance to get my hands on this sony laptop. I dpkg-reconfigured console-data, rebooted, no change. showkey -k gives me on the console for altGr: 0x64 0xe4 showkey -s gives me on the console for altGr: 0xe0 0x38 0xe0 0xb8 I'll attach now a dump of debconf-show console-data and dumpkeys. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 08:28:09 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 09:28:09 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930082809.474CE303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux sh at sourcecode.de changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #4225 is|0 |1 obsolete| | -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 08:28:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 09:28:34 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930082834.567BB303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-30 09:28 UTC ------- Created an attachment (id=4226) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4226&action=view) debconf-show console-data from sony vaio -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 08:28:51 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 09:28:51 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930082851.C16FE303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-30 09:28 UTC ------- Created an attachment (id=4227) --> (http://bugzilla.ubuntu.com/attachment.cgi?id=4227&action=view) dumpkeys file -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 08:42:39 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 09:42:39 +0100 (BST) Subject: [Bug 16302] analog device doesn't claim user's PNP device id In-Reply-To: Message-ID: <20050930084239.ED8AD303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16302 Ubuntu | linux scott-bugs at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |mjg59 at codon.org.uk ------- Additional Comments From scott-bugs at ubuntu.com 2005-09-30 09:42 UTC ------- Matthew, don't suppose you know which of these would be a joystick -- none of them is listed in pnp.ids or even in isapnp.auto -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 08:44:34 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 09:44:34 +0100 (BST) Subject: [Bug 16632] Sounds still exists when Master is set to 0 In-Reply-To: Message-ID: <20050930084434.66F6F303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16632 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-30 09:44 UTC ------- > The point is sound still comes out when the volume is set to 0. Ahh. I missed that point entirely. Thanks for clarifying. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 09:19:49 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 10:19:49 +0100 (BST) Subject: [Bug 16632] Sounds still exists when Master is set to 0 In-Reply-To: Message-ID: <20050930091949.5356A303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16632 Ubuntu | linux ------- Additional Comments From jdthood at yahoo.co.uk 2005-09-30 10:19 UTC ------- If you look in the upstream BTS https://bugtrack.alsa-project.org/alsa-bug/view_all_bug_page.php you will find scores of reports of mixer malfunction. My advice is that you search for a report similar to yours; if you can't find one then create a new report. Provide all the information you can, including your lspci output and a link to this Ubuntu bug report. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 09:22:03 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 10:22:03 +0100 (BST) Subject: [Bug 15585] Muted sound after dist-upgrade from Hoary to Breezy In-Reply-To: Message-ID: <20050930092203.EBABC303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15585 Ubuntu | alsa-utils jdthood at yahoo.co.uk changed: What |Removed |Added ---------------------------------------------------------------------------- Severity|normal |minor Target Milestone|--- |Ubuntu 6.04 -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 09:28:25 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 10:28:25 +0100 (BST) Subject: [Bug 14477] Install fails to load on Dell Precision 380 -- workaround included In-Reply-To: Message-ID: <20050930092825.83E0B303C00A@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14477 Ubuntu | linux ------- Additional Comments From wingo at pobox.com 2005-09-30 10:28 UTC ------- Ping? :) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 09:41:13 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 10:41:13 +0100 (BST) Subject: [Bug 16011] Ubuntu 5.10 Preview (Breezy Badger) Panics w/ I2O based raid In-Reply-To: Message-ID: <20050930094113.2F42A303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16011 Ubuntu | linux ------- Additional Comments From peter.mcgowan at wintechnique.co.uk 2005-09-30 10:41 UTC ------- I can also reproduce this with a DPT PM3754U2 RAID controller (also i2o) using the 29th Sept Breezy installation iso. Peter -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 11:34:20 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 12:34:20 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930113420.9B8BE303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-30 12:34 UTC ------- Well... I just installed the Sony Vaio completly from scratch, and the error disappeared. I think we have an issue with upgrading from warty to hoary and/or to breezy. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 12:17:38 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 13:17:38 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930121738.49BBA303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ogra at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |NOTABUG ------- Additional Comments From ogra at ubuntu.com 2005-09-30 13:17 UTC ------- for me its definataly hardware related (my first guess)... writing this from a hoary liveCD where altgr used to work... i guess i have to buy a new keyboard :( ... closing -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 13:48:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 14:48:42 +0100 (BST) Subject: [Bug 16340] Halts instead of rebooting In-Reply-To: Message-ID: <20050930134842.29757303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16340 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-30 14:48 UTC ------- reboot=b is for the GRUB command line. Reboot your machine, and when GRUB comes up do "linux reboot=b" and hit enter. Then when the machine finishes booting, use the reboot command and let us know if it did in fact reboot correctly. The reboot=b is a kernel option. It will tell the kernel to use a specific method for rebooting the machine. If reboot=b doesn't work, try reboot=h next time. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 13:53:36 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 14:53:36 +0100 (BST) Subject: [Bug 16302] analog device doesn't claim user's PNP device id In-Reply-To: Message-ID: <20050930135336.CE45D303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16302 Ubuntu | linux ------- Additional Comments From mjg59 at codon.org.uk 2005-09-30 14:53 UTC ------- From http://download.microsoft.com/download/1/6/1/161ba512-40e2-4cc9-843a-923143f3456c/devids.txt PNPB02F Joystick/Game port I'm not convinced that all ISAPNP stuff shows up under /sys/bus/pnp -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 14:07:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 15:07:45 +0100 (BST) Subject: [Bug 16469] kernel can't see vmware partitions. In-Reply-To: Message-ID: <20050930140745.4B496303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16469 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-30 15:07 UTC ------- Download the Colony 5 CD: http://cdimage.ubuntu.com/releases/breezy/colony-5/ This is fixed in that version. Alternatively, you can try doing "modprobe buslogic" after the partition failure, and then return to partitioning where the drives should be available again. Going to mark this as fixed (already). -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 14:29:42 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 15:29:42 +0100 (BST) Subject: [Bug 15571] Reduced I/O performance when logged into GNOME In-Reply-To: Message-ID: <20050930142942.D5CC8303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=15571 Ubuntu | UNKNOWN ------- Additional Comments From javier.cabezas at gmail.com 2005-09-30 15:29 UTC ------- I have this poor performance before I login into Gnome: /dev/hdb: Timing cached reads: 640 MB in 2.01 seconds = 319.09 MB/sec Timing buffered disk reads: 2 MB in 5.27 seconds = 388.67 kB/sec but after the login, it gets even worse: /dev/hdb: Timing cached reads: 604 MB in 2.01 seconds = 300.84 MB/sec Timing buffered disk reads: 2 MB in 9.04 seconds = 226.51 kB/sec The info of hdparm about my disk is: dev/hdb: ATA device, with non-removable media Model Number: SAMSUNG SV1824D Serial Number: 0159J2FKB03618 Firmware Revision: MD100-31 Standards: Used: ATA/ATAPI-4 T13 1153D revision 17 Supported: 4 3 2 1 & some of 5 Configuration: Logical max current cylinders 16383 16383 heads 16 16 sectors/track 63 63 -- bytes/track: 34902 bytes/sector: 554 CHS current addressable sectors: 16514064 LBA user addressable sectors: 35606592 device size with M = 1024*1024: 17386 MBytes device size with M = 1000*1000: 18230 MBytes (18 GB) Capabilities: LBA, IORDY(cannot be disabled) Buffer size: 472.0kB bytes avail on r/w long: 4 Queue depth: 1 Standby timer values: spec'd by Vendor R/W multiple sector transfer: Max = 16 Current = ? DMA: mdma0 mdma1 mdma2 udma0 udma1 *udma2 udma3 udma4 Cycle time: min=120ns recommended=120ns PIO: pio0 pio1 pio2 pio3 pio4 Cycle time: no flow control=120ns IORDY flow control=120ns Commands/features: Enabled Supported: * NOP cmd * READ BUFFER cmd * WRITE BUFFER cmd * Host Protected Area feature set * DEVICE RESET cmd * Look-ahead * Write cache * Power Management feature set * SMART feature set HW reset results: CBLID- above Vih Device num = 1 And the lspci output is: 0000:00:00.0 Host bridge: Advanced Micro Devices [AMD] AMD-751 [Irongate] System Controller (rev 23) 0000:00:01.0 PCI bridge: Advanced Micro Devices [AMD] AMD-751 [Irongate] AGP Bridge (rev 01) 0000:00:04.0 ISA bridge: VIA Technologies, Inc. VT82C686 [Apollo Super South] (rev 1b) 0000:00:04.1 IDE interface: VIA Technologies, Inc. VT82C586A/B/VT82C686/A/B/VT823x/A/C PIPC Bus Master IDE (rev 06) 0000:00:04.2 USB Controller: VIA Technologies, Inc. VT82xxxxx UHCI USB 1.1 Controller (rev 0e) 0000:00:04.4 SMBus: VIA Technologies, Inc. VT82C686 [Apollo Super ACPI] (rev 20) 0000:00:0e.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL-8139/8139C/8139C+ (rev 10) 0000:00:0f.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11) 0000:00:0f.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11) 0000:00:10.0 Multimedia audio controller: Ensoniq ES1371 [AudioPCI-97] (rev 08) 0000:01:05.0 VGA compatible controller: nVidia Corporation NV17 [GeForce4 MX 440] (rev a3) Are these results normal?? I find buffered reads VERY slow. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 14:53:35 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 15:53:35 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930145335.80195303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux sh at sourcecode.de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |UNCONFIRMED Resolution|NOTABUG | ------- Additional Comments From sh at sourcecode.de 2005-09-30 15:53 UTC ------- No we shouldn't close it, until I reproduced the bug. I'll try to install warty on a vmware today...and will upgrade it to hoary and then to breezy. let's see what's happning...can be a xfree86/xorg/gnome piece which is not upgraded correctly. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 16:27:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 17:27:45 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930162745.A65D2303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-30 17:27 UTC ------- I'm not so sure I trust vmware for this type of debugging, but let us know how it goes. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 16:56:24 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 17:56:24 +0100 (BST) Subject: [Bug 7213] Live and Install hangs after SCSI initialization In-Reply-To: Message-ID: <20050930165624.B7723303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=7213 Ubuntu | linux ------- Additional Comments From loiosh at gmail.com 2005-09-30 17:56 UTC ------- (In reply to comment #51) > No response about this bug for a few months. I'd like to close it, but I'm just > going to lower the priority for awhile first. When I switched to a new motherboard and CPU the problem went away. I still have the same hardware but the livecd and installer no longer crash. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 17:01:43 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 18:01:43 +0100 (BST) Subject: [Bug 11555] powernowd loads wrong module, Acer Aspire 1683 In-Reply-To: Message-ID: <20050930170143.81419303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=11555 Ubuntu (laptop) | powernowd xhaker at gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |UNCONFIRMED Resolution|FIXED | ------- Additional Comments From xhaker at gmail.com 2005-09-30 18:01 UTC ------- cpufreq-detect.sh detects speedstep-centrino as the module to load, but acpi-cpufreq is still the one loaded. No apparent reason for it to fallback to acpi-cpufreq, no errors on dmesg. -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 18:55:45 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 19:55:45 +0100 (BST) Subject: [Bug 14563] Wireless firmware errors from ipw2x00 In-Reply-To: Message-ID: <20050930185545.996F6303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=14563 Ubuntu | linux mdz at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jane.silber at canonical.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 19:45:50 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 20:45:50 +0100 (BST) Subject: [Bug 16718] Install don't work with 53c895 SCSI card In-Reply-To: Message-ID: <20050930194550.E1245303C00F@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16718 Ubuntu | linux cjwatson at ubuntu.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|cjwatson at ubuntu.com |ben.collins at ubuntu.com Component|base-installer |linux QAContact| |kernel-bugs at lists.ubuntu.com -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 20:46:00 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 21:46:00 +0100 (BST) Subject: [Bug 16539] AltGR is not working anymore on text-console nor X In-Reply-To: Message-ID: <20050930204600.D7F5A303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16539 Ubuntu | linux ------- Additional Comments From sh at sourcecode.de 2005-09-30 21:46 UTC ------- Well... after upgrading from warty to hoary i found this directly after starting the upgrade: Automatically selecting en_US.UTF-8 locale in addition to en_US. xserver-xorg config warning: migrating xserver-xfree86 templates to xserver-xorg. xserver-xorg config warning: failed to infer keyboard layout from layout/lang 'us--' looks like something I searched for...and the default x11 config is setup for german keyboard. the locales are as well pointing to de_DE.UTF-8 at euro well see later after the final upgrade -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact. From bugzilla-daemon at bugzilla.ubuntu.com Fri Sep 30 20:48:33 2005 From: bugzilla-daemon at bugzilla.ubuntu.com (bugzilla-daemon at bugzilla.ubuntu.com) Date: Fri, 30 Sep 2005 21:48:33 +0100 (BST) Subject: [Bug 16718] Install don't work with 53c895 SCSI card In-Reply-To: Message-ID: <20050930204833.1A316303C00D@macquarie.warthogs.hbd.com> Please do not reply to this email. You can add comments at http://bugzilla.ubuntu.com/show_bug.cgi?id=16718 Ubuntu | linux ------- Additional Comments From ben.collins at ubuntu.com 2005-09-30 21:48 UTC ------- What are the last few lines showing before it freezes? Also, does it freeze completely, or is it just hanging (e.g. have you tried Alt+SysRQ+t?) -- Configure bugmail: http://bugzilla.ubuntu.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact.