linux-image-2.6.26-1-686: Kernel will not boot in Virtual PC

2008-10-01 Thread David Sanders
Subject: linux-image-2.6.26-1-686: Kernel will not boot in Virtual PC
Package: linux-image-2.6.26-1-686
Version: 2.6.26-5
Severity: important
Tags: patch

*** Please type your report below this line ***
Kernel will not boot in Virtual PC due to introduction of multi-byte
nops.  Problem has been fixed upstream for 2.6.27.  I am including patch
to fix problem in 2.6.26-1-686.

-- Package-specific info:

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.27-rc8.local2 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.26-1-686 depends on:
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.92j  tools for generating an initramfs
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.26-1-686 recommends:
ii  libc6-i6862.7-13 GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.26-1-686 suggests:
ii  grub  0.97-47GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.26   (no description available)

-- debconf information:
  linux-image-2.6.26-1-686/preinst/abort-overwrite-2.6.26-1-686:
  shared/kernel-image/really-run-bootloader: true
  linux-image-2.6.26-1-686/postinst/bootloader-error-2.6.26-1-686:
  linux-image-2.6.26-1-686/postinst/depmod-error-initrd-2.6.26-1-686: false
  linux-image-2.6.26-1-686/prerm/removing-running-kernel-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/old-system-map-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/abort-install-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/lilo-has-ramdisk:
  linux-image-2.6.26-1-686/preinst/bootloader-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/prerm/would-invalidate-boot-loader-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/elilo-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/kimage-is-a-directory:
  linux-image-2.6.26-1-686/postinst/old-dir-initrd-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/create-kimage-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/lilo-initrd-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/old-initrd-link-2.6.26-1-686: true
  linux-image-2.6.26-1-686/preinst/overwriting-modules-2.6.26-1-686: true
  linux-image-2.6.26-1-686/postinst/depmod-error-2.6.26-1-686: false
  linux-image-2.6.26-1-686/postinst/bootloader-test-error-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/failed-to-move-modules-2.6.26-1-686:
  linux-image-2.6.26-1-686/preinst/initrd-2.6.26-1-686:
>From 14469a8dd23677921db5e7354a602c98d9c6300f Mon Sep 17 00:00:00 2001
From: Linus Torvalds <[EMAIL PROTECTED]>
Date: Fri, 5 Sep 2008 09:30:14 -0700
Subject: [PATCH] x86: disable static NOPLs on 32 bits

On 32-bit, at least the generic nops are fairly reasonable, but the
default nops for 64-bit really look pretty sad, and the P6 nops really do
look better.

So I would suggest perhaps moving the static P6 nop selection into the
CONFIG_X86_64 thing.

The alternative is to just get rid of that static nop selection, and just
have two cases: 32-bit and 64-bit, and just pick obviously safe cases for
them.

Signed-off-by: H. Peter Anvin <[EMAIL PROTECTED]>
---
 arch/x86/Kconfig.cpu |   13 -
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/arch/x86/Kconfig.cpu b/arch/x86/Kconfig.cpu
index 2c518fb..b225219 100644
--- a/arch/x86/Kconfig.cpu
+++ b/arch/x86/Kconfig.cpu
@@ -382,14 +382,17 @@ config X86_OOSTORE
 # P6_NOPs are a relatively minor optimization that require a family >=
 # 6 processor, except that it is broken on certain VIA chips.
 # Furthermore, AMD chips prefer a totally different sequence of NOPs
-# (which work on all CPUs).  As a result, disallow these if we're
-# compiling X86_GENERIC but not X86_64 (these NOPs do work on all
-# x86-64 capable chips); the list of processors in the right-hand clause
-# are the cores that benefit from this optimization.
+# (which work on all CPUs).  In addition, it looks like Virtual PC
+# does not understand them.
+#
+# As a result, disallow these if we're not compiling for X86_64 (these
+# NOPs do work on all x86-64 capable chips); the list of processors in
+# the right-hand clause are the cores that benefit from this optimization.
 #
 config X86_P6_NOP
 	def_bool y
-	depends on (X86_64 || !X86_GENERIC) && (M686 || MPENTIUMII || MPENTIUMIII || MPENTIUMM || MCORE2 || MPENTIUM4 || MPSC)
+	depends on X86_64
+	depends on (MCORE2 || MPENTIUM4 || MPSC)
 
 config X86_TSC
 	def_bool y
-- 
1.6.0.2.GIT



Bug#500838: linux-image-2.6.24-etchnhalf.1-686-bigmem: MD raid5 array with XFS filesystem hangs (deadlock) after a while under heavy use

2008-10-01 Thread Laszlo Kajan
Package: linux-image-2.6.24-etchnhalf.1-686-bigmem
Version: 2.6.24-6~etchnhalf.5
Severity: important

File operations hang after a while on a raid5 MD array with XFS filesystem on 
it. XFS may be irrelevant. Default parameters were used, so 
/sys/block/md*/md/stripe_cache_size was not changed.
No error messages appear in dmesg or elsewhere, so a deadlock is suspected.

A patch exists: 
http://www.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.24-rc8/2.6.24-rc8-mm1/broken-out/md-fix-an-occasional-deadlock-in-raid5.patch.
The patch seems to appear (slightly modified) in the 2.6.26 (testing) kernel.
The patch, or the version that appears in 2.6.26 is reported to solve the 
problem (I can not yet confirm).

Increasing /sys/block/md*/md/stripe_cache_size to 4096 or 8192 is also reported 
to solve the problem (I can not yet confirm).

The stable 2.6.18 kernel is not affected, though raid5 speed benefits from 
increasing /sys/block/md*/md/stripe_cache_size (confirmed).

I use lenny/testing with a stable kernel.

-- Package-specific info:

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-etchnhalf.1-686-bigmem (SMP w/8 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages linux-image-2.6.24-etchnhalf.1-686-bigmem depends on:
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.92j  tools for generating an initramfs
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.24-etchnhalf.1-686-bigmem recommends:
ii  libc6-i6862.7-13 GNU C Library: Shared libraries [i

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#390816: aic7xxx_abort returns 0x2002

2008-10-01 Thread vince
Hi everyone

I appear to have a similar problem here, this evening when I was trying
to install Debian 4.0.4 on an old ProLiant 330 Compaq Server.

The problem appears already at 1st boot, before starting Debian install
the system hangs with the following error message:
aic7xxx_abort returns 0x2002

As of now, a W2K Server Edition is running on the system, so I do not
think it is a hardware problem.

I read a lot of documentation about that, but as far as I could see the
problem is still opened.

Is there any workaround for that?

Thanks and best regards
vince





-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#500834: #500834

2008-10-01 Thread Bastian Blank
tags 500834 moreinfo
thanks

Please test that with 2.6.26 from Lenny, it uses the new RTC interface
which seems to work better.

Bastian

-- 
Klingon phaser attack from front!
100% Damage to life support



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: #500834

2008-10-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 500834 moreinfo
Bug#500834: linux-package: the time of day value of date is set to UTC value
There were no tags set.
Tags added: moreinfo

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#500834: linux-package: the time of day value of date is set to UTC value

2008-10-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 500834 linux-2.6
Bug#500834: linux-package: the time of day value of date is set to UTC value
Warning: Unknown package 'linux-package'
Bug reassigned from package `linux-package' to `linux-2.6'.

> --
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: tagging as pending bugs that are closed by packages in NEW

2008-10-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Wed Oct  1 20:03:11 UTC 2008
> # Tagging as pending bugs that are closed by packages in NEW
> # http://ftp-master.debian.org/new.html
> #
> # Source package in NEW: libsoil
> tags 482293 + pending
Bug#482293: ITP: libsoil -- image loader library for OpenGL applications
There were no tags set.
Tags added: pending

> # Source package in NEW: linux-2.6
> tags 494374 + pending
Bug#494374: linux-image-2.6.26-1-686: Insert key does not work on Thinkpad R60
Tags were: patch upstream
Bug#494477: Linux 2.6.26-1-686: insert key behaves abnormally
Bug#497817: linux-image-2.6.26-1-686: Loosing special keys in console.
Tags added: pending

> # Source package in NEW: linux-2.6
> tags 495895 + pending
Bug#495895: linux-image-2.6-xen-amd64: no xen kernel on lenny
There were no tags set.
Bug#495590: linux-2.6: Please package -xen-amd64 linux-images in sid
Tags added: pending

> # Source package in NEW: linux-2.6
> tags 498304 + pending
Bug#498304: The ISP1760 driver is not fully enabled / useful
There were no tags set.
Tags added: pending

> # Source package in NEW: linux-2.6
> tags 499463 + pending
Bug#499463: linux-image-2.6.26-1-versatile: Please enable CONFIG_VFP
There were no tags set.
Tags added: pending

> # Source package in NEW: linux-2.6
> tags 498828 + pending
Bug#498828: rt61pci needs one more millisecond to initialize
Tags were: patch
Tags added: pending

> # Source package in NEW: linux-2.6
> tags 494546 + pending
Bug#494546: EC GPE storm checks causing problems
Tags were: fixed-upstream
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#494703: new FW version fixes issue

2008-10-01 Thread kevin.debian

http://intellinuxwireless.org/?n=downloads
current version is 15.28.1.6
old version of FW was working with 2.6.24
2.6.26 requires 15.28.1.6

I have downloaded and replaced /lib/firmware/iwlwifi-3945-1.ucode with 
the one in the tgz all working now


Kevin



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



linux-2.6_2.6.26-7_m68k.changes ACCEPTED

2008-10-01 Thread Debian Ports Archive Maintainer
Maintainer: Debian Kernel Team 
Uploader: Stephen R. Marenka <[EMAIL PROTECTED]>
Host: debian-ports.org
Accepted: linux-2.6_2.6.26-7_m68k.changes
Files:
linux-image-2.6.26-1-amiga_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-amiga_2.6.26-7_m68k.deb
linux-image-2.6.26-1-atari_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-atari_2.6.26-7_m68k.deb
linux-image-2.6.26-1-bvme6000_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-bvme6000_2.6.26-7_m68k.deb
linux-image-2.6.26-1-mac_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-mac_2.6.26-7_m68k.deb
linux-image-2.6.26-1-mvme147_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-mvme147_2.6.26-7_m68k.deb
linux-image-2.6.26-1-mvme16x_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-mvme16x_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-common_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-all_2.6.26-7_m68k.deb
linux-headers-2.6.26-1-all-m68k_2.6.26-7_m68k.deb
linux-libc-dev_2.6.26-7_m68k.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#475319: seems fixed

2008-10-01 Thread Eshat Cakar

This Problem disappeared with new BIOS Version 17ST from Samsung webpage.

(Using debian lenny and 2.6.26-1-686)



--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processed: Re: Bug#500797: linux-image-2.6.25-2-686: fails to initialize(?) USB phone

2008-10-01 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 500797 linux-2.6
Bug#500797: linux-image-2.6.25-2-686: fails to initialize(?) USB phone
Warning: Unknown package 'linux-image-2.6.25-2-686'
Bug reassigned from package `linux-image-2.6.25-2-686' to `linux-2.6'.

> --
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#500784: please set CONFIG_CIFS_UPCALL=y

2008-10-01 Thread Holger Levsen
package: linux-image-2.6.24-etchnhalf.1-686
severity: wishlist
version: 2.6.24-6~etchnhalf.5
x-debbugs-cc: [EMAIL PROTECTED]

Hi,

please set CONFIG_CIFS_UPCALL=y (this needs CONFIG_CIFS_EXPERIMENTAL=y too) 
for the etchnhalf packages. It's needed to make mounting cifs volumes with 
kerberos tickets work. (And it's set in sid+lenny.)

(Actually its only one part. a newer samba is also needed, but its way 
easier/less work to maintain a samba backport than a different kernel :)


regards,
Holger

P.S.: cc:ing dannf as suggested by maks, not setting the severity to important 
as also suggested, even though for me it is ;-)


pgpUcDqIoBNzs.pgp
Description: PGP signature


Bug#500758: marked as done (linux-image-2.6.26-1-amd64: Module budget-ci has no effect - Digital cable TV not supported?)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 1 Oct 2008 14:20:12 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#500758: linux-image-2.6.26-1-amd64: Module budget-ci 
has no effect - Digital cable TV not supported?
has caused the Debian Bug report #500758,
regarding linux-image-2.6.26-1-amd64: Module budget-ci has no effect - Digital 
cable TV not supported?
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
500758: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=500758
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: linux-image-2.6.26-1-amd64
Version: 2.6.26-5
Severity: important

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I have a DVB-C TV card, the TechnoTrend Budget CVB-C C-1500.

Programs like xawtv and scantv don't work.

The lspci -vnn output is:



05:04.0 Multimedia controller [0480]: Philips Semiconductors SAA7146 
[1131:7146] (rev 01)
Subsystem: Technotrend Systemtechnik GmbH Device [13c2:1010]
Flags: bus master, medium devsel, latency 32, IRQ 17
Memory at d4001000 (32-bit, non-prefetchable) [size=512]
Kernel driver in use: budget_ci dvb
Kernel modules: budget-ci



Is it necessary to install another kernel module?

Is cable digital supported at all?

David

- -- Package-specific info:
** Version:
Linux version 2.6.26-1-amd64 (Debian 2.6.26-5) ([EMAIL PROTECTED]) (gcc version 
4.1.3 20080623 (prerelease) (Debian 4.1.2-23)) #1 SMP Wed Sep 10 15:31:12 UTC 
2008

** Command line:
root=/dev/hdb2 ro quiet

** Not tainted

** Kernel log:
[4.707996] usb-storage: device found at 2
[4.707999] usb-storage: waiting for device to settle before scanning
[4.852010] ata1: SATA link down (SStatus 0 SControl 300)
[5.172014] ata2: SATA link down (SStatus 0 SControl 300)
[5.172500] ACPI: PCI Interrupt Link [APSJ] enabled at IRQ 23
[5.172503] ACPI: PCI Interrupt :00:08.0[A] -> Link [APSJ] -> GSI 23 
(level, low) -> IRQ 23
[5.172555] PCI: Setting latency timer of device :00:08.0 to 64
[5.172603] scsi3 : sata_nv
[5.172663] scsi4 : sata_nv
[5.172809] ata3: SATA max UDMA/133 cmd 0x9e0 ctl 0xbe0 bmdma 0xc400 irq 23
[5.172811] ata4: SATA max UDMA/133 cmd 0x960 ctl 0xb60 bmdma 0xc408 irq 23
[5.492010] ata3: SATA link down (SStatus 0 SControl 300)
[5.796111] ieee1394: Host added: ID:BUS[0-00:1023]  GUID[0011d864f599]
[5.812012] ata4: SATA link down (SStatus 0 SControl 300)
[5.836922] PM: Starting manual resume from disk
[5.873111] kjournald starting.  Commit interval 5 seconds
[5.873122] EXT3-fs: mounted filesystem with ordered data mode.
[7.932009] udevd version 125 started
[9.008248] i2c-adapter i2c-0: nForce2 SMBus adapter at 0x4c00
[9.008267] i2c-adapter i2c-1: nForce2 SMBus adapter at 0x4c40
[9.124158] input: Power Button (FF) as /class/input/input2
[9.155497] ACPI: Power Button (FF) [PWRF]
[9.155569] input: Power Button (CM) as /class/input/input3
[9.181263] ACPI: Power Button (CM) [PWRB]
[9.705334] usb-storage: device scan complete
[9.714326] scsi 2:0:0:0: Direct-Access GENERIC  USB Storage-SMC  I19B 
PQ: 0 ANSI: 0 CCS
[9.721314] scsi 2:0:0:1: Direct-Access GENERIC  USB Storage-CFC  I19B 
PQ: 0 ANSI: 0 CCS
[9.728333] scsi 2:0:0:2: Direct-Access GENERIC  USB Storage-SDC  I19B 
PQ: 0 ANSI: 0 CCS
[9.735337] scsi 2:0:0:3: Direct-Access GENERIC  USB Storage-MSC  I19B 
PQ: 0 ANSI: 0 CCS
[9.787406] Linux video capture interface: v2.00
[9.867882] uvcvideo: Found UVC 1.00 device  (041e:4058)
[9.869617] input: UVC Camera (041e:4058) as /class/input/input4
[9.880212] usbcore: registered new interface driver uvcvideo
[9.880216] USB Video Class driver (v0.1.0)
[   10.043572] usbcore: registered new interface driver snd-usb-audio
[   10.368719] ACPI: PCI Interrupt Link [APCJ] enabled at IRQ 22
[   10.368723] ACPI: PCI Interrupt :00:04.0[A] -> Link [APCJ] -> GSI 22 
(level, low) -> IRQ 22
[   10.368742] PCI: Setting latency timer of device :00:04.0 to 64
[   10.414580] saa7146: register extension 'budget_ci dvb'.
[   10.497746] input: PC Speaker as /class/input/input5
[   10.525251] Error: Driver 'pcspkr' is already registered, aborting...
[   10.692083] intel8x0_measure_ac97_clock: measured 54785 usecs
[   10.692087] intel8x0: clocking to 46959
[   10.698040] ACPI: PCI Interrupt Link [APC2] enabled at IRQ 17
[   10.698048] ACPI: PCI Interrupt :05:04.0[A] -> Link [APC2] -> GSI 17 
(level, low) -> IRQ 17
[   10.698082] saa7146: found saa7146 @ mem c21e8000 (revision 1, irq 
17) (0x

Bug#498627: Confirmed using vanilla 2.6.26.5

2008-10-01 Thread Bastian Blank
On Wed, Oct 01, 2008 at 01:58:19PM +0200, Holger Levsen wrote:
> I don't see this with 2.6.24 from etchanhalf (rebuild to set  
> CONFIG_CIFS_UPCALL=y)...

No news:

| $ git name-rev 69664cf16af4f31cd54d77948a4baf9c7e0ca7b9
| 69664cf16af4f31cd54d77948a4baf9c7e0ca7b9 tags/v2.6.26-rc1~503

Bastian

-- 
Live long and prosper.
-- Spock, "Amok Time", stardate 3372.7



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#498627: Confirmed using vanilla 2.6.26.5

2008-10-01 Thread Holger Levsen
Hi,

I don't see this with 2.6.24 from etchanhalf (rebuild to set  
CONFIG_CIFS_UPCALL=y)...


regards,
Holger


pgpbnGhb32r7D.pgp
Description: PGP signature


Bug#498627: Found a patch that solves the issue

2008-10-01 Thread Pavel Fertser
After applying a patch from http://lkml.org/lkml/2008/8/17/215 to the
vanilla kernel i don't get oopses anymore.

To successfully use mount.cifs with kerberos, however, i needed to install
keyutils and to add the following lines to /etc/request-key.conf (should a
dependency be added to smbfs?):
create  cifs.spnego* * /usr/sbin/cifs.upcall -c %k
create  dns_resolver   * * /usr/sbin/cifs.upcall %k

Also it occured that my default realm was incomplete (i.e. WORK instead of
WORK.LOCAL). After the change to /etc/krb5.conf i was able to successfully
mount the share.

Hope this helps.
Happy hacking! :)




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#494477: marked as done (Linux 2.6.26-1-686: insert key behaves abnormally)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 01 Oct 2008 10:18:09 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#494374: fixed in linux-2.6 2.6.26-7
has caused the Debian Bug report #494374,
regarding Linux 2.6.26-1-686: insert key behaves abnormally
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
494374: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=494374
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---

Package: linux-image-2.6.26-1-686
Version: 2.6.26-1
Severity: normal

Under Linux 2.6.26-1-686 the insert key behaves in a very weird way: after
pressing it the following keys does not work anymore: home, page up, page down
and arrow keys.

For example, under Linux 2.6.25-2-686, pressing left, insert, left, insert,
left, insert produces the following `kbdmode -a` output:

^[[D 27 0033 0x1b
 91 0133 0x5b
 68 0104 0x44
^[[2~27 0033 0x1b
 91 0133 0x5b
 50 0062 0x32
126 0176 0x7e
^[[D 27 0033 0x1b
 91 0133 0x5b
 68 0104 0x44
^[[2~27 0033 0x1b
 91 0133 0x5b
 50 0062 0x32
126 0176 0x7e
^[[D 27 0033 0x1b
 91 0133 0x5b
 68 0104 0x44
^[[2~27 0033 0x1b
 91 0133 0x5b
 50 0062 0x32
126 0176 0x7e

But under Linux 2.6.26-1-686, the output is:

^[[D 27 0033 0x1b
 91 0133 0x5b
 68 0104 0x44
^[[D 27 0033 0x1b
 91 0133 0x5b
 68 0104 0x44

-- Package-specific info:

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (600, 'unstable'), (500, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=pl_PL.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages linux-image-2.6.26-1-686 depends on:
ii  debconf [debconf-2.0] 1.5.22 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.92e  tools for generating an initramfs
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.26-1-686 recommends:
ii  libc6-i6862.7-13 GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.26-1-686 suggests:
ii  lilo  1:22.8-6   LInux LOader - The Classic OS load
pn  linux-doc-2.6.26   (no description available)

-- debconf information excluded

--
Jakub Wilk


--- End Message ---
--- Begin Message ---
Source: linux-2.6
Source-Version: 2.6.26-7

We believe that the bug you reported is fixed in the latest version of
linux-2.6, which is due to be installed in the Debian FTP archive:

linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1

Bug#494546: marked as done (EC GPE storm checks causing problems)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 01 Oct 2008 10:18:09 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#494546: fixed in linux-2.6 2.6.26-7
has caused the Debian Bug report #494546,
regarding EC GPE storm checks causing problems
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
494546: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=494546
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: linux-2.6
Version: 2.6.26-2
User: [EMAIL PROTECTED]
Usertags: features

The new GPE storm checks added since 2.6.26 have caused certain broken
ACPI implementations to cause unexpected problems with daily usage. It
is especially apparent on the EeePC, as the hotkeys fail to work.

http://lkml.org/lkml/2008/6/7/27
http://lkml.org/lkml/2008/7/19/19


--- End Message ---
--- Begin Message ---
Source: linux-2.6
Source-Version: 2.6.26-7

We believe that the bug you reported is fixed in the latest version of
linux-2.6, which is due to be installed in the Debian FTP archive:

linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-libc-dev_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-libc-dev_2.6.26-7_powerpc.deb
linux-manual-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-manual-2.6.26_2.6.26-7_all.deb
linux-patch-debian-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-patch-debian-2.6.26_2.6.26-7_all.deb
linux-source-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-source-2.6.26_2.6.26-7_all.deb
linux-support-2.6.26-1_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-support-2.6.26-1_2.6.26-7_all.deb
linux-tree-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-tree-2.6.26_2.6.26-7_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Blank <[EMAIL PROTECTED]> (supplier of updated linux-2.6 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 01 Oct 2008 09:02:30 +0200
Source: linux-2.6
Binary: linux-source-2.6.26 linux-doc-2.6.26 linux-manual-2.6.26 
linux-patch-debian-2.6.26 linux-tree-2.6.26 

Bug#497817: marked as done (linux-image-2.6.26-1-686: Loosing special keys in console.)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 01 Oct 2008 10:18:09 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#494374: fixed in linux-2.6 2.6.26-7
has caused the Debian Bug report #494374,
regarding linux-image-2.6.26-1-686: Loosing special keys in console.
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
494374: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=494374
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: linux-2.6
Version: 2.6.26-4

Hi,

Since 2.6.26-1 I sometimes don't have some of the special keys working
anymore, like pgup, pgdn, home, ins, arrow keys.  But end and del keep
working.

I've seen them come back once, not sure why.

I didn't have this problem with 2.6.25.

They keep working under X.

I think it always starts on a switch from X to console (or other way
around).

Note that this is a laptop keyboard.  It's an asus A3E.

I don't have any keyboard map selected, it's the default kernel keyboard
map.


Kurt



--- End Message ---
--- Begin Message ---
Source: linux-2.6
Source-Version: 2.6.26-7

We believe that the bug you reported is fixed in the latest version of
linux-2.6, which is due to be installed in the Debian FTP archive:

linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-libc-dev_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-libc-dev_2.6.26-7_powerpc.deb
linux-manual-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-manual-2.6.26_2.6.26-7_all.deb
linux-patch-debian-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-patch-debian-2.6.26_2.6.26-7_all.deb
linux-source-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-source-2.6.26_2.6.26-7_all.deb
linux-support-2.6.26-1_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-support-2.6.26-1_2.6.26-7_all.deb
linux-tree-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-tree-2.6.26_2.6.26-7_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Blank <[EMAIL PROTECTED]> (supplier of updated linux-2.6 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAG

Bug#499463: marked as done (linux-image-2.6.26-1-versatile: Please enable CONFIG_VFP)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 01 Oct 2008 10:18:09 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#499463: fixed in linux-2.6 2.6.26-7
has caused the Debian Bug report #499463,
regarding linux-image-2.6.26-1-versatile: Please enable CONFIG_VFP
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
499463: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=499463
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: linux-image-2.6.26-1-versatile
Version: 2.6.26-5
Severity: normal

Both some versatile boards, and qemu, have VFP support.  The Debian
kernel leaves CONFIG_VFP off, so any program using VFP will fail.
I checked here:

http://svn.debian.org/viewsvn/kernel/dists/trunk/linux-2.6/debian/config/arm/config.versatile?rev=11915&view=log

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---
Source: linux-2.6
Source-Version: 2.6.26-7

We believe that the bug you reported is fixed in the latest version of
linux-2.6, which is due to be installed in the Debian FTP archive:

linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-libc-dev_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-libc-dev_2.6.26-7_powerpc.deb
linux-manual-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-manual-2.6.26_2.6.26-7_all.deb
linux-patch-debian-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-patch-debian-2.6.26_2.6.26-7_all.deb
linux-source-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-source-2.6.26_2.6.26-7_all.deb
linux-support-2.6.26-1_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-support-2.6.26-1_2.6.26-7_all.deb
linux-tree-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-tree-2.6.26_2.6.26-7_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Blank <[EMAIL PROTECTED]> (supplier of updated linux-2.6 package)

(This message was generated automatically at their request; if you
believe that there is a problem with

Bug#498828: marked as done (rt61pci needs one more millisecond to initialize)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 01 Oct 2008 10:18:09 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#498828: fixed in linux-2.6 2.6.26-7
has caused the Debian Bug report #498828,
regarding rt61pci needs one more millisecond to initialize
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
498828: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=498828
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: linux-image-2.6.26-1-686
Version: 2.6.26-5
Severity: important
Tags: patch

Hello,

It is known that the rt61pci module needs one more millisecond to
initialize after the wireless card's firmware has been uploaded.
This problem was fixed with the following commit in 2.6.27-rcX
series:

=== 8< ===
commit e6d3e902088ac5da77b074f513e3cb80422ff471
Author: Ivo van Doorn <[EMAIL PROTECTED]>
Date:   Sun Jul 27 15:06:50 2008 +0200

rt2x00: rt61pci needs another millisecond after firmware upload
=== >8 ===

If this patch is not applied, then rt61pci becomes unresponsive after
one brings the interface down and up.

The appended patch fixes this issue. It applies (with an offset)
to Debian's kernel sources (2.6.26-5).

Regards,

M. Vefa Bicakci

Note: I am attaching the patch as well, in case my e-mail
client messes up the patch.

=== 8< ===
commit e6d3e902088ac5da77b074f513e3cb80422ff471
Author: Ivo van Doorn <[EMAIL PROTECTED]>
Date:   Sun Jul 27 15:06:50 2008 +0200

rt2x00: rt61pci needs another millisecond after firmware upload

After the hardware has indicated the firmware upload has completed
and the device is ready, we should wait another millisecond to
make sure the device is really ready to continue.

Without this timout, bringing the interface down and up again will
fail due to incorrect register initialization.

Signed-off-by: Ivo van Doorn <[EMAIL PROTECTED]>
Signed-off-by: John W. Linville <[EMAIL PROTECTED]>

diff --git a/drivers/net/wireless/rt2x00/rt61pci.c
b/drivers/net/wireless/rt2x00/rt61pci.c
index fbe2a65..087e90b 100644
--- a/drivers/net/wireless/rt2x00/rt61pci.c
+++ b/drivers/net/wireless/rt2x00/rt61pci.c
@@ -1004,6 +1004,11 @@ static int rt61pci_load_firmware(struct rt2x00_dev
*rt2x00dev, const void *data,
}

/*
+* Hardware needs another millisecond before it is ready.
+*/
+   msleep(1);
+
+   /*
 * Reset MAC and BBP registers.
 */
reg = 0;

=== >8 ===

commit e6d3e902088ac5da77b074f513e3cb80422ff471
Author: Ivo van Doorn <[EMAIL PROTECTED]>
Date:   Sun Jul 27 15:06:50 2008 +0200

rt2x00: rt61pci needs another millisecond after firmware upload

After the hardware has indicated the firmware upload has completed
and the device is ready, we should wait another millisecond to
make sure the device is really ready to continue.

Without this timout, bringing the interface down and up again will
fail due to incorrect register initialization.

Signed-off-by: Ivo van Doorn <[EMAIL PROTECTED]>
Signed-off-by: John W. Linville <[EMAIL PROTECTED]>

diff --git a/drivers/net/wireless/rt2x00/rt61pci.c b/drivers/net/wireless/rt2x00/rt61pci.c
index fbe2a65..087e90b 100644
--- a/drivers/net/wireless/rt2x00/rt61pci.c
+++ b/drivers/net/wireless/rt2x00/rt61pci.c
@@ -1004,6 +1004,11 @@ static int rt61pci_load_firmware(struct rt2x00_dev *rt2x00dev, const void *data,
 	}
 
 	/*
+	 * Hardware needs another millisecond before it is ready.
+	 */
+	msleep(1);
+
+	/*
 	 * Reset MAC and BBP registers.
 	 */
 	reg = 0;

--- End Message ---
--- Begin Message ---
Source: linux-2.6
Source-Version: 2.6.26-7

We believe that the bug you reported is fixed in the latest version of
linux-2.6, which is due to be installed in the Debian FTP archive:

linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.d

Bug#495590: marked as done (linux-2.6: Please package -xen-amd64 linux-images in sid)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 01 Oct 2008 10:18:09 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#495895: fixed in linux-2.6 2.6.26-7
has caused the Debian Bug report #495895,
regarding linux-2.6: Please package -xen-amd64 linux-images in sid
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
495895: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=495895
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Subject: linux-2.6: Please package -xen-amd64 linux-images in sid
Package: linux-2.6
Severity: wishlist

*** Please type your report below this line ***
Please provide linux-image-*-xen-amd64 packages in sid.  It's getting
fairly unreasonable to run multiple guests in so little ram.  64 bit
CPUs are quite common now.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.18-6-xen-amd64 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=es_US.UTF-8 (charmap=ISO-8859-1) (ignored: 
LC_ALL set to en_US)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---
Source: linux-2.6
Source-Version: 2.6.26-7

We believe that the bug you reported is fixed in the latest version of
linux-2.6, which is due to be installed in the Debian FTP archive:

linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-libc-dev_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-libc-dev_2.6.26-7_powerpc.deb
linux-manual-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-manual-2.6.26_2.6.26-7_all.deb
linux-patch-debian-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-patch-debian-2.6.26_2.6.26-7_all.deb
linux-source-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-source-2.6.26_2.6.26-7_all.deb
linux-support-2.6.26-1_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-support-2.6.26-1_2.6.26-7_all.deb
linux-tree-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-tree-2.6.26_2.6.26-7_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Blank <[EMAIL PROTECTED]> (supplier of updated linux-2.6 package)

(This message was generated automatically at their request; if you
believe that there is a problem wit

Bug#495895: marked as done (linux-image-2.6-xen-amd64: no xen kernel on lenny)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 01 Oct 2008 10:18:09 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#495895: fixed in linux-2.6 2.6.26-7
has caused the Debian Bug report #495895,
regarding linux-image-2.6-xen-amd64: no xen kernel on lenny
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
495895: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=495895
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: linux-image-2.6-xen-amd64
Version: 2.6.18+6etch3
Severity: normal


There is no amd64 xen kernel in Lenny.

This is a regression from Etch.

Thanks

Michal


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable'), (800, 'stable'), (150, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-xen-amd64
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages linux-image-2.6-xen-amd64 depends on:
ii  linux-image-2.6.18-6-xe 2.6.18.dfsg.1-22 Linux 2.6.18 image on AMD64

linux-image-2.6-xen-amd64 recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: linux-2.6
Source-Version: 2.6.26-7

We believe that the bug you reported is fixed in the latest version of
linux-2.6, which is due to be installed in the Debian FTP archive:

linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-libc-dev_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-libc-dev_2.6.26-7_powerpc.deb
linux-manual-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-manual-2.6.26_2.6.26-7_all.deb
linux-patch-debian-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-patch-debian-2.6.26_2.6.26-7_all.deb
linux-source-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-source-2.6.26_2.6.26-7_all.deb
linux-support-2.6.26-1_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-support-2.6.26-1_2.6.26-7_all.deb
linux-tree-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-tree-2.6.26_2.6.26-7_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Blank <[EMAIL PROTECTED]> (supplier of updated linux-2.6 package)

(This message was generated automatically at their request; if you
believe that th

Bug#498304: marked as done (The ISP1760 driver is not fully enabled / useful)

2008-10-01 Thread Debian Bug Tracking System

Your message dated Wed, 01 Oct 2008 10:18:09 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#498304: fixed in linux-2.6 2.6.26-7
has caused the Debian Bug report #498304,
regarding The ISP1760 driver is not fully enabled / useful
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
498304: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=498304
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: linux-2.6
Version: 2.6.26-4

The module isp1760.ko is enabled (CONFIG_USB_ISP1760_HCD=m) but not
useful because none of the currently available interfaces
(CONFIG_USB_ISP1760_PCI, CONFIG_USB_ISP1760_OF) are enabled.
Without one of this two options the driver can't be used.

Please active the interface(s) (so it could be probed if the HW is
available) or disable this driver (in order not confuse the user).


--- End Message ---
--- Begin Message ---
Source: linux-2.6
Source-Version: 2.6.26-7

We believe that the bug you reported is fixed in the latest version of
linux-2.6, which is due to be installed in the Debian FTP archive:

linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-libc-dev_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-libc-dev_2.6.26-7_powerpc.deb
linux-manual-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-manual-2.6.26_2.6.26-7_all.deb
linux-patch-debian-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-patch-debian-2.6.26_2.6.26-7_all.deb
linux-source-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-source-2.6.26_2.6.26-7_all.deb
linux-support-2.6.26-1_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-support-2.6.26-1_2.6.26-7_all.deb
linux-tree-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-tree-2.6.26_2.6.26-7_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Bastian Blank <[EMAIL PROTECTED]> (supplier of updated linux-2.6 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 01 Oct 2008 09:02:30 +0200
Source: linux-2.6
Binary: linux-source-2.6.26 linux-doc

linux-2.6_2.6.26-7_powerpc.changes ACCEPTED

2008-10-01 Thread Debian Installer

Accepted:
linux-2.6_2.6.26-7.diff.gz
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.diff.gz
linux-2.6_2.6.26-7.dsc
  to pool/main/l/linux-2.6/linux-2.6_2.6.26-7.dsc
linux-doc-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-doc-2.6.26_2.6.26-7_all.deb
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  to 
pool/main/l/linux-2.6/linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
linux-libc-dev_2.6.26-7_powerpc.deb
  to pool/main/l/linux-2.6/linux-libc-dev_2.6.26-7_powerpc.deb
linux-manual-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-manual-2.6.26_2.6.26-7_all.deb
linux-patch-debian-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-patch-debian-2.6.26_2.6.26-7_all.deb
linux-source-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-source-2.6.26_2.6.26-7_all.deb
linux-support-2.6.26-1_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-support-2.6.26-1_2.6.26-7_all.deb
linux-tree-2.6.26_2.6.26-7_all.deb
  to pool/main/l/linux-2.6/linux-tree-2.6.26_2.6.26-7_all.deb


Override entries for your package:
linux-2.6_2.6.26-7.dsc - source devel
linux-doc-2.6.26_2.6.26-7_all.deb - optional doc
linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb - optional devel
linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb - optional devel
linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb - optional devel
linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb - optional devel
linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb - optional devel
linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb - optional devel
linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb - optional devel
linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb - optional devel
linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb - optional devel
linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb - optional admin
linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb - optional admin
linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb - optional admin
linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb - optional admin
linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb - optional admin
linux-libc-dev_2.6.26-7_powerpc.deb - optional devel
linux-manual-2.6.26_2.6.26-7_all.deb - optional doc
linux-patch-debian-2.6.26_2.6.26-7_all.deb - optional devel
linux-source-2.6.26_2.6.26-7_all.deb - optional devel
linux-support-2.6.26-1_2.6.26-7_all.deb - optional devel
linux-tree-2.6.26_2.6.26-7_all.deb - optional devel

Announcing to [EMAIL PROTECTED]
Closing bugs: 494374 494546 495895 498304 498828 499463 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Processing of linux-2.6_2.6.26-7_powerpc.changes

2008-10-01 Thread Archive Administrator
linux-2.6_2.6.26-7_powerpc.changes uploaded successfully to localhost
along with the files:
  linux-2.6_2.6.26-7.dsc
  linux-2.6_2.6.26-7.diff.gz
  linux-doc-2.6.26_2.6.26-7_all.deb
  linux-manual-2.6.26_2.6.26-7_all.deb
  linux-patch-debian-2.6.26_2.6.26-7_all.deb
  linux-source-2.6.26_2.6.26-7_all.deb
  linux-support-2.6.26-1_2.6.26-7_all.deb
  linux-tree-2.6.26_2.6.26-7_all.deb
  linux-image-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-powerpc_2.6.26-7_powerpc.deb
  linux-image-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-powerpc-smp_2.6.26-7_powerpc.deb
  linux-image-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-powerpc64_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-common_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-all_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-all-powerpc_2.6.26-7_powerpc.deb
  linux-libc-dev_2.6.26-7_powerpc.deb
  linux-image-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-vserver-powerpc_2.6.26-7_powerpc.deb
  linux-image-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-vserver-powerpc64_2.6.26-7_powerpc.deb
  linux-headers-2.6.26-1-common-vserver_2.6.26-7_powerpc.deb

Greetings,

Your Debian queue daemon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Bug#498627: Confirmed using vanilla 2.6.26.5

2008-10-01 Thread Pavel Fertser
I can confirm that i can reproduce it in vanilla 2.6.26.5 with config
idential to that of packaged kernel and sec=krb5.




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]