<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.linux.debian.devel.kernel">
    <title>gmane.linux.debian.devel.kernel</title>
    <link>http://blog.gmane.org/gmane.linux.debian.devel.kernel</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43344"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43339"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43337"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43336"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43335"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43334"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43333"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43330"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43324"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43316"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43312"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43311"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43310"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43307"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43306"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43305"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43304"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43303"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43286"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43282"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43344">
    <title>Bug#507619: MODULES=most fails w/ cciss devices</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43344</link>
    <description>Package: initramfs-tools
Version: 0.92l
Severity: important
Tags: patch

A coworker reported a lenny install failure today. Turns out he had
asked the installer to run mkinitramfs w/ MODULES=dep, which I'd never
tried before:

dl380g5:/home/dannf# mkinitramfs-kpkg -o /boot/initrd.img-2.6.26-1-686 2.6.26-1-686
mkinitramfs: missing cciss/c0d0p root /dev/cciss/c0d0p1 /sys entry
mkinitramfs: workaround is MODULES=most
mkinitramfs: Error please report the bug

dep_add_modules() expects to find a /sys/block/cciss/c0d0p file, but
it should be trying /sys/block/cciss!c0d0:

dl380g5:/tmp/initramfs# ls /sys/block/
cciss!c0d0  loop0  loop3  loop6  ram0ram11  ram14  ram3  ram6  ram9
cciss!c0d1  loop1  loop4  loop7  ram1ram12  ram15  ram4  ram7  sr0
cciss!c0d2  loop2  loop5  md0 ram10ram13  ram2   ram5  ram8

The following patch seems to fix it for me:

--- /usr/share/initramfs-tools/hook-functions.orig2008-12-02 16:58:05.000000000 -0700
+++ /usr/share/initramfs-tools/hook-functions2008-12-02 16:58:53.000000000 -0700
&lt; at &gt;&lt; at &gt; -269,6 +269,9 &lt; at &gt;&lt; at &gt;
 root=${root#/dev/}
 block=$(awk "/^${root}/{print substr(\$5, 1, 3); exit}" \
 /proc/mdstat)
+elif [ "${root#/dev/cciss/}" != "${root}" ]; then
+block=${root#/dev/cciss/*}
+block="cciss!${block%p*}"
 # classical root device
 else
 block=${root#/dev/}


fyi, I suspect this may also apply to old-style smart array devices,
where device names are similar, but use 'ida' intead of 'cciss' -
e.g. /dev/ida/c0d0p1.



</description>
    <dc:creator>dann frazier</dc:creator>
    <dc:date>2008-12-03T00:34:24</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43339">
    <title>Bug#506799: linux-image-2.6-amd64: deadlock when removing qdisc on multiprocessor systems</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43339</link>
    <description>Hello Moritz,

I can confirm in Linux kernel 2.6.24 from Debian stable is everything 
working fine.

Thanks for help! Cheers,
Jindrich Vrba



</description>
    <dc:creator>Jindřich Vrba</dc:creator>
    <dc:date>2008-12-02T18:46:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43337">
    <title>firmware-nonfree_0.14_powerpc.changes is NEW</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43337</link>
    <description>firmware-bnx2_0.14_all.deb
  to pool/non-free/f/firmware-nonfree/firmware-bnx2_0.14_all.deb
(new) firmware-ipw2x00_0.14_all.deb optional non-free/admin
Binary firmware for Intel Pro Wireless 2100, 2200 and 2915
 This package contains the binary firmware for Intel Pro Wireless 2100,
 2200 and 2915 cards.
 .
 Contents:
  * Intel Pro Wireless 2100 firmware (bootstrap), version 1.3
  * Intel Pro Wireless 2100 firmware (ibss mode), version 1.3
  * Intel Pro Wireless 2100 firmware (monitor mode), version 1.3
  * Intel Pro Wireless 2200/2915 firmware (bss), version 3.0
  * Intel Pro Wireless 2200/2915 firmware (ibss), version 3.0
  * Intel Pro Wireless 2200/2915 firmware (snf), version 3.0
 .
 Those firmware are covered by the Intel Pro Wireless 2100 and 2200/2915
 License.  Prior to installing this package, you have to agree to the terms
 of that license.
firmware-iwlwifi_0.14_all.deb
  to pool/non-free/f/firmware-nonfree/firmware-iwlwifi_0.14_all.deb
firmware-nonfree_0.14.dsc
  to pool/non-free/f/firmware-nonfree/firmware-nonfree_0.14.dsc
firmware-nonfree_0.14.tar.gz
  to pool/non-free/f/firmware-nonfree/firmware-nonfree_0.14.tar.gz
firmware-qlogic_0.14_all.deb
  to pool/non-free/f/firmware-nonfree/firmware-qlogic_0.14_all.deb
firmware-ralink_0.14_all.deb
  to pool/non-free/f/firmware-nonfree/firmware-ralink_0.14_all.deb
Changes: firmware-nonfree (0.14) unstable; urgency=low
 .
  * Generate license acceptation prompt, based on sun-java5. (closes: #504668)
  * Add Intel Pro 2100 firwmare, version 1.3. (closes: #504671)
  * Add Intel Pro 2200/2915 firwmare, version 3.0. (closes: #449235)


Override entries for your package:
firmware-bnx2_0.14_all.deb - optional non-free/admin
firmware-iwlwifi_0.14_all.deb - optional non-free/misc
firmware-nonfree_0.14.dsc - source non-free/admin
firmware-qlogic_0.14_all.deb - optional non-free/admin
firmware-ralink_0.14_all.deb - optional non-free/admin

Announcing to debian-devel-changes&lt; at &gt;lists.debian.org
Closing bugs: 449235 504668 504671 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


</description>
    <dc:creator>Debian Installer</dc:creator>
    <dc:date>2008-12-02T17:17:03</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43336">
    <title>Processing of firmware-nonfree_0.14_powerpc.changes</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43336</link>
    <description>firmware-nonfree_0.14_powerpc.changes uploaded successfully to localhost
along with the files:
  firmware-nonfree_0.14.dsc
  firmware-nonfree_0.14.tar.gz
  firmware-bnx2_0.14_all.deb
  firmware-ipw2x00_0.14_all.deb
  firmware-iwlwifi_0.14_all.deb
  firmware-qlogic_0.14_all.deb
  firmware-ralink_0.14_all.deb

Greetings,

Your Debian queue daemon


</description>
    <dc:creator>Archive Administrator</dc:creator>
    <dc:date>2008-12-02T17:14:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43335">
    <title>firmware-nonfree_0.14_powerpc.changes REJECTED</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43335</link>
    <description>As requested.



===

If you don't understand why your files were rejected, or if the
override file requires editing, reply to this email.


</description>
    <dc:creator>Thomas Viehmann</dc:creator>
    <dc:date>2008-12-02T16:36:01</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43334">
    <title>firmware-nonfree_0.14_powerpc.changes is NEW</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43334</link>
    <description>firmware-bnx2_0.14_all.deb
  to pool/non-free/f/firmware-nonfree/firmware-bnx2_0.14_all.deb
(new) firmware-ipw2x00_0.14_all.deb optional non-free/admin
Binary firmware for Intel Pro Wireless 2100, 2200 and 2915
 This package contains the binary firmware for Intel Pro Wireless 2100,
 2200 and 2915 cards.  Those firmware are covered by the Intel license,
 which is available at /usr/share/doc/firmware-ipw2x00/copyright.  . By
 installing this package, you agree the terms of that license..
 .
 Contents:
  * Intel Pro Wireless 2100 firmware (bootstrap), version 1.3
  * Intel Pro Wireless 2100 firmware (ibss mode), version 1.3
  * Intel Pro Wireless 2100 firmware (monitor mode), version 1.3
  * Intel Pro Wireless 2200/2915 firmware (bss), version 3.0
  * Intel Pro Wireless 2200/2915 firmware (ibss), version 3.0
  * Intel Pro Wireless 2200/2915 firmware (snf), version 3.0
firmware-iwlwifi_0.14_all.deb
  to pool/non-free/f/firmware-nonfree/firmware-iwlwifi_0.14_all.deb
firmware-nonfree_0.14.dsc
  to pool/non-free/f/firmware-nonfree/firmware-nonfree_0.14.dsc
firmware-nonfree_0.14.tar.gz
  to pool/non-free/f/firmware-nonfree/firmware-nonfree_0.14.tar.gz
firmware-qlogic_0.14_all.deb
  to pool/non-free/f/firmware-nonfree/firmware-qlogic_0.14_all.deb
firmware-ralink_0.14_all.deb
  to pool/non-free/f/firmware-nonfree/firmware-ralink_0.14_all.deb
Changes: firmware-nonfree (0.14) unstable; urgency=low
 .
  * Generate license acceptation prompt, based on sun-java5. (closes: #504668)
  * Add Intel Pro 2100 firwmare, version 1.3. (closes: #504671)
  * Add Intel Pro 2200/2915 firwmare, version 3.0. (closes: #449235)


Override entries for your package:
firmware-bnx2_0.14_all.deb - optional non-free/admin
firmware-iwlwifi_0.14_all.deb - optional non-free/misc
firmware-nonfree_0.14.dsc - source non-free/admin
firmware-qlogic_0.14_all.deb - optional non-free/admin
firmware-ralink_0.14_all.deb - optional non-free/admin

Announcing to debian-devel-changes&lt; at &gt;lists.debian.org
Closing bugs: 449235 504668 504671 


Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions.


</description>
    <dc:creator>Debian Installer</dc:creator>
    <dc:date>2008-12-02T16:32:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43333">
    <title>Processing of firmware-nonfree_0.14_powerpc.changes</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43333</link>
    <description>firmware-nonfree_0.14_powerpc.changes uploaded successfully to localhost
along with the files:
  firmware-nonfree_0.14.dsc
  firmware-nonfree_0.14.tar.gz
  firmware-bnx2_0.14_all.deb
  firmware-ipw2x00_0.14_all.deb
  firmware-iwlwifi_0.14_all.deb
  firmware-qlogic_0.14_all.deb
  firmware-ralink_0.14_all.deb

Greetings,

Your Debian queue daemon


</description>
    <dc:creator>Archive Administrator</dc:creator>
    <dc:date>2008-12-02T16:24:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43330">
    <title>Bug#507557: linux-image-2.6.26-1-r4k-ip22: hangs early at boot on Indigo2</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43330</link>
    <description>Package: linux-image-2.6.26-1-r4k-ip22
Version: 2.6.26-11

Hi,

The kernel hangs early at boot on an Indigo2:

[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.26-1-r4k-ip22 (Debian 2.6.26-11) (waldi&lt; at &gt;debian.org) (gcc version 4.1.3 20080623 (prerelease) (Debian 4.1.2-23)) #1 Thu Nov 27 03:36:47 UTC 2008
[    0.000000] ARCH: SGI-IP22
[    0.000000] PROMLIB: ARC firmware Version 1 Revision 10
[    0.000000] console [early0] enabled
[    0.000000] CPU revision is: 00000460 (R4400SC)
[    0.000000] FPU revision is: 00000500
[    0.000000] Checking for the multiply/shift bug... no.
[    0.000000] Checking for the daddiu bug... no.
[    0.000000] MC: SGI memory controller Revision 3
[    0.000000] MC: Probing memory configuration:
[    0.000000]  bank0: 128M &lt; at &gt; 08000000
[    0.000000]  bank1: 128M &lt; at &gt; 10000000
[    0.000000] Determined physical RAM map:
[    0.000000]  memory: 0000000010000000 &lt; at &gt; 0000000008000000 (usable)
[    0.000000] Wasting 1835008 bytes for tracking 32768 unused pages
[    0.000000] Initrd not found or empty - disabling initrd
[    0.000000] Zone PFN ranges:
[    0.000000]   Normal      32768 -&gt;    98304
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[1] active PFN ranges
[    0.000000]     0:    32768 -&gt;    98304

JB.

</description>
    <dc:creator>Julien BLACHE</dc:creator>
    <dc:date>2008-12-02T13:26:27</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43324">
    <title>Bug#497530: Patch for the l10n upload of mkvmlinuz</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43324</link>
    <description/>
    <dc:creator>Christian Perrier</dc:creator>
    <dc:date>2008-12-02T06:48:44</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43316">
    <title>Bug#507437: linux-image-2.6.26-1-amd64: Strange message during boot: 'kernel alive ... kernel direct mapping tables up to ...'</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43316</link>
    <description>Package: linux-image-2.6.26-1-amd64
Version: 2.6.26-10
Severity: minor

when I boot my Samsumg Q45 (laptop), I get the following messages at the
_bottom_ of the screen. They remain there until the normal boot messages get
to the bottom of the screen and overwrite them.

Kernel alive
kernel direct mapping tables up to 100000000 &lt; at &gt; 8000-d000

</description>
    <dc:creator>Sam Morris</dc:creator>
    <dc:date>2008-12-01T10:35:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43312">
    <title>Bug#507220: problem seemss to be corrrected in 2.6.26</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43312</link>
    <description>Just compiled a new kernel 2.6.26 (from backports.org) and lshw now
seems to talk correctly to the scsi system and the panic doesn't
occur.



</description>
    <dc:creator>The Eclectic One</dc:creator>
    <dc:date>2008-12-01T02:49:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43311">
    <title>Bug#422675: Bug still occurs in 2.6.26</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43311</link>
    <description>I have recently found this problem on an old socket 7 machine with an 
SiS900 network card. The lspci output for the card is

00:0b.0 Ethernet controller: Silicon Integrated Systems [SiS] SiS900 PCI 
Fast Ethernet (rev 02)

The motherboard is a PC Chips (Hsin Tech) M537DMA33:

http://www.users.zetnet.co.uk/thorfin/motherboards/mb01/motherboard_1.htm

Kernel is 2.6.26 from the Lenny RC1 installer.

I'm afraid I don't know how to troubleshoot this bug. For example, 
earlier messages mention setting the card to half-duplex mode - should I 
try that, and if so how is it done?

I don't seem to get as many of these errors as the previous reporter, 
but enough to notice in the logs.

Grateful for any help,

Many thanks,

Chris



</description>
    <dc:creator>Chris Carr</dc:creator>
    <dc:date>2008-11-30T17:51:09</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43310">
    <title>Bug#506878: [SOLVED] No sound from rear speaker jack with linux-image-2.6.26-1-686</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43310</link>
    <description>Added option to /etc/modprobe.d/sound:

model=3stack



</description>
    <dc:creator>Phred Xmidt</dc:creator>
    <dc:date>2008-11-30T17:44:40</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43307">
    <title>Bug#497692: linux-image-2.6.26-1-686: In my case adding pci=nomsi made the system bootable, but ...</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43307</link>
    <description>Package: linux-image-2.6.26-1-686
Version: 2.6.26-11
Followup-For: Bug #497692


I had exactly the same behaviour when upgrading to 2.6.26. I managed to make my system
bootable by adding pci=nomsi to the kernel startup line.


However I see the following messages in dmesg:

[  797.309745] +------ PCI-Express Device Error ------+
[  797.309745] Error Severity           : Uncorrected (Non-Fatal)
[  797.309745] PCIE Bus Error type      : Transaction Layer
[  797.309745] Flow Control Protocol    : First
[  797.309745] Receiver ID              : 0010
[  797.309745] VendorID=1106h, DeviceID=a327h, Bus=00h, Device=02h, Function=00h
[  797.309745] Broadcast error_detected message
[  797.309745] Broadcast mmio_enabled message
[  797.309745] Broadcast resume message
[  797.309745] AER driver successfully recovered

It looks like this error is also related to the console.
For example, an entry is inserted almost everytime a debconf dialog is opened.
And if I run less &lt;somefile&gt; in a console, and then scroll beyond the
last line I get this message most every 'beep'.

During my struggles to get the system bootable again I noticed that the
current (lenny) installer apparently has similar problems.

I tried to run the console rescue mode, but that results in a blank 
screen. However running the graphical rescue mode works just fine.

Please feel free to ask me for more information


</description>
    <dc:creator>Gerrit Jan Baarda</dc:creator>
    <dc:date>2008-11-30T16:25:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43306">
    <title>Bug#494007: Oops. I commented on the wrong bug....</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43306</link>
    <description>I meant to provide additional information for bug #497692

Please excuse me and ignore my report!






</description>
    <dc:creator>Gerrit Jan Baarda</dc:creator>
    <dc:date>2008-11-30T16:16:47</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43305">
    <title>Bug#494007: linux-image-2.6.26-1-686: In my case adding pci=nomsi makes the system bootable, but ...</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43305</link>
    <description>Package: linux-image-2.6.26-1-686
Version: 2.6.26-11
Followup-For: Bug #494007

I had exactly the same behaviour when upgrading to 2.6.26. I managed to make my system
bootable by adding pci=nomsi to the kernel startup line.


However I see the following messages in dmesg:

[  797.309745] +------ PCI-Express Device Error ------+
[  797.309745] Error Severity           : Uncorrected (Non-Fatal)
[  797.309745] PCIE Bus Error type      : Transaction Layer
[  797.309745] Flow Control Protocol    : First
[  797.309745] Receiver ID              : 0010
[  797.309745] VendorID=1106h, DeviceID=a327h, Bus=00h, Device=02h, Function=00h
[  797.309745] Broadcast error_detected message
[  797.309745] Broadcast mmio_enabled message
[  797.309745] Broadcast resume message
[  797.309745] AER driver successfully recovered

It looks like this error is also related to the console.
For example, an entry is inserted almost everytime a debconf dialog is opened.
And if I run less &lt;somefile&gt; in a console, and then scroll beyond the
last line I get this message most every 'beep'.

During my struggles to get the system bootable again I noticed that the
current (lenny) installer apparently has similar problems.

I tried to run the console rescue mode, but that results in a blank 
screen. However running the graphical rescue mode works just fine.

Please feel free to ask me for more information.


</description>
    <dc:creator>Gerrit Jan Baarda</dc:creator>
    <dc:date>2008-11-30T15:49:23</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43304">
    <title>Bug#500645: linux-image-2.6.26-1-openvz-amd64: Upstream fix available</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43304</link>
    <description>Package: linux-image-2.6.26-1-openvz-amd64
Version: 2.6.26-10
Followup-For: Bug #500645

Apparently this has been fixed in upstream already [1], could you please integrate the patch?


best regards,
     Michael

[1] http://bugzilla.openvz.org/show_bug.cgi?id=1034#c6


</description>
    <dc:creator>Michael Renner</dc:creator>
    <dc:date>2008-11-30T14:14:48</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43303">
    <title>Bug#481063: linux-image-2.6.25-1-686: vga=791 gets 'undefined video mode number'</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43303</link>
    <description>I figured it out:
linux-image-2.6.26-1-686 has "CONFIG_EDD=m" set and I don't set that in my
kernel.

Hugo
</description>
    <dc:creator>hugo vanwoerkom</dc:creator>
    <dc:date>2008-11-30T13:24:40</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43286">
    <title>Bug#507271: [linux-image-2.6.26-1-686] kernel cannot be installed: subprocess post-installation script returned error exit status 1</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43286</link>
    <description>Package: linux-image-2.6.26-1-686
Version:  2.6.26-10

Hi,

I'm currently running a debian testing (Lenny) with the following
kernel: linux-image-2.6.24-1-686 (2.6.24-7).
I wanted to upgrade my debian and all new packages have been
installed/configured correctly except for the 2.6.26 kernel
(linux-image-2.6.26-1-686).

When I tried to install this package, the postinst failed. See bellow
the complete stack of aptitude:
~# aptitude safe-upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initializing package states... Done
Reading task descriptions... Done
The following partially installed packages will be configured:
  linux-image-2.6.26-1-686
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 0B will be used.
Setting up linux-image-2.6.26-1-686 (2.6.26-10) ...
Running depmod.
Running mkinitramfs-kpkg.
initrd.img(/boot/initrd.img-2.6.26-1-686
) points to /boot/initrd.img-2.6.26-1-686
 (/boot/initrd.img-2.6.26-1-686) -- doing nothing at
/var/lib/dpkg/info/linux-image-2.6.26-1-686.postinst line 569.
vmlinuz(/boot/vmlinuz-2.6.26-1-686
) points to /boot/vmlinuz-2.6.26-1-686
 (/boot/vmlinuz-2.6.26-1-686) -- doing nothing at
/var/lib/dpkg/info/linux-image-2.6.26-1-686.postinst line 569.
Running postinst hook script update-grub.
Searching for GRUB installation directory ... found: /boot/grub
User postinst hook script [update-grub] exited with value 1
dpkg: error processing linux-image-2.6.26-1-686 (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 linux-image-2.6.26-1-686
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up linux-image-2.6.26-1-686 (2.6.26-10) ...
Running depmod.
Running mkinitramfs-kpkg.
initrd.img(/boot/initrd.img-2.6.26-1-686
) points to /boot/initrd.img-2.6.26-1-686
 (/boot/initrd.img-2.6.26-1-686) -- doing nothing at
/var/lib/dpkg/info/linux-image-2.6.26-1-686.postinst line 569.
vmlinuz(/boot/vmlinuz-2.6.26-1-686
) points to /boot/vmlinuz-2.6.26-1-686
 (/boot/vmlinuz-2.6.26-1-686) -- doing nothing at
/var/lib/dpkg/info/linux-image-2.6.26-1-686.postinst line 569.
Running postinst hook script update-grub.
Searching for GRUB installation directory ... found: /boot/grub
User postinst hook script [update-grub] exited with value 1
dpkg: error processing linux-image-2.6.26-1-686 (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 linux-image-2.6.26-1-686
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initializing package states... Done
Reading task descriptions... Done


My configuration:
- Motherboard D201GLY2:
http://www.intel.com/Products/Desktop/Motherboards/D201GLY2/D201GLY2-overview.htm
- HDD:
   - 2 1/2: IBM Travelstar (IC25N030ATDA04-0)
   - 3 1/2: SAMSUNG SpinPoint T166 series (HD501LJ)

Let me know if you need more information,

Best Regards,
Frederic L.



</description>
    <dc:creator>Frederic Luddeni</dc:creator>
    <dc:date>2008-11-29T16:09:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43282">
    <title>Urgent Proposition:</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43282</link>
    <description>I have a new email address!You can now email me at: mammanali48&lt; at &gt;yahoo.co.nz



- I am Mr Mamman Ali,with  SKYEBANK OF NIG PLC, have an Americans, clint late Engr creek (snr) an oil merchant in Nigeria, until his death some years ago, who also banked with us and had a closing balance in, 2005  $15.2m our bank is now looking for his next of kin for the last one year now, but to no avail, so I as his account officer expects you to come and stand as his next of kin to late Engr creek (snr) so as to become the beneficiary of this fund,interested please get back to me now so that we will discuess on the percentage.Best Regards Mr.Mamman Ali

</description>
    <dc:creator>Mamman Ali</dc:creator>
    <dc:date>2008-11-29T15:22:34</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.linux.debian.devel.kernel/43281">
    <title>Bug#499745: freezes under Xen 3.2.0</title>
    <link>http://comments.gmane.org/gmane.linux.debian.devel.kernel/43281</link>
    <description>Hi,

I have a similar problem after upgrading from etch to lenny. I have also
tried to reinstall Lenny, and create new domU's (both etch and
lenny). The domU's on a fresh Lenny installation stops like this (from
the console):

  ...
  Checking root file system...fsck 1.41.3 (12-Oct-2008)
  /dev/sda2: clean, 12232/262144 files, 120032/1048576 blocks
  done.
  [    5.464555] EXT3 FS on sda2, internal journal
  Setting the system clock.
  Unable to set System Clock to: Thu Nov 27 18:05:20 UTC 2008 (warning).
  Cleaning up ifupdown....
  Loading kernel modules...done.
  Checking file systems...fsck 1.41.3 (12-Oct-2008)
  done.
  Setting kernel variables (/etc/sysctl.conf)...done.
  Mounting local filesystems...done.
  Activating swapfile swap...done.
  Setting up networking....
  Configuring network interfaces...[    8.679956] NET: Registered protocol
  family 10
  [    8.680772] lo: Disabled Privacy Extensions
  done.
  INIT: Entering runlevel: 2
  Starting enhanced syslogd: rsyslogd.
  Starting OpenBSD Secure Shell server: sshd.
  Starting periodic command scheduler: crond.

And freezes here (state is blocked from 'xm list').

Please let me know if I can help debugging (versions included below).


- Werner


sandy:~# dpkg -l | grep xen
ii  libc6-xen                         2.7-16    GNU C Library: Shared libraries [Xen version]
ii  libxenstore3.0                    3.2.1-2   Xenstore communications library for Xen
ii  linux-image-2.6.26-1-xen-686      2.6.26-10 Linux 2.6.26 image on i686
ii  linux-modules-2.6.26-1-xen-686    2.6.26-10 Linux 2.6.26 modules on i686
ii  xen-hypervisor-3.2-1-i386         3.2.1-2   The Xen Hypervisor on i386
ii  xen-linux-system-2.6.26-1-xen-686 2.6.26-10 XEN system with Linux 2.6.26 image on i686
ii  xen-shell                         1.8-3     Console based Xen administration utility
ii  xen-tools                         3.9-4     Tools to manage Debian XEN virtual servers
ii  xen-utils-3.2-1                   3.2.1-2   XEN administrative tools
ii  xen-utils-common                  3.2.0-2   XEN administrative tools - common files
ii  xenstore-utils                    3.2.1-2   Xenstore utilities for Xen
sandy:~#



</description>
    <dc:creator>Morten Werner Forsbring</dc:creator>
    <dc:date>2008-11-29T14:50:23</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.linux.debian.devel.kernel">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.linux.debian.devel.kernel</link>
  </textinput>
</rdf:RDF>
