Bug#763320: linux-image-3.16-2-amd64: intel_idle enabled for Intel Atom S1260, causes high CPU temperature when idle

2014-09-29 Thread Jan Kiszka
On 2014-09-30 02:13, Ben Hutchings wrote: > On Mon, 2014-09-29 at 11:57 +0200, Christophe Thil wrote: >> Package: src:linux >> Version: 3.16.3-2 >> Severity: normal >> >> Dear Maintainer, >> >> with Kernel 3.16, intel_idle is enabled for the Intel Atom S1260 CPU >> (Centerton SoC). This leads to a

linux_3.2.63-2_multi.changes ACCEPTED into proposed-updates->stable-new, proposed-updates

2014-09-29 Thread Debian FTP Masters
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Mon, 29 Sep 2014 22:35:33 +0100 Source: linux Binary: linux-source-3.2 linux-doc-3.2 linux-manual-3.2 linux-support-3.2.0-4 linux-libc-dev linux-headers-3.2.0-4-all linux-headers-3.2.0-4-all-alpha linux-headers-3.2.0-

Re: Uploading linux (3.2.63-1)

2014-09-29 Thread Adam D. Barratt
On Mon, 2014-09-29 at 23:24 +0100, Ben Hutchings wrote: > On Mon, 2014-09-29 at 19:29 +0100, Adam D. Barratt wrote: > > On Sun, 2014-09-28 at 18:42 +0100, Adam D. Barratt wrote: > > > On Wed, 2014-09-24 at 03:54 +0100, Ben Hutchings wrote: > > > > I intend to upload linux version 3.2.63-1 to stable

Re: [PATCH v2 3/5] spi-nor: Make spi_nor_scan() take a chip type name, not an spi_device_id

2014-09-29 Thread Rafał Miłecki
On 30 September 2014 04:15, Ben Hutchings wrote: > @@ -236,16 +236,13 @@ static int m25p_probe(struct spi_device *spi) > * If that's the case, respect "type" and ignore a "name". > */ > if (data && data->type) > - id = spi_nor_match_id(data->type); > +

Re: [PATCH 1/5] m25p80,spi-nor: Fix module aliases for m25p80

2014-09-29 Thread Rafał Miłecki
On 30 September 2014 04:07, Ben Hutchings wrote: > On Mon, 2014-09-29 at 08:36 +0200, Rafał Miłecki wrote: >> On 29 September 2014 00:21, Brian Norris wrote: >> > + Rafal >> > >> > Rafal has been looking at the same area of code. I'd really like to get >> > this patch into 3.18 if possible, so th

Re: [PATCH 1/5] m25p80,spi-nor: Fix module aliases for m25p80

2014-09-29 Thread Brian Norris
On Tue, Sep 30, 2014 at 03:07:38AM +0100, Ben Hutchings wrote: > On Mon, 2014-09-29 at 08:36 +0200, Rafał Miłecki wrote: > > b) I don't think the described clean solution (you described it in the > > commit message): > > > A clean solution to this will involve defining the list of device > > > IDs

Processed: Re: efivars should be included in initramfs

2014-09-29 Thread Debian Bug Tracking System
Processing control commands: > reassign -1 partman-md Bug #704836 [initramfs-tools] efivars should be included in initramfs Bug reassigned from package 'initramfs-tools' to 'partman-md'. No longer marked as found in versions initramfs-tools/0.109. Ignoring request to alter fixed versions of bug #7

Bug#704836: efivars should be included in initramfs

2014-09-29 Thread Ben Hutchings
Control: reassign -1 partman-md On Sat, 06 Apr 2013 16:06:04 +0100 Ben Hutchings wrote: > clone 704779 -1 > retitle -1 efivars should be included in initramfs > reassign -1 initramfs-tools 0.109 > thanks Actually, I think it makes more sense to do this in partman-md (or possibly mdadm's initramf

Re: Firmware-nonfree in wheezy-backports

2014-09-29 Thread Ben Hutchings
On Tue, 2014-08-19 at 11:20 +0300, Touko Korpela wrote: > On Sat, Aug 02, 2014 at 09:11:02PM +0300, Touko Korpela wrote: > > Could you update wheezy backports version of firmware-nonfree too (now at > > version 0.41 while jessie/sid has 0.43)? > > bpo version is still 0.41 I uploaded a new versio

[PATCH v2 5/5] m25p80,spi-nor: Share the list of supported chip type names again

2014-09-29 Thread Ben Hutchings
Move the list of chip type information to a macro in spi-nor.h, but leave the definitions of INFO and CAT25_INFO in spi-nor. In m25p80, define the INFO and CAT25_INFO macros to initialise a struct spi_device_id with the name, ignoring the remaining parameters. Signed-off-by: Ben Hutchings --- d

[PATCH v2 3/5] spi-nor: Make spi_nor_scan() take a chip type name, not an spi_device_id

2014-09-29 Thread Ben Hutchings
Drivers currently call spi_nor_match_id() and then spi_nor_scan(). This adds a dependency on struct spi_device_id which we want to avoid. Make spi_nor_scan() do it for them. Signed-off-by: Ben Hutchings --- drivers/mtd/devices/m25p80.c | 13 + drivers/mtd/spi-nor/fsl-quadspi.c

[PATCH v2 4/5] spi-nor: Replace struct spi_device_id with struct flash_info

2014-09-29 Thread Ben Hutchings
spi-nor does not depend on the SPI layer, so its use of struct spi_device_id adds an unnecessary indirection. Add the chip type name to struct flash_info and remove the wrapping struct spi_device_id. It also doesn't need a terminating zero entry in the array any more, so remove that. Signed-off-

[PATCH v2 2/5] spi-nor: Remove spi_nor::read_id operation

2014-09-29 Thread Ben Hutchings
There is currently no useful way to override the default implementation of this operation. The returned struct spi_device_id must have a pointer to struct flash_info in its private data, but this structure is defined inside spi-nor. Signed-off-by: Ben Hutchings --- drivers/mtd/spi-nor/spi-nor.c

[PATCH v2 1/5] m25p80,spi-nor: Fix module aliases for m25p80

2014-09-29 Thread Ben Hutchings
m25p80's device ID table is now spi_nor_ids, defined in spi-nor. The MODULE_DEVICE_TABLE() macro doesn't work with extern definitions, but its use was also removed at the same time. Now if m25p80 is built as a module it doesn't get the necessary aliases to be loaded automatically. A clean soluti

[PATCH v2 0/5] m25p80,spi-nor: Fix module aliases for m25p80; clean up chip identification

2014-09-29 Thread Ben Hutchings
The first patch in the series restores the module aliases to m25p80, but it does so by duplicating the list of names. This should be suitable for stable, but it isn't viable in the longer term. The following patches change the spi-nor interface so that this duplication is no longer necessary. Th

Re: [PATCH 1/5] m25p80,spi-nor: Fix module aliases for m25p80

2014-09-29 Thread Ben Hutchings
On Mon, 2014-09-29 at 08:36 +0200, Rafał Miłecki wrote: > On 29 September 2014 00:21, Brian Norris wrote: > > + Rafal > > > > Rafal has been looking at the same area of code. I'd really like to get > > this patch into 3.18 if possible, so the more eyes the better. > > Thanks Brian. > > I took me

Re: [PATCH 5/5] m25p80,spi-nor: Share the list of supported chip type names again

2014-09-29 Thread Ben Hutchings
On Wed, 2014-09-17 at 10:23 +0200, Geert Uytterhoeven wrote: > Hi Ben, > > On Mon, Sep 15, 2014 at 5:07 PM, Ben Hutchings wrote: > >> > > >> > +#define __SPI_NOR_ENUM_TYPES(c_id, str_and_c_id) > >> > \ > >> > + c_id(at25fs010) c_id(at25fs040) c_id(at

Re: [PATCH 0/5] m25p80,spi-nor: Fix module aliases for m25p80; clean up chip identification

2014-09-29 Thread Ben Hutchings
On Sun, 2014-09-28 at 15:03 -0700, Brian Norris wrote: > On Sun, Sep 14, 2014 at 06:13:15PM +0100, Ben Hutchings wrote: > > On Sun, 2014-09-14 at 18:10 +0100, Ben Hutchings wrote: > > > The first patch in the series restores the module aliases to m25p80, but > > > it does so by duplicating the list

firmware-nonfree_0.43~bpo70+1_multi.changes is NEW

2014-09-29 Thread Debian FTP Masters
binary:firmware-samsung is NEW. Your package has been put into the NEW queue, which requires manual action from the ftpteam to process. The upload was otherwise valid (it had a good OpenPGP signature and file hashes are valid), so please be patient. Packages are routinely processed through to the

Processed: tagging 763320 ...

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > tags 763320 + upstream Bug #763320 [src:linux] linux-image-3.16-2-amd64: intel_idle enabled for Intel Atom S1260, causes high CPU temperature when idle Added tag(s) upstream. > forwarded 763320 http://mid.gmane.org/1412035987.9388.72.ca...@decade

Processing of firmware-nonfree_0.43~bpo70+1_multi.changes

2014-09-29 Thread Debian FTP Masters
firmware-nonfree_0.43~bpo70+1_multi.changes uploaded successfully to localhost along with the files: firmware-nonfree_0.43~bpo70+1.dsc firmware-nonfree_0.43~bpo70+1.tar.gz firmware-linux_0.43~bpo70+1_all.deb firmware-adi_0.43~bpo70+1_all.deb firmware-atheros_0.43~bpo70+1_all.deb firmwar

Processed: Re: Bug#763209: general: laptop panel no longer powers off

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > tags 763209 - moreinfo Bug #763209 [general] general: laptop panel no longer powers off Removed tag(s) moreinfo. > reassign 763209 src:linux Bug #763209 [general] general: laptop panel no longer powers off Bug reassigned from package 'general' to

linux_3.2.63-2_multi.changes ACCEPTED into proposed-updates->stable-new

2014-09-29 Thread Debian FTP Masters
Mapping wheezy to stable. Mapping stable to proposed-updates. Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA512 Format: 1.8 Date: Mon, 29 Sep 2014 22:35:33 +0100 Source: linux Binary: linux-source-3.2 linux-doc-3.2 linux-manual-3.2 linux-support-3.2.0-4 linux-libc-dev linux-headers-3.2.

Processing of linux_3.2.63-2_multi.changes

2014-09-29 Thread Debian FTP Masters
linux_3.2.63-2_multi.changes uploaded successfully to localhost along with the files: linux_3.2.63-2.dsc linux_3.2.63-2.debian.tar.xz linux-doc-3.2_3.2.63-2_all.deb linux-support-3.2.0-4_3.2.63-2_all.deb linux-manual-3.2_3.2.63-2_all.deb linux-source-3.2_3.2.63-2_all.deb Greetings,

Bug#763320: linux-image-3.16-2-amd64: intel_idle enabled for Intel Atom S1260, causes high CPU temperature when idle

2014-09-29 Thread Ben Hutchings
On Mon, 2014-09-29 at 11:57 +0200, Christophe Thil wrote: > Package: src:linux > Version: 3.16.3-2 > Severity: normal > > Dear Maintainer, > > with Kernel 3.16, intel_idle is enabled for the Intel Atom S1260 CPU > (Centerton SoC). This leads to a +20°C temperature increase when the CPU > is idle,

Re: Bug#763209: general: laptop panel no longer powers off

2014-09-29 Thread Tomasz Nitecki
tags 763209 - moreinfo reassign 763209 src:linux found 763209 linux-image-3.14-2-amd64 thanks Hey, I'm reassigning your bug to Debian Kernel Team (src:linux). Just on a sidenote - yes, xserver-xorg-core was updated on 22 September but then it was updated again on 28 September :) A short summar

[PATCH v2 1/2] [klibc] Implement realpath()

2014-09-29 Thread Ben Hutchings
This is needed as the basis for the readlink -f option. Signed-off-by: Ben Hutchings --- v2: Don't implement the BSD/GNU extension of allowing a non-existent last part. Use open(O_PATH) and procfs to get resolved name from the kernel. --- a/usr/include/stdlib.h +++ b/usr/include/stdlib.h

Re: Uploading linux (3.2.63-1)

2014-09-29 Thread Ben Hutchings
On Mon, 2014-09-29 at 19:29 +0100, Adam D. Barratt wrote: > On Sun, 2014-09-28 at 18:42 +0100, Adam D. Barratt wrote: > > On Wed, 2014-09-24 at 03:54 +0100, Ben Hutchings wrote: > > > I intend to upload linux version 3.2.63-1 to stable-proposed-updates > > > later this week. This will include all

Bug#762812: Same on i386

2014-09-29 Thread Uwe Schindler
Hi, I have the same issue since yesterday when debian testing updated to 3.16: Linux sirius 3.16-2-686-pae #1 SMP Debian 3.16.3-2 (2014-09-20) i686 GNU/Linux [55356.351794] : hw csum failure [55356.351820] CPU: 0 PID: 3512 Comm: dnsmasq Not tainted 3.16-2-686-pae #1 Debian 3.16.3-2 [55356.351829

Bug#752789: initramfs-tools: mkinitramfs doesn't honor /usr/share/initramfs-tools/modules

2014-09-29 Thread Lukas Anzinger
On Mon, Sep 29, 2014 at 7:47 PM, Ben Hutchings wrote: > I think the best way to deal with this would be to add a comment > clarifying which file path is actually read. Yes, that would be really helpful! -- To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org with a subject of "unsub

Bug#752789: initramfs-tools: mkinitramfs doesn't honor /usr/share/initramfs-tools/modules

2014-09-29 Thread Lukas Anzinger
On Mon, Sep 29, 2014 at 7:47 PM, Ben Hutchings wrote: > /usr/share/initramfs-tools/modules is the 'shipped' version of > /etc/initramfs-tools/modules, and is copied to the latter file if it > does not already exist. The comment is of course correct in the copy. > And user-edittable configuration

Re: Uploading linux (3.2.63-1)

2014-09-29 Thread Adam D. Barratt
On Sun, 2014-09-28 at 18:42 +0100, Adam D. Barratt wrote: > On Wed, 2014-09-24 at 03:54 +0100, Ben Hutchings wrote: > > I intend to upload linux version 3.2.63-1 to stable-proposed-updates > > later this week. This will include all the fixes that went into stable > > updates 3.2.61-63 inclusive, i

Bug#755518: marked as done (laptop-mode-tools: fails to boot when /usr is on LVM)

2014-09-29 Thread Debian Bug Tracking System
Your message dated Mon, 29 Sep 2014 18:55:31 +0100 with message-id <1412013331.9388.58.ca...@decadent.org.uk> and subject line Re: laptop-mode-tools: fails to boot when /usr is on LVM has caused the Debian Bug report #755518, regarding laptop-mode-tools: fails to boot when /usr is on LVM to be mark

Bug#763305: linux-image-3.16-2-amd64: debian patch of linux kernel radeon driver erroneously prevents firmware loading

2014-09-29 Thread Ben Hutchings
On Mon, 2014-09-29 at 00:24 -0400, Colin Worth wrote: > Package: src:linux > Version: 3.16.3-2 > Severity: important > > Dear Maintainer, > > In order to use the radeon free driver with my HD6xxx series Radeon > card on my EFI boot laptop, I downloaded a fresh kernel from > kernel.org and built i

Bug#752789: initramfs-tools: mkinitramfs doesn't honor /usr/share/initramfs-tools/modules

2014-09-29 Thread Ben Hutchings
On Thu, 2014-06-26 at 17:33 +0200, Lukas Anzinger wrote: > Package: initramfs-tools > Version: 0.115 > Severity: normal > > Hi, > > mkinitramfs (the tool that is called from update-initramfs) doesn't > honor /usr/share/initramfs-tools/modules, it only honors > /etc/initramfs-tools/modules and /us

Bug#763320: Supported SoC CPU states

2014-09-29 Thread Christophe Thil
The SoC is identified by cpu family: 6 model: 54 model name: Intel(R) Atom(TM) CPU S1260 @ 2.00GHz stepping: 9 microcode: 0x10d According to the data sheet at http://www.intel.de/content/dam/www/public/us/en/documents/datasheets/atom-processor-s1200-datasheet-vol-1.pdf the SoC supports the C1,

Processed: forcibly merging 751488 751640

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > forcemerge 751488 751640 Bug #751488 [initramfs-tools] initramfs-tools: Shell spawned despite panic=0 Bug #751640 [initramfs-tools] initramfs-tools panic= may not always work Severity set to 'critical' from 'normal' Marked as found in versions ini

Processed (with 1 errors): reopening 751488, merging 751488 751640

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > reopen 751488 Bug #751488 {Done: Michael Prokop } [initramfs-tools] initramfs-tools: Shell spawned despite panic=0 'reopen' may be inappropriate when a bug has been closed with a version; all fixed versions will be cleared, and you may need to re

Processed: severity of 729800 is serious, tagging 729800

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > severity 729800 serious Bug #729800 [initramfs-tools] Packages including /usr/sbin/update-initramfs must Provide and Conflict with linux-initramfs-tool Severity set to 'serious' from 'normal' > tags 729800 + patch Bug #729800 [initramfs-tools] Pa

Processed: forcibly merging 707286 720716

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > forcemerge 707286 720716 Bug #707286 [initramfs-tools] linux-image-3.8-1-amd64: makes system unbootable Bug #616689 [initramfs-tools] Root-on-LVM setup fails often due to timing issues Bug #633024 [initramfs-tools] initramfs-tools: Race condition

Bug#751488: initramfs-tools: Shell spawned despite panic=0

2014-09-29 Thread Ben Hutchings
This bug has not been properly fixed. The init script does not only run panic if it fails to run the real init, but in several earlier error cases. In that case, the 'return' will cause init to continue rather than dropping off the end. I think we must use 'exit' instead of 'return'. Ben. --

Processed: tagging 627547

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > tags 627547 - pending Bug #627547 [initramfs-tools] /usr/sbin/update-initramfs: wrong arguments give misleading error message Removed tag(s) pending. > thanks Stopping processing here. Please contact me if you need assistance. -- 627547: http:/

Bug#685659: marked as done (initramfs-tools: please use blkid to resolve LABEL= and UUID= )

2014-09-29 Thread Debian Bug Tracking System
Your message dated Mon, 29 Sep 2014 17:53:44 +0100 with message-id <1412009624.9388.50.ca...@decadent.org.uk> and subject line Re: initramfs-tools: please use blkid to resolve LABEL= and UUID= has caused the Debian Bug report #685659, regarding initramfs-tools: please use blkid to resolve LABEL= a

Processed: Re: Bug#720735: initramfs-tools: mkinitramfs uses ldd, which is insecure and generates core dumps

2014-09-29 Thread Debian Bug Tracking System
Processing control commands: > retitle -1 initramfs-tools: Use static check for library dependencies instead > of ldd Bug #720735 [initramfs-tools] initramfs-tools: mkinitramfs uses ldd, which is insecure and generates core dumps Changed Bug title to 'initramfs-tools: Use static check for librar

Processed: tagging 760127, tagging 760127

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > tags 760127 - moreinfo Bug #760127 [initramfs-tools] Cannot find root device if booted without initramfs; MODULES=dep fails Bug #760126 [initramfs-tools] Cannot find root device if booted without initramfs; MODULES=dep fails Removed tag(s) morei

Bug#720735: initramfs-tools: mkinitramfs uses ldd, which is insecure and generates core dumps

2014-09-29 Thread Ben Hutchings
Control: retitle -1 initramfs-tools: Use static check for library dependencies instead of ldd Control: severity -1 normal On Sun, 2013-08-25 at 14:38 +0200, Vincent Lefevre wrote: > On 2013-08-25 09:53:07 +0100, Ben Hutchings wrote: > > No, this has a defined meaning in FHS: > > > > http://www.p

Bug#763354: Enable support for RTS5129 card reader

2014-09-29 Thread jidanni
Package: src:linux Version: 3.16.3-2 Please enable support for the RTS5129 card reader. Bus 001 Device 005: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller # journalctl 9月 30 00:04:35 jidanni5 systemd-udevd[168]: Network interface NamePolicy= disabled on kernel comman

Bug#759323: marked as done (linux-image-3.16-trunk-amd64 : Xorg freezes or the system reboots under glxgears)

2014-09-29 Thread Debian Bug Tracking System
Your message dated Mon, 29 Sep 2014 16:04:28 +0100 with message-id <1412003068.9388.43.ca...@decadent.org.uk> and subject line Re: Bug#759323: linux-image-3.16-trunk-amd64 : Xorg freezes or the system reboots under glxgears has caused the Debian Bug report #759323, regarding linux-image-3.16-trunk

Processed: severity of 763320 is important

2014-09-29 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org: > severity 763320 important Bug #763320 [src:linux] linux-image-3.16-2-amd64: intel_idle enabled for Intel Atom S1260, causes high CPU temperature when idle Severity set to 'important' from 'normal' > thanks Stopping processing here. Please contac

Bug#763325: Solid

2014-09-29 Thread ael
I just had a repeat of this dump with the same details and Call Trace. It seemed to happen when the machine was (probably) idle which I suppose fits with a watchdog bug. The other symptoms that I mentioned did not occur this time. ael -- To UNSUBSCRIBE, email to debian-kernel-requ...@lists.deb

Bug#763325: linux-image-3.16-2-amd64: Kernel oops 3.16.2-amd64

2014-09-29 Thread ael
Package: src:linux Version: 3.16.3-2 Severity: normal Noticed several oddities while booting this laptop after recent upgrade: Keyboard was flakey (the "1" did not work unless first on line), then ok. Fan running continuously which was not happening before. Of course, these things may have no con

Re: [PATCH 1/5] m25p80,spi-nor: Fix module aliases for m25p80

2014-09-29 Thread Rafał Miłecki
On 29 September 2014 11:53, Rafał Miłecki wrote: > On 29 September 2014 08:36, Rafał Miłecki wrote: >> 1) The main urgent issue: broken auto-loading >> Tracked in the thread: http://www.spinics.net/lists/linux-spi/msg01726.html >> Problem: m25p80.c references spi_nor_ids (from external file) >> S

Bug#763320: linux-image-3.16-2-amd64: intel_idle enabled for Intel Atom S1260, causes high CPU temperature when idle

2014-09-29 Thread Christophe Thil
Package: src:linux Version: 3.16.3-2 Severity: normal Dear Maintainer, with Kernel 3.16, intel_idle is enabled for the Intel Atom S1260 CPU (Centerton SoC). This leads to a +20°C temperature increase when the CPU is idle, exceeding the 100°C alarm threshold for passive cooled systems like the Sup

Re: [PATCH 1/5] m25p80,spi-nor: Fix module aliases for m25p80

2014-09-29 Thread Rafał Miłecki
On 29 September 2014 08:36, Rafał Miłecki wrote: > 1) The main urgent issue: broken auto-loading > Tracked in the thread: http://www.spinics.net/lists/linux-spi/msg01726.html > Problem: m25p80.c references spi_nor_ids (from external file) > Short-term solution: duplicate IDs in the m25p80.c > > Be

Re: [PATCH 1/5] m25p80,spi-nor: Fix module aliases for m25p80

2014-09-29 Thread Rafał Miłecki
On 29 September 2014 00:21, Brian Norris wrote: > (Honestly, some of this name-matching / ID-matching stuff confuses me; > there is at least one too many ways to choose a flash device for this > driver.) It's not that complex once you track it. It's just ugly to tracks because of different struct

Bug#759323: linux-image-3.16-trunk-amd64 : Xorg freezes or the system reboots under glxgears

2014-09-29 Thread Alain Rpnpif
This bug is resolved with the package: linux-image-3.16-0.bpo.2-amd64. Thank you. -- Alain Rpnpif -- To UNSUBSCRIBE, email to debian-kernel-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: https://lists.debian.org/20140929080107.7