Package: src:linux; Maintainer for src:linux is Debian Kernel Team <debian-kernel@lists.debian.org>;
Reported by: Ryan Tandy <ryan@nardis.ca>
Date: Fri, 25 Nov 2016 07:30:02 UTC
Severity: normal
Tags: patch, upstream
Found in versions linux/4.8.7-1, linux/4.6.2-2
Fixed in version linux/4.8.15-1
Done: Salvatore Bonaccorso <carnil@debian.org>
Bug is archived. No further changes may be made.
Forwarded to http://lists.infradead.org/pipermail/linux-arm-kernel/2016-December/471660.html
View this report as an mbox folder, status mbox, maintainer mbox
Report forwarded
to debian-bugs-dist@lists.debian.org, rogershimizu@gmail.com, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Fri, 25 Nov 2016 07:30:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Ryan Tandy <ryan@nardis.ca>:
New Bug report received and forwarded. Copy sent to rogershimizu@gmail.com, Debian Kernel Team <debian-kernel@lists.debian.org>.
(Fri, 25 Nov 2016 07:30:04 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: linux-image-4.8.0-1-marvell
Version: 4.8.7-1
Severity: normal
Tags: upstream
I found that on recent d-i images, the kernel does not detect the hard
drive on my LinkStation. I tried some older images and found that kernel
4.3.3-5 worked and kernel 4.6.2-2 did not.
I suspect the problem is with the device tree file, therefore CCing
Roger Shimizu who contributed that file.
The old kurobox_pro-setup.c contains this code:
static struct mv_sata_platform_data kurobox_pro_sata_data = {
.n_ports = 2,
};
whereas the new orion5x-linkstation.dtsi contains this code:
&sata {
status = "okay";
nr-ports = <1>;
};
The dmesg output seems to reinforce this conclusion.
dmesg from 4.3.0-1:
[ 611.914912] sata_mv sata_mv.0: version 1.28
[ 611.915107] sata_mv sata_mv.0: cannot get optional clkdev
[ 611.916086] sata_mv sata_mv.0: slots 32 ports 2
[ 611.971107] scsi host0: sata_mv
[ 611.984111] scsi host1: sata_mv
[ 611.984881] ata1: SATA max UDMA/133 irq 30
[ 611.984916] ata2: SATA max UDMA/133 irq 30
[ 612.302763] ata1: SATA link down (SStatus 0 SControl 300)
[ 612.778697] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 612.787074] ata2.00: ATA-7: SAMSUNG SP2504C, VT100-41, max UDMA7
[ 612.787118] ata2.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32)
[ 612.819082] ata2.00: configured for UDMA/133
[ 612.820339] scsi 1:0:0:0: Direct-Access ATA SAMSUNG SP2504C 0-41 PQ: 0 ANSI: 5
[ 612.899766] sd 1:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[ 612.900971] sd 1:0:0:0: [sda] Write Protect is off
[ 612.901031] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 612.901533] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 612.924886] sd 1:0:0:0: [sda] Attached SCSI disk
dmesg from 4.8.7-1:
[ 11.140091] sata_mv sata_mv.0: version 1.28
[ 11.140252] sata_mv sata_mv.0: cannot get optional clkdev
[ 11.170717] sata_mv sata_mv.0: slots 32 ports 1
[ 11.226581] scsi host0: sata_mv
[ 11.236985] ata1: SATA max UDMA/133 irq 28
[ 11.554565] ata1: SATA link down (SStatus 0 SControl 300)
In this extract, ata2 is apparently never scanned.
I expect changing nr-ports to 2 will fix this. I have not tested the
change yet, but will try to do so this weekend.
thanks
Ryan
Marked as found in versions 4.6.2-2.
Request was from Ryan Tandy <ryan@nardis.ca>
to control@bugs.debian.org.
(Fri, 25 Nov 2016 07:33:06 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Fri, 25 Nov 2016 07:45:06 GMT) (full text, mbox, link).
Acknowledgement sent
to Ian Campbell <ijc@debian.org>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Fri, 25 Nov 2016 07:45:06 GMT) (full text, mbox, link).
Message #12 received at 845611@bugs.debian.org (full text, mbox, reply):
On Thu, 2016-11-24 at 23:24 -0800, Ryan Tandy wrote:
> whereas the new orion5x-linkstation.dtsi contains this code:
>
> &sata {
> status = "okay";
> nr-ports = <1>;
> };
A .dtsi is an include file, not the final thing for any given device,
for that you need a .dts (which is compiled into a .dtb).
Assuming orion5x-linkstation.dtsi is correctly relating to your
platform you would appear to want one of:
$ git grep orion5x-linkstation.dtsi arch/arm/boot/dts/*.dts
arch/arm/boot/dts/orion5x-kuroboxpro.dts:#include "orion5x-linkstation.dtsi"
arch/arm/boot/dts/orion5x-linkstation-lsgl.dts:#include "orion5x-linkstation.dtsi"
arch/arm/boot/dts/orion5x-linkstation-lswtgl.dts:#include "orion5x-linkstation.dtsi"
(Or something else not yet present in the kernel tree.)
Of the three above orion5x-kuroboxpro.dts and orion5x-linkstation-
lswtgl both set ports to 2 using:
&sata {
nr-ports = <2>;
};
which overrides the defaults from the dtsi. You mentioned kurobox_pro-
setup.c so perhaps orion5x-kuroboxpro.dts is the one you want?
Ian.
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Fri, 25 Nov 2016 16:15:05 GMT) (full text, mbox, link).
Acknowledgement sent
to Ryan Tandy <ryan@nardis.ca>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Fri, 25 Nov 2016 16:15:05 GMT) (full text, mbox, link).
Message #17 received at 845611@bugs.debian.org (full text, mbox, reply):
On Fri, Nov 25, 2016 at 07:42:37AM +0000, Ian Campbell wrote:
>Assuming orion5x-linkstation.dtsi is correctly relating to your
>platform you would appear to want one of:
> $ git grep orion5x-linkstation.dtsi arch/arm/boot/dts/*.dts
> arch/arm/boot/dts/orion5x-kuroboxpro.dts:#include "orion5x-linkstation.dtsi"
> arch/arm/boot/dts/orion5x-linkstation-lsgl.dts:#include "orion5x-linkstation.dtsi"
> arch/arm/boot/dts/orion5x-linkstation-lswtgl.dts:#include "orion5x-linkstation.dtsi"
>
>(Or something else not yet present in the kernel tree.)
Mine is an LS-GL, so orion5x-linkstation-lsgl.dts should be the one.
(The model string in there is the same one I see at runtime, too.)
>Of the three above orion5x-kuroboxpro.dts and orion5x-linkstation-
>lswtgl both set ports to 2 using:
>
> &sata {
> nr-ports = <2>;
> };
>
>which overrides the defaults from the dtsi. You mentioned kurobox_pro-
>setup.c so perhaps orion5x-kuroboxpro.dts is the one you want?
Exactly - orion5x-linkstation-lsgl.dts is missing this chunk. So my
suspicion is it needs the same override (or, if they all end up using
the same value, maybe the dtsi can change - Roger would know better than
I would). Sorry for the lack of clarity.
kurobox_pro-setup.c, AFAIK, used to be used on several related
platforms. The kurobox pro and LS-GL are nearly identical.
thanks
Ryan
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Fri, 25 Nov 2016 16:27:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Ian Campbell <ijc@debian.org>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Fri, 25 Nov 2016 16:27:03 GMT) (full text, mbox, link).
Message #22 received at 845611@bugs.debian.org (full text, mbox, reply):
On Fri, 2016-11-25 at 08:10 -0800, Ryan Tandy wrote: > On Fri, Nov 25, 2016 at 07:42:37AM +0000, Ian Campbell wrote: > > > > Assuming orion5x-linkstation.dtsi is correctly relating to your > > platform you would appear to want one of: > > $ git grep orion5x-linkstation.dtsi arch/arm/boot/dts/*.dts > > arch/arm/boot/dts/orion5x-kuroboxpro.dts:#include "orion5x- > > linkstation.dtsi" > > arch/arm/boot/dts/orion5x-linkstation-lsgl.dts:#include > > "orion5x-linkstation.dtsi" > > arch/arm/boot/dts/orion5x-linkstation-lswtgl.dts:#include > > "orion5x-linkstation.dtsi" > > > > (Or something else not yet present in the kernel tree.) > > Mine is an LS-GL, so orion5x-linkstation-lsgl.dts should be the one. Is it possible that there are multiple variants of this one with differing numbers of disks? It's a little tricky to google for but all the LS-GL's I can see _look_ like they are single disk (see [*] below). Or maybe the naming is just confusing? Ian. [0] http://www.gkspk.com/view/techie/upgrade-hdd-buffalo-linkstation-ls -gl-nas/ [1] http://buffalo.nas-central.org/wiki/Category:LSPro reached from th "LS-GL v1" or "v2" link at http://buffalo.nas-central.org/wiki/Main_Pa ge [2] http://buffalo.nas-central.org/wiki/Information/LSPROOverview which is the result of searching for "LS-GL" on that site [3] http://buffalo.nas-central.org/wiki/Disassemble_the_LS_Pro_v1/LS_Li ve_v1
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Fri, 25 Nov 2016 16:57:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Ryan Tandy <ryan@nardis.ca>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Fri, 25 Nov 2016 16:57:04 GMT) (full text, mbox, link).
Message #27 received at 845611@bugs.debian.org (full text, mbox, reply):
On Fri, Nov 25, 2016 at 04:24:31PM +0000, Ian Campbell wrote: >Is it possible that there are multiple variants of this one with >differing numbers of disks? > >It's a little tricky to google for but all the LS-GL's I can see _look_ >like they are single disk (see [*] below). Or maybe the naming is just >confusing? I don't believe there is anything called LS-GL that supports more than one disk. Now that you mention it though, there are two hardware revisions out there: http://buffalo.nas-central.org/wiki/LinkstationProLiveDifferences I have the older (v1) hardware. I will crack the box open this weekend and confirm, but as far as I remember there was only one SATA connector. Aha, there was a guide for wiring up the second port, though: http://buffalo.nas-central.org/wiki/Add_a_Second_Hard_Drive_to_Your_LS_Pro_v1/LS_Live_v1 Mine has zero mods though, totally stock hardware-wise.
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Fri, 25 Nov 2016 17:03:05 GMT) (full text, mbox, link).
Acknowledgement sent
to Ian Campbell <ijc@debian.org>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Fri, 25 Nov 2016 17:03:05 GMT) (full text, mbox, link).
Message #32 received at 845611@bugs.debian.org (full text, mbox, reply):
On Fri, 2016-11-25 at 08:56 -0800, Ryan Tandy wrote: > On Fri, Nov 25, 2016 at 04:24:31PM +0000, Ian Campbell wrote: > > > > Is it possible that there are multiple variants of this one with > > differing numbers of disks? > > > > It's a little tricky to google for but all the LS-GL's I can see > > _look_ > > like they are single disk (see [*] below). Or maybe the naming is > > just > > confusing? > > > [...snip...] Thanks for all that. > Mine has zero mods though, totally stock hardware-wise. Oh, so the issue is not that you are missing a second disk, but rather that the one disk you do have seems to not be detected? You theory is that it is actually only the second port which is connected to anything in this hw? Sorry, took me a while to grok what you were saying in your original mail! Ian.
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Fri, 25 Nov 2016 17:09:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Ryan Tandy <ryan@nardis.ca>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Fri, 25 Nov 2016 17:09:03 GMT) (full text, mbox, link).
Message #37 received at 845611@bugs.debian.org (full text, mbox, reply):
On Fri, Nov 25, 2016 at 05:02:06PM +0000, Ian Campbell wrote: >Oh, so the issue is not that you are missing a second disk, but rather >that the one disk you do have seems to not be detected? You theory is >that it is actually only the second port which is connected to anything >in this hw? Yes, exactly.
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Sat, 26 Nov 2016 16:24:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Roger Shimizu <rogershimizu@gmail.com>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Sat, 26 Nov 2016 16:24:03 GMT) (full text, mbox, link).
Message #42 received at 845611@bugs.debian.org (full text, mbox, reply):
Dear Ryan,
On Fri, Nov 25, 2016 at 4:24 PM, Ryan Tandy <ryan@nardis.ca> wrote:
>
> [ 611.971107] scsi host0: sata_mv
> [ 611.984111] scsi host1: sata_mv
> [ 611.984881] ata1: SATA max UDMA/133 irq 30
> [ 611.984916] ata2: SATA max UDMA/133 irq 30
> [ 612.302763] ata1: SATA link down (SStatus 0 SControl 300)
> [ 612.778697] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
> [ 612.787074] ata2.00: ATA-7: SAMSUNG SP2504C, VT100-41, max UDMA7
> [ 612.787118] ata2.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32)
> [ 612.819082] ata2.00: configured for UDMA/133
Looks like your LS-GL really uses the 2nd SATA port.
Though my LS-GL works fine with current DTS.
So it need the following patch to be applied.
diff --git a/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts
b/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts
index 1cf644b..51dc734 100644
--- a/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts
+++ b/arch/arm/boot/dts/orion5x-linkstation-lsgl.dts
@@ -82,6 +82,10 @@
gpios = <&gpio0 9 GPIO_ACTIVE_HIGH>;
};
+&sata {
+ nr-ports = <2>;
+};
+
&ehci1 {
status = "okay";
};
On Sat, Nov 26, 2016 at 1:10 AM, Ryan Tandy <ryan@nardis.ca> wrote:
>
> kurobox_pro-setup.c, AFAIK, used to be used on several related platforms.
> The kurobox pro and LS-GL are nearly identical.
Yes. So maybe the easiest way for you is:
- start your device by kernel 4.3 first.
- confirm your have flash-kernel and linux-image-4.8.0-1-marvell installed.
- cp /usr/lib/linux-image-4.8.0-1-marvell/orion5x-kuroboxpro.dtb
/etc/flash-kernel/dtbs/orion5x-linkstation-lsgl.dtb
- flash-kernel --force 4.8.0-1-marvell
- check the log of above command, it should use
/etc/flash-kernel/dtbs/orion5x-linkstation-lsgl.dtb for building
uImage.buffalo, the kernel image for booting
- reboot and see the result
If the above steps works for you, I can submit the above patch to
kernel upstream, and include it into Stretch release.
So I'm looking forward to your result. Thank you!
Cheers,
--
Roger Shimizu, GMT +9 Tokyo
PGP/GPG: 4096R/6C6ACD6417B3ACB1
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Sat, 26 Nov 2016 21:03:02 GMT) (full text, mbox, link).
Acknowledgement sent
to Ryan Tandy <ryan@nardis.ca>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Sat, 26 Nov 2016 21:03:02 GMT) (full text, mbox, link).
Message #47 received at 845611@bugs.debian.org (full text, mbox, reply):
On Sun, Nov 27, 2016 at 01:20:10AM +0900, Roger Shimizu wrote: >- start your device by kernel 4.3 first. >- confirm your have flash-kernel and linux-image-4.8.0-1-marvell installed. >- cp /usr/lib/linux-image-4.8.0-1-marvell/orion5x-kuroboxpro.dtb >/etc/flash-kernel/dtbs/orion5x-linkstation-lsgl.dtb >- flash-kernel --force 4.8.0-1-marvell ~ # chroot /target flash-kernel --force 4.8.0-1-marvell DTB: orion5x-linkstation-lsgl.dtb Installing /etc/flash-kernel/dtbs/orion5x-linkstation-lsgl.dtb into /boot/dtbs/4.8.0-1-marvell/orion5x-linkstation-lsgl.dtb Taking backup of orion5x-linkstation-lsgl.dtb. Installing new orion5x-linkstation-lsgl.dtb. Installing /etc/flash-kernel/dtbs/orion5x-linkstation-lsgl.dtb into /boot/dtbs/4.8.0-1-marvell/orion5x-linkstation-lsgl.dtb Taking backup of orion5x-linkstation-lsgl.dtb. Installing new orion5x-linkstation-lsgl.dtb. flash-kernel: installing version 4.8.0-1-marvell flash-kernel: appending /etc/flash-kernel/dtbs/orion5x-linkstation-lsgl.dtb to kernel Generating kernel u-boot image... done. Taking backup of uImage.buffalo. Installing new uImage.buffalo. Generating initramfs u-boot image... done. Taking backup of initrd.buffalo. Installing new initrd.buffalo. >- check the log of above command, it should use >/etc/flash-kernel/dtbs/orion5x-linkstation-lsgl.dtb for building >uImage.buffalo, the kernel image for booting >- reboot and see the result > >If the above steps works for you, I can submit the above patch to >kernel upstream, and include it into Stretch release. >So I'm looking forward to your result. Thank you! It booted! :) Linux xenon 4.8.0-1-marvell #1 Debian 4.8.5-1 (2016-10-28) armv5tel GNU/Linux Unfortunately dmesg and kern.log are flooded with messages like: [ 161.781360] Bad eraseblock 32764 at 0x0001fff00000 [ 161.786261] Bad eraseblock 32765 at 0x0001fff40000 [ 161.791159] Bad eraseblock 32766 at 0x0001fff80000 [ 161.796058] Bad eraseblock 32767 at 0x0001fffc0000 and boot takes a very long time due to logging all these messages. I suppose that's a side-effect of using the kurobox-pro dtb - guessing it has a different flash layout? Anyway, the change to nr-ports=2 looks good! Tested-by: Ryan Tandy <ryan@nardis.ca> Thanks!
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Sat, 26 Nov 2016 22:51:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Ryan Tandy <ryan@nardis.ca>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Sat, 26 Nov 2016 22:51:03 GMT) (full text, mbox, link).
Message #52 received at 845611@bugs.debian.org (full text, mbox, reply):
Control: tag -1 patch On Sat, Nov 26, 2016 at 12:59:21PM -0800, Ryan Tandy wrote: >Unfortunately dmesg and kern.log are flooded with messages like: > >[ 161.781360] Bad eraseblock 32764 at 0x0001fff00000 >[ 161.786261] Bad eraseblock 32765 at 0x0001fff40000 >[ 161.791159] Bad eraseblock 32766 at 0x0001fff80000 >[ 161.796058] Bad eraseblock 32767 at 0x0001fffc0000 > >and boot takes a very long time due to logging all these messages. I >suppose that's a side-effect of using the kurobox-pro dtb - guessing >it has a different flash layout? Looks like that was the case. I applied your patch to orion5x-linkstation-lsgl.dts, rebuilt the dtb, dropped it into /etc/flash-kernel/dtbs, and ran flash-kernel again. Much better: [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 4.8.0-1-marvell (debian-kernel@lists.debian.org) (gcc version 5.4.1 20161019 (Debian 5.4.1-3) ) #1 Debian 4.8.5-1 (2016-10-28) [ 0.000000] CPU: Feroceon [41069260] revision 0 (ARMv5TEJ), cr=a005317f [ 0.000000] CPU: VIVT data cache, VIVT instruction cache [ 0.000000] OF: fdt:Machine model: Buffalo Linkstation Pro/Live [...] [ 3.297636] sata_mv sata_mv.0: version 1.28 [ 3.297844] sata_mv sata_mv.0: cannot get optional clkdev [ 3.320803] sata_mv sata_mv.0: slots 32 ports 2 [ 3.386495] scsi host0: sata_mv [ 3.403996] scsi host1: sata_mv [ 3.411527] ata1: SATA max UDMA/133 irq 28 [ 3.415723] ata2: SATA max UDMA/133 irq 28 [ 3.733937] ata1: SATA link down (SStatus 0 SControl 300) [ 4.212767] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300) [ 4.241078] ata2.00: ATA-7: SAMSUNG SP2504C, VT100-41, max UDMA7 [ 4.247154] ata2.00: 488397168 sectors, multi 0: LBA48 NCQ (depth 31/32) [ 4.293102] ata2.00: configured for UDMA/133 [ 4.298609] scsi 1:0:0:0: Direct-Access ATA SAMSUNG SP2504C 0-41 PQ: 0 ANSI: 5 [ 4.402529] sd 1:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB) [ 4.416368] sd 1:0:0:0: [sda] Write Protect is off [ 4.421270] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 4.421705] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 4.474159] sda: sda1 sda2 sda3 < sda5 > [ 4.493519] sd 1:0:0:0: [sda] Attached SCSI disk
Added tag(s) patch.
Request was from Ryan Tandy <ryan@nardis.ca>
to 845611-submit@bugs.debian.org.
(Sat, 26 Nov 2016 22:51:03 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, Debian Kernel Team <debian-kernel@lists.debian.org>:
Bug#845611; Package linux-image-4.8.0-1-marvell.
(Sun, 27 Nov 2016 00:15:08 GMT) (full text, mbox, link).
Acknowledgement sent
to Roger Shimizu <rogershimizu@gmail.com>:
Extra info received and forwarded to list. Copy sent to Debian Kernel Team <debian-kernel@lists.debian.org>.
(Sun, 27 Nov 2016 00:15:08 GMT) (full text, mbox, link).
Message #59 received at 845611@bugs.debian.org (full text, mbox, reply):
On Sun, Nov 27, 2016 at 7:50 AM, Ryan Tandy <ryan@nardis.ca> wrote: > Control: tag -1 patch > > On Sat, Nov 26, 2016 at 12:59:21PM -0800, Ryan Tandy wrote: >> >> Unfortunately dmesg and kern.log are flooded with messages like: >> >> [ 161.781360] Bad eraseblock 32764 at 0x0001fff00000 >> [ 161.786261] Bad eraseblock 32765 at 0x0001fff40000 >> [ 161.791159] Bad eraseblock 32766 at 0x0001fff80000 >> [ 161.796058] Bad eraseblock 32767 at 0x0001fffc0000 >> >> and boot takes a very long time due to logging all these messages. I >> suppose that's a side-effect of using the kurobox-pro dtb - guessing it has >> a different flash layout? Glad to hear it works for you. Actually there's less flash on Linkstation GL or Pro/Live than on KuroBox Pro. So using kurobox-pro dtb is just a tentative solution for test purpose. > On Sun, Nov 27, 2016 at 01:20:10AM +0900, Roger Shimizu wrote: >> >> - start your device by kernel 4.3 first. >> - confirm your have flash-kernel and linux-image-4.8.0-1-marvell >> installed. >> - cp /usr/lib/linux-image-4.8.0-1-marvell/orion5x-kuroboxpro.dtb >> /etc/flash-kernel/dtbs/orion5x-linkstation-lsgl.dtb >> - flash-kernel --force 4.8.0-1-marvell Sorry, I forgot to mention after steps above, when you want to switch to another kernel version, and run like - flash-kernel --force <debian-kernel-version> The flash-kernel will treat the device as Kurobox Pro. So you need the following command to tell flash-kernel that your device is Linkstation Pro/Live: # echo -n "Buffalo Linkstation Pro/Live" > /etc/flash-kernel/machine After that, you can switch back to kernel 4.3 or 4.4, which use the device file instead of device tree, if you still installed on your system: # flash-kernel --force 4.3.0-1-orion5x - or - # flash-kernel --force 4.4.0-1-marvell Cheers, -- Roger Shimizu, GMT +9 Tokyo PGP/GPG: 4096R/6C6ACD6417B3ACB1
Set Bug forwarded-to-address to 'http://lists.infradead.org/pipermail/linux-arm-kernel/2016-December/471660.html'.
Request was from Roger Shimizu <rogershimizu@gmail.com>
to control@bugs.debian.org.
(Sun, 04 Dec 2016 15:33:03 GMT) (full text, mbox, link).
Added tag(s) pending.
Request was from Roger Shimizu <rogershimizu@gmail.com>
to control@bugs.debian.org.
(Mon, 05 Dec 2016 23:45:03 GMT) (full text, mbox, link).
Reply sent
to Salvatore Bonaccorso <carnil@debian.org>:
You have taken responsibility.
(Mon, 19 Dec 2016 20:03:08 GMT) (full text, mbox, link).
Notification sent
to Ryan Tandy <ryan@nardis.ca>:
Bug acknowledged by developer.
(Mon, 19 Dec 2016 20:03:08 GMT) (full text, mbox, link).
Message #68 received at 845611-close@bugs.debian.org (full text, mbox, reply):
Source: linux
Source-Version: 4.8.15-1
We believe that the bug you reported is fixed in the latest version of
linux, which is due to be installed in the Debian FTP archive.
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 845611@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Salvatore Bonaccorso <carnil@debian.org> (supplier of updated linux 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 ftpmaster@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512
Format: 1.8
Date: Mon, 19 Dec 2016 12:35:29 +0100
Source: linux
Binary: linux-source-4.8 linux-support-4.8.0-2 linux-doc-4.8 linux-manual-4.8 linux-kbuild-4.8 linux-cpupower libcpupower1 libcpupower-dev linux-perf-4.8 libusbip-dev usbip hyperv-daemons linux-libc-dev linux-headers-4.8.0-2-all linux-headers-4.8.0-2-all-alpha kernel-image-4.8.0-2-alpha-generic-di nic-modules-4.8.0-2-alpha-generic-di nic-wireless-modules-4.8.0-2-alpha-generic-di nic-shared-modules-4.8.0-2-alpha-generic-di serial-modules-4.8.0-2-alpha-generic-di usb-serial-modules-4.8.0-2-alpha-generic-di ppp-modules-4.8.0-2-alpha-generic-di pata-modules-4.8.0-2-alpha-generic-di cdrom-core-modules-4.8.0-2-alpha-generic-di scsi-core-modules-4.8.0-2-alpha-generic-di scsi-modules-4.8.0-2-alpha-generic-di loop-modules-4.8.0-2-alpha-generic-di btrfs-modules-4.8.0-2-alpha-generic-di ext4-modules-4.8.0-2-alpha-generic-di isofs-modules-4.8.0-2-alpha-generic-di jfs-modules-4.8.0-2-alpha-generic-di xfs-modules-4.8.0-2-alpha-generic-di fat-modules-4.8.0-2-alpha-generic-di
md-modules-4.8.0-2-alpha-generic-di multipath-modules-4.8.0-2-alpha-generic-di usb-modules-4.8.0-2-alpha-generic-di usb-storage-modules-4.8.0-2-alpha-generic-di fb-modules-4.8.0-2-alpha-generic-di input-modules-4.8.0-2-alpha-generic-di event-modules-4.8.0-2-alpha-generic-di mouse-modules-4.8.0-2-alpha-generic-di nic-pcmcia-modules-4.8.0-2-alpha-generic-di pcmcia-modules-4.8.0-2-alpha-generic-di nic-usb-modules-4.8.0-2-alpha-generic-di sata-modules-4.8.0-2-alpha-generic-di crc-modules-4.8.0-2-alpha-generic-di crypto-modules-4.8.0-2-alpha-generic-di crypto-dm-modules-4.8.0-2-alpha-generic-di ata-modules-4.8.0-2-alpha-generic-di nbd-modules-4.8.0-2-alpha-generic-di squashfs-modules-4.8.0-2-alpha-generic-di virtio-modules-4.8.0-2-alpha-generic-di zlib-modules-4.8.0-2-alpha-generic-di fuse-modules-4.8.0-2-alpha-generic-di srm-modules-4.8.0-2-alpha-generic-di linux-headers-4.8.0-2-common linux-image-4.8.0-2-alpha-generic linux-headers-4.8.0-2-alpha-generic
linux-image-4.8.0-2-alpha-generic-dbgsym linux-image-4.8.0-2-alpha-smp linux-headers-4.8.0-2-alpha-smp linux-image-4.8.0-2-alpha-smp-dbgsym linux-headers-4.8.0-2-all-amd64 linux-image-4.8.0-2-amd64-unsigned linux-headers-4.8.0-2-amd64 linux-image-4.8.0-2-amd64-dbgsym xen-linux-system-4.8.0-2-amd64 linux-headers-4.8.0-2-common-rt linux-image-4.8.0-2-rt-amd64-unsigned linux-headers-4.8.0-2-rt-amd64 linux-image-4.8.0-2-rt-amd64-dbgsym linux-headers-4.8.0-2-all-arm64 linux-image-4.8.0-2-arm64-unsigned linux-headers-4.8.0-2-arm64 linux-image-4.8.0-2-arm64-dbgsym linux-headers-4.8.0-2-all-armel kernel-image-4.8.0-2-marvell-di nic-modules-4.8.0-2-marvell-di nic-shared-modules-4.8.0-2-marvell-di usb-serial-modules-4.8.0-2-marvell-di ppp-modules-4.8.0-2-marvell-di cdrom-core-modules-4.8.0-2-marvell-di scsi-core-modules-4.8.0-2-marvell-di loop-modules-4.8.0-2-marvell-di ipv6-modules-4.8.0-2-marvell-di btrfs-modules-4.8.0-2-marvell-di ext4-modules-4.8.0-2-marvell-di
isofs-modules-4.8.0-2-marvell-di jffs2-modules-4.8.0-2-marvell-di jfs-modules-4.8.0-2-marvell-di fat-modules-4.8.0-2-marvell-di minix-modules-4.8.0-2-marvell-di md-modules-4.8.0-2-marvell-di multipath-modules-4.8.0-2-marvell-di usb-modules-4.8.0-2-marvell-di usb-storage-modules-4.8.0-2-marvell-di fb-modules-4.8.0-2-marvell-di input-modules-4.8.0-2-marvell-di event-modules-4.8.0-2-marvell-di mouse-modules-4.8.0-2-marvell-di nic-usb-modules-4.8.0-2-marvell-di sata-modules-4.8.0-2-marvell-di crc-modules-4.8.0-2-marvell-di crypto-modules-4.8.0-2-marvell-di crypto-dm-modules-4.8.0-2-marvell-di mmc-modules-4.8.0-2-marvell-di nbd-modules-4.8.0-2-marvell-di squashfs-modules-4.8.0-2-marvell-di uinput-modules-4.8.0-2-marvell-di zlib-modules-4.8.0-2-marvell-di leds-modules-4.8.0-2-marvell-di udf-modules-4.8.0-2-marvell-di fuse-modules-4.8.0-2-marvell-di mtd-modules-4.8.0-2-marvell-di kernel-image-4.8.0-2-versatile-di nic-modules-4.8.0-2-versatile-di
nic-shared-modules-4.8.0-2-versatile-di usb-serial-modules-4.8.0-2-versatile-di ppp-modules-4.8.0-2-versatile-di cdrom-core-modules-4.8.0-2-versatile-di scsi-core-modules-4.8.0-2-versatile-di scsi-modules-4.8.0-2-versatile-di loop-modules-4.8.0-2-versatile-di btrfs-modules-4.8.0-2-versatile-di ext4-modules-4.8.0-2-versatile-di isofs-modules-4.8.0-2-versatile-di fat-modules-4.8.0-2-versatile-di md-modules-4.8.0-2-versatile-di multipath-modules-4.8.0-2-versatile-di usb-modules-4.8.0-2-versatile-di usb-storage-modules-4.8.0-2-versatile-di nic-usb-modules-4.8.0-2-versatile-di sata-modules-4.8.0-2-versatile-di crc-modules-4.8.0-2-versatile-di crypto-modules-4.8.0-2-versatile-di crypto-dm-modules-4.8.0-2-versatile-di nbd-modules-4.8.0-2-versatile-di squashfs-modules-4.8.0-2-versatile-di virtio-modules-4.8.0-2-versatile-di zlib-modules-4.8.0-2-versatile-di udf-modules-4.8.0-2-versatile-di fuse-modules-4.8.0-2-versatile-di linux-image-4.8.0-2-marvell
linux-headers-4.8.0-2-marvell linux-image-4.8.0-2-marvell-dbgsym linux-image-4.8.0-2-versatile linux-headers-4.8.0-2-versatile linux-image-4.8.0-2-versatile-dbgsym linux-headers-4.8.0-2-all-armhf linux-image-4.8.0-2-armmp-unsigned linux-headers-4.8.0-2-armmp linux-image-4.8.0-2-armmp-dbgsym linux-image-4.8.0-2-armmp-lpae-unsigned linux-headers-4.8.0-2-armmp-lpae linux-image-4.8.0-2-armmp-lpae-dbgsym linux-headers-4.8.0-2-all-hppa kernel-image-4.8.0-2-parisc-di nic-modules-4.8.0-2-parisc-di nic-shared-modules-4.8.0-2-parisc-di serial-modules-4.8.0-2-parisc-di usb-serial-modules-4.8.0-2-parisc-di ppp-modules-4.8.0-2-parisc-di pata-modules-4.8.0-2-parisc-di cdrom-core-modules-4.8.0-2-parisc-di scsi-core-modules-4.8.0-2-parisc-di scsi-modules-4.8.0-2-parisc-di loop-modules-4.8.0-2-parisc-di btrfs-modules-4.8.0-2-parisc-di ext4-modules-4.8.0-2-parisc-di isofs-modules-4.8.0-2-parisc-di jfs-modules-4.8.0-2-parisc-di xfs-modules-4.8.0-2-parisc-di
fat-modules-4.8.0-2-parisc-di md-modules-4.8.0-2-parisc-di multipath-modules-4.8.0-2-parisc-di usb-modules-4.8.0-2-parisc-di usb-storage-modules-4.8.0-2-parisc-di input-modules-4.8.0-2-parisc-di event-modules-4.8.0-2-parisc-di mouse-modules-4.8.0-2-parisc-di nic-usb-modules-4.8.0-2-parisc-di sata-modules-4.8.0-2-parisc-di crc-modules-4.8.0-2-parisc-di crypto-modules-4.8.0-2-parisc-di crypto-dm-modules-4.8.0-2-parisc-di ata-modules-4.8.0-2-parisc-di nbd-modules-4.8.0-2-parisc-di squashfs-modules-4.8.0-2-parisc-di virtio-modules-4.8.0-2-parisc-di zlib-modules-4.8.0-2-parisc-di fuse-modules-4.8.0-2-parisc-di kernel-image-4.8.0-2-parisc64-smp-di nic-modules-4.8.0-2-parisc64-smp-di nic-shared-modules-4.8.0-2-parisc64-smp-di serial-modules-4.8.0-2-parisc64-smp-di usb-serial-modules-4.8.0-2-parisc64-smp-di ppp-modules-4.8.0-2-parisc64-smp-di pata-modules-4.8.0-2-parisc64-smp-di cdrom-core-modules-4.8.0-2-parisc64-smp-di scsi-core-modules-4.8.0-2-parisc64-smp-di
scsi-modules-4.8.0-2-parisc64-smp-di loop-modules-4.8.0-2-parisc64-smp-di btrfs-modules-4.8.0-2-parisc64-smp-di ext4-modules-4.8.0-2-parisc64-smp-di isofs-modules-4.8.0-2-parisc64-smp-di jfs-modules-4.8.0-2-parisc64-smp-di xfs-modules-4.8.0-2-parisc64-smp-di fat-modules-4.8.0-2-parisc64-smp-di md-modules-4.8.0-2-parisc64-smp-di multipath-modules-4.8.0-2-parisc64-smp-di usb-modules-4.8.0-2-parisc64-smp-di usb-storage-modules-4.8.0-2-parisc64-smp-di fb-modules-4.8.0-2-parisc64-smp-di input-modules-4.8.0-2-parisc64-smp-di event-modules-4.8.0-2-parisc64-smp-di mouse-modules-4.8.0-2-parisc64-smp-di nic-usb-modules-4.8.0-2-parisc64-smp-di sata-modules-4.8.0-2-parisc64-smp-di crc-modules-4.8.0-2-parisc64-smp-di crypto-modules-4.8.0-2-parisc64-smp-di crypto-dm-modules-4.8.0-2-parisc64-smp-di ata-modules-4.8.0-2-parisc64-smp-di nbd-modules-4.8.0-2-parisc64-smp-di squashfs-modules-4.8.0-2-parisc64-smp-di virtio-modules-4.8.0-2-parisc64-smp-di
zlib-modules-4.8.0-2-parisc64-smp-di fuse-modules-4.8.0-2-parisc64-smp-di linux-image-4.8.0-2-parisc linux-headers-4.8.0-2-parisc linux-image-4.8.0-2-parisc-dbgsym linux-image-4.8.0-2-parisc64-smp linux-headers-4.8.0-2-parisc64-smp linux-image-4.8.0-2-parisc64-smp-dbgsym linux-headers-4.8.0-2-all-i386 linux-image-4.8.0-2-686-unsigned linux-headers-4.8.0-2-686 linux-image-4.8.0-2-686-dbgsym linux-image-4.8.0-2-686-pae-unsigned linux-headers-4.8.0-2-686-pae linux-image-4.8.0-2-686-pae-dbgsym linux-image-4.8.0-2-rt-686-pae-unsigned linux-headers-4.8.0-2-rt-686-pae linux-image-4.8.0-2-rt-686-pae-dbgsym linux-headers-4.8.0-2-all-m68k kernel-image-4.8.0-2-m68k-di nic-shared-modules-4.8.0-2-m68k-di ppp-modules-4.8.0-2-m68k-di cdrom-core-modules-4.8.0-2-m68k-di scsi-modules-4.8.0-2-m68k-di btrfs-modules-4.8.0-2-m68k-di ext4-modules-4.8.0-2-m68k-di isofs-modules-4.8.0-2-m68k-di fat-modules-4.8.0-2-m68k-di md-modules-4.8.0-2-m68k-di crc-modules-4.8.0-2-m68k-di
crypto-modules-4.8.0-2-m68k-di nbd-modules-4.8.0-2-m68k-di squashfs-modules-4.8.0-2-m68k-di zlib-modules-4.8.0-2-m68k-di udf-modules-4.8.0-2-m68k-di fuse-modules-4.8.0-2-m68k-di linux-image-4.8.0-2-m68k linux-headers-4.8.0-2-m68k linux-image-4.8.0-2-m68k-dbgsym linux-headers-4.8.0-2-all-mips kernel-image-4.8.0-2-4kc-malta-di nic-modules-4.8.0-2-4kc-malta-di nic-wireless-modules-4.8.0-2-4kc-malta-di nic-shared-modules-4.8.0-2-4kc-malta-di usb-serial-modules-4.8.0-2-4kc-malta-di ppp-modules-4.8.0-2-4kc-malta-di pata-modules-4.8.0-2-4kc-malta-di cdrom-core-modules-4.8.0-2-4kc-malta-di scsi-core-modules-4.8.0-2-4kc-malta-di scsi-modules-4.8.0-2-4kc-malta-di loop-modules-4.8.0-2-4kc-malta-di btrfs-modules-4.8.0-2-4kc-malta-di ext4-modules-4.8.0-2-4kc-malta-di isofs-modules-4.8.0-2-4kc-malta-di jfs-modules-4.8.0-2-4kc-malta-di ntfs-modules-4.8.0-2-4kc-malta-di xfs-modules-4.8.0-2-4kc-malta-di fat-modules-4.8.0-2-4kc-malta-di hfs-modules-4.8.0-2-4kc-malta-di
affs-modules-4.8.0-2-4kc-malta-di minix-modules-4.8.0-2-4kc-malta-di md-modules-4.8.0-2-4kc-malta-di multipath-modules-4.8.0-2-4kc-malta-di usb-modules-4.8.0-2-4kc-malta-di usb-storage-modules-4.8.0-2-4kc-malta-di input-modules-4.8.0-2-4kc-malta-di event-modules-4.8.0-2-4kc-malta-di mouse-modules-4.8.0-2-4kc-malta-di nic-usb-modules-4.8.0-2-4kc-malta-di sata-modules-4.8.0-2-4kc-malta-di i2c-modules-4.8.0-2-4kc-malta-di crc-modules-4.8.0-2-4kc-malta-di crypto-modules-4.8.0-2-4kc-malta-di crypto-dm-modules-4.8.0-2-4kc-malta-di ata-modules-4.8.0-2-4kc-malta-di mmc-core-modules-4.8.0-2-4kc-malta-di mmc-modules-4.8.0-2-4kc-malta-di nbd-modules-4.8.0-2-4kc-malta-di squashfs-modules-4.8.0-2-4kc-malta-di virtio-modules-4.8.0-2-4kc-malta-di sound-modules-4.8.0-2-4kc-malta-di zlib-modules-4.8.0-2-4kc-malta-di udf-modules-4.8.0-2-4kc-malta-di fuse-modules-4.8.0-2-4kc-malta-di kernel-image-4.8.0-2-octeon-di nic-modules-4.8.0-2-octeon-di nic-wireless-modules-4.8.0-2-octeon-di
nic-shared-modules-4.8.0-2-octeon-di usb-serial-modules-4.8.0-2-octeon-di ppp-modules-4.8.0-2-octeon-di pata-modules-4.8.0-2-octeon-di cdrom-core-modules-4.8.0-2-octeon-di scsi-core-modules-4.8.0-2-octeon-di scsi-modules-4.8.0-2-octeon-di loop-modules-4.8.0-2-octeon-di btrfs-modules-4.8.0-2-octeon-di ext4-modules-4.8.0-2-octeon-di isofs-modules-4.8.0-2-octeon-di jfs-modules-4.8.0-2-octeon-di ntfs-modules-4.8.0-2-octeon-di xfs-modules-4.8.0-2-octeon-di fat-modules-4.8.0-2-octeon-di hfs-modules-4.8.0-2-octeon-di affs-modules-4.8.0-2-octeon-di minix-modules-4.8.0-2-octeon-di md-modules-4.8.0-2-octeon-di multipath-modules-4.8.0-2-octeon-di usb-modules-4.8.0-2-octeon-di usb-storage-modules-4.8.0-2-octeon-di input-modules-4.8.0-2-octeon-di event-modules-4.8.0-2-octeon-di nic-usb-modules-4.8.0-2-octeon-di sata-modules-4.8.0-2-octeon-di crc-modules-4.8.0-2-octeon-di crypto-modules-4.8.0-2-octeon-di crypto-dm-modules-4.8.0-2-octeon-di nbd-modules-4.8.0-2-octeon-di
squashfs-modules-4.8.0-2-octeon-di rtc-modules-4.8.0-2-octeon-di virtio-modules-4.8.0-2-octeon-di sound-modules-4.8.0-2-octeon-di zlib-modules-4.8.0-2-octeon-di udf-modules-4.8.0-2-octeon-di fuse-modules-4.8.0-2-octeon-di linux-image-4.8.0-2-4kc-malta linux-headers-4.8.0-2-4kc-malta linux-image-4.8.0-2-4kc-malta-dbgsym linux-image-4.8.0-2-5kc-malta linux-headers-4.8.0-2-5kc-malta linux-image-4.8.0-2-5kc-malta-dbgsym linux-image-4.8.0-2-octeon linux-headers-4.8.0-2-octeon linux-image-4.8.0-2-octeon-dbgsym linux-headers-4.8.0-2-all-mipsel kernel-image-4.8.0-2-loongson-3-di nic-modules-4.8.0-2-loongson-3-di nic-wireless-modules-4.8.0-2-loongson-3-di nic-shared-modules-4.8.0-2-loongson-3-di usb-serial-modules-4.8.0-2-loongson-3-di ppp-modules-4.8.0-2-loongson-3-di pata-modules-4.8.0-2-loongson-3-di cdrom-core-modules-4.8.0-2-loongson-3-di firewire-core-modules-4.8.0-2-loongson-3-di scsi-core-modules-4.8.0-2-loongson-3-di scsi-modules-4.8.0-2-loongson-3-di
loop-modules-4.8.0-2-loongson-3-di btrfs-modules-4.8.0-2-loongson-3-di ext4-modules-4.8.0-2-loongson-3-di isofs-modules-4.8.0-2-loongson-3-di jfs-modules-4.8.0-2-loongson-3-di ntfs-modules-4.8.0-2-loongson-3-di xfs-modules-4.8.0-2-loongson-3-di fat-modules-4.8.0-2-loongson-3-di hfs-modules-4.8.0-2-loongson-3-di affs-modules-4.8.0-2-loongson-3-di minix-modules-4.8.0-2-loongson-3-di nfs-modules-4.8.0-2-loongson-3-di md-modules-4.8.0-2-loongson-3-di multipath-modules-4.8.0-2-loongson-3-di usb-modules-4.8.0-2-loongson-3-di usb-storage-modules-4.8.0-2-loongson-3-di fb-modules-4.8.0-2-loongson-3-di input-modules-4.8.0-2-loongson-3-di event-modules-4.8.0-2-loongson-3-di nic-usb-modules-4.8.0-2-loongson-3-di sata-modules-4.8.0-2-loongson-3-di crc-modules-4.8.0-2-loongson-3-di crypto-modules-4.8.0-2-loongson-3-di crypto-dm-modules-4.8.0-2-loongson-3-di ata-modules-4.8.0-2-loongson-3-di nbd-modules-4.8.0-2-loongson-3-di squashfs-modules-4.8.0-2-loongson-3-di
speakup-modules-4.8.0-2-loongson-3-di virtio-modules-4.8.0-2-loongson-3-di sound-modules-4.8.0-2-loongson-3-di zlib-modules-4.8.0-2-loongson-3-di udf-modules-4.8.0-2-loongson-3-di fuse-modules-4.8.0-2-loongson-3-di linux-image-4.8.0-2-loongson-3 linux-headers-4.8.0-2-loongson-3 linux-image-4.8.0-2-loongson-3-dbgsym linux-headers-4.8.0-2-all-mips64 kernel-image-4.8.0-2-5kc-malta-di nic-modules-4.8.0-2-5kc-malta-di nic-wireless-modules-4.8.0-2-5kc-malta-di nic-shared-modules-4.8.0-2-5kc-malta-di usb-serial-modules-4.8.0-2-5kc-malta-di ppp-modules-4.8.0-2-5kc-malta-di pata-modules-4.8.0-2-5kc-malta-di cdrom-core-modules-4.8.0-2-5kc-malta-di scsi-core-modules-4.8.0-2-5kc-malta-di scsi-modules-4.8.0-2-5kc-malta-di loop-modules-4.8.0-2-5kc-malta-di btrfs-modules-4.8.0-2-5kc-malta-di ext4-modules-4.8.0-2-5kc-malta-di isofs-modules-4.8.0-2-5kc-malta-di jfs-modules-4.8.0-2-5kc-malta-di ntfs-modules-4.8.0-2-5kc-malta-di xfs-modules-4.8.0-2-5kc-malta-di
fat-modules-4.8.0-2-5kc-malta-di hfs-modules-4.8.0-2-5kc-malta-di affs-modules-4.8.0-2-5kc-malta-di minix-modules-4.8.0-2-5kc-malta-di md-modules-4.8.0-2-5kc-malta-di multipath-modules-4.8.0-2-5kc-malta-di usb-modules-4.8.0-2-5kc-malta-di usb-storage-modules-4.8.0-2-5kc-malta-di input-modules-4.8.0-2-5kc-malta-di event-modules-4.8.0-2-5kc-malta-di mouse-modules-4.8.0-2-5kc-malta-di nic-usb-modules-4.8.0-2-5kc-malta-di sata-modules-4.8.0-2-5kc-malta-di i2c-modules-4.8.0-2-5kc-malta-di crc-modules-4.8.0-2-5kc-malta-di crypto-modules-4.8.0-2-5kc-malta-di crypto-dm-modules-4.8.0-2-5kc-malta-di ata-modules-4.8.0-2-5kc-malta-di mmc-core-modules-4.8.0-2-5kc-malta-di mmc-modules-4.8.0-2-5kc-malta-di nbd-modules-4.8.0-2-5kc-malta-di squashfs-modules-4.8.0-2-5kc-malta-di virtio-modules-4.8.0-2-5kc-malta-di sound-modules-4.8.0-2-5kc-malta-di zlib-modules-4.8.0-2-5kc-malta-di udf-modules-4.8.0-2-5kc-malta-di fuse-modules-4.8.0-2-5kc-malta-di linux-headers-4.8.0-2-all-mips64el
linux-headers-4.8.0-2-all-powerpc linux-image-4.8.0-2-powerpc-unsigned linux-headers-4.8.0-2-powerpc linux-image-4.8.0-2-powerpc-dbgsym linux-image-4.8.0-2-powerpc-smp-unsigned linux-headers-4.8.0-2-powerpc-smp linux-image-4.8.0-2-powerpc-smp-dbgsym linux-image-4.8.0-2-powerpc64-unsigned linux-headers-4.8.0-2-powerpc64 linux-image-4.8.0-2-powerpc64-dbgsym linux-headers-4.8.0-2-all-powerpcspe linux-image-4.8.0-2-powerpcspe linux-headers-4.8.0-2-powerpcspe linux-image-4.8.0-2-powerpcspe-dbgsym linux-headers-4.8.0-2-all-ppc64 kernel-image-4.8.0-2-powerpc64-di nic-modules-4.8.0-2-powerpc64-di nic-shared-modules-4.8.0-2-powerpc64-di serial-modules-4.8.0-2-powerpc64-di usb-serial-modules-4.8.0-2-powerpc64-di ppp-modules-4.8.0-2-powerpc64-di pata-modules-4.8.0-2-powerpc64-di cdrom-core-modules-4.8.0-2-powerpc64-di firewire-core-modules-4.8.0-2-powerpc64-di scsi-core-modules-4.8.0-2-powerpc64-di scsi-modules-4.8.0-2-powerpc64-di loop-modules-4.8.0-2-powerpc64-di
btrfs-modules-4.8.0-2-powerpc64-di ext4-modules-4.8.0-2-powerpc64-di isofs-modules-4.8.0-2-powerpc64-di jfs-modules-4.8.0-2-powerpc64-di xfs-modules-4.8.0-2-powerpc64-di fat-modules-4.8.0-2-powerpc64-di hfs-modules-4.8.0-2-powerpc64-di affs-modules-4.8.0-2-powerpc64-di md-modules-4.8.0-2-powerpc64-di multipath-modules-4.8.0-2-powerpc64-di usb-modules-4.8.0-2-powerpc64-di usb-storage-modules-4.8.0-2-powerpc64-di pcmcia-storage-modules-4.8.0-2-powerpc64-di input-modules-4.8.0-2-powerpc64-di event-modules-4.8.0-2-powerpc64-di mouse-modules-4.8.0-2-powerpc64-di nic-pcmcia-modules-4.8.0-2-powerpc64-di pcmcia-modules-4.8.0-2-powerpc64-di sata-modules-4.8.0-2-powerpc64-di crc-modules-4.8.0-2-powerpc64-di crypto-modules-4.8.0-2-powerpc64-di crypto-dm-modules-4.8.0-2-powerpc64-di ata-modules-4.8.0-2-powerpc64-di nbd-modules-4.8.0-2-powerpc64-di squashfs-modules-4.8.0-2-powerpc64-di virtio-modules-4.8.0-2-powerpc64-di uinput-modules-4.8.0-2-powerpc64-di
udf-modules-4.8.0-2-powerpc64-di fuse-modules-4.8.0-2-powerpc64-di hypervisor-modules-4.8.0-2-powerpc64-di fancontrol-modules-4.8.0-2-powerpc64-di linux-image-4.8.0-2-powerpc64 linux-headers-4.8.0-2-all-ppc64el linux-image-4.8.0-2-powerpc64le-unsigned linux-headers-4.8.0-2-powerpc64le linux-image-4.8.0-2-powerpc64le-dbgsym linux-headers-4.8.0-2-all-s390x linux-image-4.8.0-2-s390x-unsigned linux-headers-4.8.0-2-s390x linux-image-4.8.0-2-s390x-dbgsym linux-headers-4.8.0-2-all-sh4 kernel-image-4.8.0-2-sh7751r-di nic-modules-4.8.0-2-sh7751r-di usb-serial-modules-4.8.0-2-sh7751r-di ppp-modules-4.8.0-2-sh7751r-di pata-modules-4.8.0-2-sh7751r-di cdrom-core-modules-4.8.0-2-sh7751r-di firewire-core-modules-4.8.0-2-sh7751r-di loop-modules-4.8.0-2-sh7751r-di btrfs-modules-4.8.0-2-sh7751r-di ext4-modules-4.8.0-2-sh7751r-di isofs-modules-4.8.0-2-sh7751r-di jfs-modules-4.8.0-2-sh7751r-di xfs-modules-4.8.0-2-sh7751r-di fat-modules-4.8.0-2-sh7751r-di
minix-modules-4.8.0-2-sh7751r-di md-modules-4.8.0-2-sh7751r-di multipath-modules-4.8.0-2-sh7751r-di usb-storage-modules-4.8.0-2-sh7751r-di nic-usb-modules-4.8.0-2-sh7751r-di sata-modules-4.8.0-2-sh7751r-di i2c-modules-4.8.0-2-sh7751r-di crc-modules-4.8.0-2-sh7751r-di crypto-modules-4.8.0-2-sh7751r-di crypto-dm-modules-4.8.0-2-sh7751r-di nbd-modules-4.8.0-2-sh7751r-di squashfs-modules-4.8.0-2-sh7751r-di speakup-modules-4.8.0-2-sh7751r-di virtio-modules-4.8.0-2-sh7751r-di sound-modules-4.8.0-2-sh7751r-di zlib-modules-4.8.0-2-sh7751r-di udf-modules-4.8.0-2-sh7751r-di fuse-modules-4.8.0-2-sh7751r-di kernel-image-4.8.0-2-sh7785lcr-di nic-modules-4.8.0-2-sh7785lcr-di usb-serial-modules-4.8.0-2-sh7785lcr-di ppp-modules-4.8.0-2-sh7785lcr-di pata-modules-4.8.0-2-sh7785lcr-di cdrom-core-modules-4.8.0-2-sh7785lcr-di firewire-core-modules-4.8.0-2-sh7785lcr-di loop-modules-4.8.0-2-sh7785lcr-di btrfs-modules-4.8.0-2-sh7785lcr-di ext4-modules-4.8.0-2-sh7785lcr-di
isofs-modules-4.8.0-2-sh7785lcr-di jfs-modules-4.8.0-2-sh7785lcr-di xfs-modules-4.8.0-2-sh7785lcr-di fat-modules-4.8.0-2-sh7785lcr-di minix-modules-4.8.0-2-sh7785lcr-di md-modules-4.8.0-2-sh7785lcr-di multipath-modules-4.8.0-2-sh7785lcr-di nic-usb-modules-4.8.0-2-sh7785lcr-di sata-modules-4.8.0-2-sh7785lcr-di crc-modules-4.8.0-2-sh7785lcr-di crypto-modules-4.8.0-2-sh7785lcr-di crypto-dm-modules-4.8.0-2-sh7785lcr-di nbd-modules-4.8.0-2-sh7785lcr-di squashfs-modules-4.8.0-2-sh7785lcr-di speakup-modules-4.8.0-2-sh7785lcr-di sound-modules-4.8.0-2-sh7785lcr-di zlib-modules-4.8.0-2-sh7785lcr-di udf-modules-4.8.0-2-sh7785lcr-di fuse-modules-4.8.0-2-sh7785lcr-di linux-image-4.8.0-2-sh7751r linux-headers-4.8.0-2-sh7751r linux-image-4.8.0-2-sh7751r-dbgsym linux-image-4.8.0-2-sh7785lcr linux-headers-4.8.0-2-sh7785lcr linux-image-4.8.0-2-sh7785lcr-dbgsym linux-headers-4.8.0-2-all-sparc64 kernel-image-4.8.0-2-sparc64-di nic-modules-4.8.0-2-sparc64-di
ppp-modules-4.8.0-2-sparc64-di pata-modules-4.8.0-2-sparc64-di cdrom-core-modules-4.8.0-2-sparc64-di scsi-core-modules-4.8.0-2-sparc64-di scsi-modules-4.8.0-2-sparc64-di btrfs-modules-4.8.0-2-sparc64-di ext4-modules-4.8.0-2-sparc64-di isofs-modules-4.8.0-2-sparc64-di jfs-modules-4.8.0-2-sparc64-di xfs-modules-4.8.0-2-sparc64-di fat-modules-4.8.0-2-sparc64-di md-modules-4.8.0-2-sparc64-di multipath-modules-4.8.0-2-sparc64-di usb-modules-4.8.0-2-sparc64-di usb-storage-modules-4.8.0-2-sparc64-di input-modules-4.8.0-2-sparc64-di sata-modules-4.8.0-2-sparc64-di crc-modules-4.8.0-2-sparc64-di crypto-modules-4.8.0-2-sparc64-di crypto-dm-modules-4.8.0-2-sparc64-di ata-modules-4.8.0-2-sparc64-di nbd-modules-4.8.0-2-sparc64-di squashfs-modules-4.8.0-2-sparc64-di virtio-modules-4.8.0-2-sparc64-di zlib-modules-4.8.0-2-sparc64-di udf-modules-4.8.0-2-sparc64-di fuse-modules-4.8.0-2-sparc64-di linux-image-4.8.0-2-sparc64 linux-headers-4.8.0-2-sparc64
linux-image-4.8.0-2-sparc64-dbgsym linux-image-4.8.0-2-sparc64-smp linux-headers-4.8.0-2-sparc64-smp linux-image-4.8.0-2-sparc64-smp-dbgsym linux-compiler-gcc-5-arm linux-compiler-gcc-5-s390
linux-compiler-gcc-5-x86
Architecture: all source
Version: 4.8.15-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Changed-By: Salvatore Bonaccorso <carnil@debian.org>
Closes: 845611 847154 848349
Description:
affs-modules-4.8.0-2-4kc-malta-di - Amiga filesystem support (udeb)
affs-modules-4.8.0-2-5kc-malta-di - Amiga filesystem support (udeb)
affs-modules-4.8.0-2-loongson-3-di - Amiga filesystem support (udeb)
affs-modules-4.8.0-2-octeon-di - Amiga filesystem support (udeb)
affs-modules-4.8.0-2-powerpc64-di - Amiga filesystem support (udeb)
ata-modules-4.8.0-2-4kc-malta-di - ATA disk modules (udeb)
ata-modules-4.8.0-2-5kc-malta-di - ATA disk modules (udeb)
ata-modules-4.8.0-2-alpha-generic-di - ATA disk modules (udeb)
ata-modules-4.8.0-2-loongson-3-di - ATA disk modules (udeb)
ata-modules-4.8.0-2-parisc-di - ATA disk modules (udeb)
ata-modules-4.8.0-2-parisc64-smp-di - ATA disk modules (udeb)
ata-modules-4.8.0-2-powerpc64-di - ATA disk modules (udeb)
ata-modules-4.8.0-2-sparc64-di - ATA disk modules (udeb)
btrfs-modules-4.8.0-2-4kc-malta-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-5kc-malta-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-alpha-generic-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-loongson-3-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-m68k-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-marvell-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-octeon-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-parisc-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-parisc64-smp-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-powerpc64-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-sh7751r-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-sh7785lcr-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-sparc64-di - BTRFS filesystem support (udeb)
btrfs-modules-4.8.0-2-versatile-di - BTRFS filesystem support (udeb)
cdrom-core-modules-4.8.0-2-4kc-malta-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-5kc-malta-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-alpha-generic-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-loongson-3-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-m68k-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-marvell-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-octeon-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-parisc-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-parisc64-smp-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-powerpc64-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-sh7751r-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-sh7785lcr-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-sparc64-di - CDROM support (udeb)
cdrom-core-modules-4.8.0-2-versatile-di - CDROM support (udeb)
crc-modules-4.8.0-2-4kc-malta-di - CRC modules (udeb)
crc-modules-4.8.0-2-5kc-malta-di - CRC modules (udeb)
crc-modules-4.8.0-2-alpha-generic-di - CRC modules (udeb)
crc-modules-4.8.0-2-loongson-3-di - CRC modules (udeb)
crc-modules-4.8.0-2-m68k-di - CRC modules (udeb)
crc-modules-4.8.0-2-marvell-di - CRC modules (udeb)
crc-modules-4.8.0-2-octeon-di - CRC modules (udeb)
crc-modules-4.8.0-2-parisc-di - CRC modules (udeb)
crc-modules-4.8.0-2-parisc64-smp-di - CRC modules (udeb)
crc-modules-4.8.0-2-powerpc64-di - CRC modules (udeb)
crc-modules-4.8.0-2-sh7751r-di - CRC modules (udeb)
crc-modules-4.8.0-2-sh7785lcr-di - CRC modules (udeb)
crc-modules-4.8.0-2-sparc64-di - CRC modules (udeb)
crc-modules-4.8.0-2-versatile-di - CRC modules (udeb)
crypto-dm-modules-4.8.0-2-4kc-malta-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-5kc-malta-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-alpha-generic-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-loongson-3-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-marvell-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-octeon-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-parisc-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-parisc64-smp-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-powerpc64-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-sh7751r-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-sh7785lcr-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-sparc64-di - devicemapper crypto module (udeb)
crypto-dm-modules-4.8.0-2-versatile-di - devicemapper crypto module (udeb)
crypto-modules-4.8.0-2-4kc-malta-di - crypto modules (udeb)
crypto-modules-4.8.0-2-5kc-malta-di - crypto modules (udeb)
crypto-modules-4.8.0-2-alpha-generic-di - crypto modules (udeb)
crypto-modules-4.8.0-2-loongson-3-di - crypto modules (udeb)
crypto-modules-4.8.0-2-m68k-di - crypto modules (udeb)
crypto-modules-4.8.0-2-marvell-di - crypto modules (udeb)
crypto-modules-4.8.0-2-octeon-di - crypto modules (udeb)
crypto-modules-4.8.0-2-parisc-di - crypto modules (udeb)
crypto-modules-4.8.0-2-parisc64-smp-di - crypto modules (udeb)
crypto-modules-4.8.0-2-powerpc64-di - crypto modules (udeb)
crypto-modules-4.8.0-2-sh7751r-di - crypto modules (udeb)
crypto-modules-4.8.0-2-sh7785lcr-di - crypto modules (udeb)
crypto-modules-4.8.0-2-sparc64-di - crypto modules (udeb)
crypto-modules-4.8.0-2-versatile-di - crypto modules (udeb)
event-modules-4.8.0-2-4kc-malta-di - Event support (udeb)
event-modules-4.8.0-2-5kc-malta-di - Event support (udeb)
event-modules-4.8.0-2-alpha-generic-di - Event support (udeb)
event-modules-4.8.0-2-loongson-3-di - Event support (udeb)
event-modules-4.8.0-2-marvell-di - Event support (udeb)
event-modules-4.8.0-2-octeon-di - Event support (udeb)
event-modules-4.8.0-2-parisc-di - Event support (udeb)
event-modules-4.8.0-2-parisc64-smp-di - Event support (udeb)
event-modules-4.8.0-2-powerpc64-di - Event support (udeb)
ext4-modules-4.8.0-2-4kc-malta-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-5kc-malta-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-alpha-generic-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-loongson-3-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-m68k-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-marvell-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-octeon-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-parisc-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-parisc64-smp-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-powerpc64-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-sh7751r-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-sh7785lcr-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-sparc64-di - ext2/ext3/ext4 filesystem support (udeb)
ext4-modules-4.8.0-2-versatile-di - ext2/ext3/ext4 filesystem support (udeb)
fancontrol-modules-4.8.0-2-powerpc64-di - Apple powermac fancontrol modules (udeb)
fat-modules-4.8.0-2-4kc-malta-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-5kc-malta-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-alpha-generic-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-loongson-3-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-m68k-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-marvell-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-octeon-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-parisc-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-parisc64-smp-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-powerpc64-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-sh7751r-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-sh7785lcr-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-sparc64-di - FAT filesystem support (udeb)
fat-modules-4.8.0-2-versatile-di - FAT filesystem support (udeb)
fb-modules-4.8.0-2-alpha-generic-di - Frame buffer support (udeb)
fb-modules-4.8.0-2-loongson-3-di - Frame buffer support (udeb)
fb-modules-4.8.0-2-marvell-di - Frame buffer support (udeb)
fb-modules-4.8.0-2-parisc64-smp-di - Frame buffer support (udeb)
firewire-core-modules-4.8.0-2-loongson-3-di - Core FireWire drivers (udeb)
firewire-core-modules-4.8.0-2-powerpc64-di - Core FireWire drivers (udeb)
firewire-core-modules-4.8.0-2-sh7751r-di - Core FireWire drivers (udeb)
firewire-core-modules-4.8.0-2-sh7785lcr-di - Core FireWire drivers (udeb)
fuse-modules-4.8.0-2-4kc-malta-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-5kc-malta-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-alpha-generic-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-loongson-3-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-m68k-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-marvell-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-octeon-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-parisc-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-parisc64-smp-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-powerpc64-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-sh7751r-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-sh7785lcr-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-sparc64-di - FUSE modules (udeb)
fuse-modules-4.8.0-2-versatile-di - FUSE modules (udeb)
hfs-modules-4.8.0-2-4kc-malta-di - HFS filesystem support (udeb)
hfs-modules-4.8.0-2-5kc-malta-di - HFS filesystem support (udeb)
hfs-modules-4.8.0-2-loongson-3-di - HFS filesystem support (udeb)
hfs-modules-4.8.0-2-octeon-di - HFS filesystem support (udeb)
hfs-modules-4.8.0-2-powerpc64-di - HFS filesystem support (udeb)
hyperv-daemons - Support daemons for Linux running on Hyper-V
hypervisor-modules-4.8.0-2-powerpc64-di - IBM 64bit hypervisor console modules (udeb)
i2c-modules-4.8.0-2-4kc-malta-di - i2c support modules (udeb)
i2c-modules-4.8.0-2-5kc-malta-di - i2c support modules (udeb)
i2c-modules-4.8.0-2-sh7751r-di - i2c support modules (udeb)
input-modules-4.8.0-2-4kc-malta-di - Input devices support (udeb)
input-modules-4.8.0-2-5kc-malta-di - Input devices support (udeb)
input-modules-4.8.0-2-alpha-generic-di - Input devices support (udeb)
input-modules-4.8.0-2-loongson-3-di - Input devices support (udeb)
input-modules-4.8.0-2-marvell-di - Input devices support (udeb)
input-modules-4.8.0-2-octeon-di - Input devices support (udeb)
input-modules-4.8.0-2-parisc-di - Input devices support (udeb)
input-modules-4.8.0-2-parisc64-smp-di - Input devices support (udeb)
input-modules-4.8.0-2-powerpc64-di - Input devices support (udeb)
input-modules-4.8.0-2-sparc64-di - Input devices support (udeb)
ipv6-modules-4.8.0-2-marvell-di - IPv6 driver (udeb)
isofs-modules-4.8.0-2-4kc-malta-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-5kc-malta-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-alpha-generic-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-loongson-3-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-m68k-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-marvell-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-octeon-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-parisc-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-parisc64-smp-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-powerpc64-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-sh7751r-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-sh7785lcr-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-sparc64-di - ISOFS filesystem support (udeb)
isofs-modules-4.8.0-2-versatile-di - ISOFS filesystem support (udeb)
jffs2-modules-4.8.0-2-marvell-di - JFFS2 filesystem support (udeb)
jfs-modules-4.8.0-2-4kc-malta-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-5kc-malta-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-alpha-generic-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-loongson-3-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-marvell-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-octeon-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-parisc-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-parisc64-smp-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-powerpc64-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-sh7751r-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-sh7785lcr-di - JFS filesystem support (udeb)
jfs-modules-4.8.0-2-sparc64-di - JFS filesystem support (udeb)
kernel-image-4.8.0-2-4kc-malta-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-5kc-malta-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-alpha-generic-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-loongson-3-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-m68k-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-marvell-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-octeon-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-parisc-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-parisc64-smp-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-powerpc64-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-sh7751r-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-sh7785lcr-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-sparc64-di - Linux kernel image and core modules for the Debian installer (udeb)
kernel-image-4.8.0-2-versatile-di - Linux kernel image and core modules for the Debian installer (udeb)
leds-modules-4.8.0-2-marvell-di - LED modules (udeb)
libcpupower-dev - CPU frequency and voltage scaling tools for Linux (development fi
libcpupower1 - CPU frequency and voltage scaling tools for Linux (libraries)
libusbip-dev - USB device sharing system over IP network (development files)
linux-compiler-gcc-5-arm - Compiler for Linux on ARM (meta-package)
linux-compiler-gcc-5-s390 - Compiler for Linux on IBM zSeries (meta-package)
linux-compiler-gcc-5-x86 - Compiler for Linux on x86 (meta-package)
linux-cpupower - CPU frequency and voltage scaling tools for Linux
linux-doc-4.8 - Linux kernel specific documentation for version 4.8
linux-headers-4.8.0-2-4kc-malta - Header files for Linux 4.8.0-2-4kc-malta
linux-headers-4.8.0-2-5kc-malta - Header files for Linux 4.8.0-2-5kc-malta
linux-headers-4.8.0-2-686 - Header files for Linux 4.8.0-2-686
linux-headers-4.8.0-2-686-pae - Header files for Linux 4.8.0-2-686-pae
linux-headers-4.8.0-2-all - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-alpha - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-amd64 - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-arm64 - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-armel - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-armhf - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-hppa - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-i386 - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-m68k - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-mips - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-mips64 - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-mips64el - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-mipsel - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-powerpc - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-powerpcspe - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-ppc64 - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-ppc64el - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-s390x - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-sh4 - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-all-sparc64 - All header files for Linux 4.8 (meta-package)
linux-headers-4.8.0-2-alpha-generic - Header files for Linux 4.8.0-2-alpha-generic
linux-headers-4.8.0-2-alpha-smp - Header files for Linux 4.8.0-2-alpha-smp
linux-headers-4.8.0-2-amd64 - Header files for Linux 4.8.0-2-amd64
linux-headers-4.8.0-2-arm64 - Header files for Linux 4.8.0-2-arm64
linux-headers-4.8.0-2-armmp - Header files for Linux 4.8.0-2-armmp
linux-headers-4.8.0-2-armmp-lpae - Header files for Linux 4.8.0-2-armmp-lpae
linux-headers-4.8.0-2-common - Common header files for Linux 4.8.0-2
linux-headers-4.8.0-2-common-rt - Common header files for Linux 4.8.0-2-rt
linux-headers-4.8.0-2-loongson-3 - Header files for Linux 4.8.0-2-loongson-3
linux-headers-4.8.0-2-m68k - Header files for Linux 4.8.0-2-m68k
linux-headers-4.8.0-2-marvell - Header files for Linux 4.8.0-2-marvell
linux-headers-4.8.0-2-octeon - Header files for Linux 4.8.0-2-octeon
linux-headers-4.8.0-2-parisc - Header files for Linux 4.8.0-2-parisc
linux-headers-4.8.0-2-parisc64-smp - Header files for Linux 4.8.0-2-parisc64-smp
linux-headers-4.8.0-2-powerpc - Header files for Linux 4.8.0-2-powerpc
linux-headers-4.8.0-2-powerpc-smp - Header files for Linux 4.8.0-2-powerpc-smp
linux-headers-4.8.0-2-powerpc64 - Header files for Linux 4.8.0-2-powerpc64
linux-headers-4.8.0-2-powerpc64le - Header files for Linux 4.8.0-2-powerpc64le
linux-headers-4.8.0-2-powerpcspe - Header files for Linux 4.8.0-2-powerpcspe
linux-headers-4.8.0-2-rt-686-pae - Header files for Linux 4.8.0-2-rt-686-pae
linux-headers-4.8.0-2-rt-amd64 - Header files for Linux 4.8.0-2-rt-amd64
linux-headers-4.8.0-2-s390x - Header files for Linux 4.8.0-2-s390x
linux-headers-4.8.0-2-sh7751r - Header files for Linux 4.8.0-2-sh7751r
linux-headers-4.8.0-2-sh7785lcr - Header files for Linux 4.8.0-2-sh7785lcr
linux-headers-4.8.0-2-sparc64 - Header files for Linux 4.8.0-2-sparc64
linux-headers-4.8.0-2-sparc64-smp - Header files for Linux 4.8.0-2-sparc64-smp
linux-headers-4.8.0-2-versatile - Header files for Linux 4.8.0-2-versatile
linux-image-4.8.0-2-4kc-malta - Linux 4.8 for MIPS Malta
linux-image-4.8.0-2-4kc-malta-dbgsym - Debug symbols for linux-image-4.8.0-2-4kc-malta
linux-image-4.8.0-2-5kc-malta - Linux 4.8 for MIPS Malta (64-bit)
linux-image-4.8.0-2-5kc-malta-dbgsym - Debug symbols for linux-image-4.8.0-2-5kc-malta
linux-image-4.8.0-2-686-dbgsym - Debug symbols for linux-image-4.8.0-2-686
linux-image-4.8.0-2-686-pae-dbgsym - Debug symbols for linux-image-4.8.0-2-686-pae
linux-image-4.8.0-2-686-pae-unsigned - Linux 4.8 for modern PCs
linux-image-4.8.0-2-686-unsigned - Linux 4.8 for older PCs
linux-image-4.8.0-2-alpha-generic - Linux 4.8 for Alpha
linux-image-4.8.0-2-alpha-generic-dbgsym - Debug symbols for linux-image-4.8.0-2-alpha-generic
linux-image-4.8.0-2-alpha-smp - Linux 4.8 for Alpha SMP
linux-image-4.8.0-2-alpha-smp-dbgsym - Debug symbols for linux-image-4.8.0-2-alpha-smp
linux-image-4.8.0-2-amd64-dbgsym - Debug symbols for linux-image-4.8.0-2-amd64
linux-image-4.8.0-2-amd64-unsigned - Linux 4.8 for 64-bit PCs
linux-image-4.8.0-2-arm64-dbgsym - Debug symbols for linux-image-4.8.0-2-arm64
linux-image-4.8.0-2-arm64-unsigned - Linux 4.8 for 64-bit ARMv8 machines
linux-image-4.8.0-2-armmp-dbgsym - Debug symbols for linux-image-4.8.0-2-armmp
linux-image-4.8.0-2-armmp-lpae-dbgsym - Debug symbols for linux-image-4.8.0-2-armmp-lpae
linux-image-4.8.0-2-armmp-lpae-unsigned - Linux 4.8 for ARMv7 multiplatform compatible SoCs supporting LPAE
linux-image-4.8.0-2-armmp-unsigned - Linux 4.8 for ARMv7 multiplatform compatible SoCs
linux-image-4.8.0-2-loongson-3 - Linux 4.8 for Loongson 3A/3B
linux-image-4.8.0-2-loongson-3-dbgsym - Debug symbols for linux-image-4.8.0-2-loongson-3
linux-image-4.8.0-2-m68k - Linux 4.8 for Motorola MC68020+ family
linux-image-4.8.0-2-m68k-dbgsym - Debug symbols for linux-image-4.8.0-2-m68k
linux-image-4.8.0-2-marvell - Linux 4.8 for Marvell Kirkwood/Orion
linux-image-4.8.0-2-marvell-dbgsym - Debug symbols for linux-image-4.8.0-2-marvell
linux-image-4.8.0-2-octeon - Linux 4.8 for Octeon
linux-image-4.8.0-2-octeon-dbgsym - Debug symbols for linux-image-4.8.0-2-octeon
linux-image-4.8.0-2-parisc - Linux 4.8 for 32-bit PA-RISC
linux-image-4.8.0-2-parisc-dbgsym - Debug symbols for linux-image-4.8.0-2-parisc
linux-image-4.8.0-2-parisc64-smp - Linux 4.8 for multiprocessor 64-bit PA-RISC
linux-image-4.8.0-2-parisc64-smp-dbgsym - Debug symbols for linux-image-4.8.0-2-parisc64-smp
linux-image-4.8.0-2-powerpc-dbgsym - Debug symbols for linux-image-4.8.0-2-powerpc
linux-image-4.8.0-2-powerpc-smp-dbgsym - Debug symbols for linux-image-4.8.0-2-powerpc-smp
linux-image-4.8.0-2-powerpc-smp-unsigned - Linux 4.8 for multiprocessor 32-bit PowerPC
linux-image-4.8.0-2-powerpc-unsigned - Linux 4.8 for uniprocessor 32-bit PowerPC
linux-image-4.8.0-2-powerpc64 - Linux 4.8 for 64-bit PowerPC
linux-image-4.8.0-2-powerpc64-dbgsym - Debug symbols for linux-image-4.8.0-2-powerpc64
linux-image-4.8.0-2-powerpc64-unsigned - Linux 4.8 for 64-bit PowerPC
linux-image-4.8.0-2-powerpc64le-dbgsym - Debug symbols for linux-image-4.8.0-2-powerpc64le
linux-image-4.8.0-2-powerpc64le-unsigned - Linux 4.8 for Little-endian 64-bit PowerPC
linux-image-4.8.0-2-powerpcspe - Linux 4.8 for 32-bit PowerPC with SPE (instead of AltiVec) with S
linux-image-4.8.0-2-powerpcspe-dbgsym - Debug symbols for linux-image-4.8.0-2-powerpcspe
linux-image-4.8.0-2-rt-686-pae-dbgsym - Debug symbols for linux-image-4.8.0-2-rt-686-pae
linux-image-4.8.0-2-rt-686-pae-unsigned - Linux 4.8 for modern PCs, PREEMPT_RT
linux-image-4.8.0-2-rt-amd64-dbgsym - Debug symbols for linux-image-4.8.0-2-rt-amd64
linux-image-4.8.0-2-rt-amd64-unsigned - Linux 4.8 for 64-bit PCs, PREEMPT_RT
linux-image-4.8.0-2-s390x-dbgsym - Debug symbols for linux-image-4.8.0-2-s390x
linux-image-4.8.0-2-s390x-unsigned - Linux 4.8 for IBM zSeries
linux-image-4.8.0-2-sh7751r - Linux 4.8 for sh7751r
linux-image-4.8.0-2-sh7751r-dbgsym - Debug symbols for linux-image-4.8.0-2-sh7751r
linux-image-4.8.0-2-sh7785lcr - Linux 4.8 for sh7785lcr
linux-image-4.8.0-2-sh7785lcr-dbgsym - Debug symbols for linux-image-4.8.0-2-sh7785lcr
linux-image-4.8.0-2-sparc64 - Linux 4.8 for uniprocessor 64-bit UltraSPARC
linux-image-4.8.0-2-sparc64-dbgsym - Debug symbols for linux-image-4.8.0-2-sparc64
linux-image-4.8.0-2-sparc64-smp - Linux 4.8 for multiprocessor 64-bit UltraSPARC
linux-image-4.8.0-2-sparc64-smp-dbgsym - Debug symbols for linux-image-4.8.0-2-sparc64-smp
linux-image-4.8.0-2-versatile - Linux 4.8 for Versatile
linux-image-4.8.0-2-versatile-dbgsym - Debug symbols for linux-image-4.8.0-2-versatile
linux-kbuild-4.8 - Kbuild infrastructure for Linux 4.8
linux-libc-dev - Linux support headers for userspace development
linux-manual-4.8 - Linux kernel API manual pages for version 4.8
linux-perf-4.8 - Performance analysis tools for Linux 4.8
linux-source-4.8 - Linux kernel source for version 4.8 with Debian patches
linux-support-4.8.0-2 - Support files for Linux 4.8
loop-modules-4.8.0-2-4kc-malta-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-5kc-malta-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-alpha-generic-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-loongson-3-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-marvell-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-octeon-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-parisc-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-parisc64-smp-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-powerpc64-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-sh7751r-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-sh7785lcr-di - Loopback filesystem support (udeb)
loop-modules-4.8.0-2-versatile-di - Loopback filesystem support (udeb)
md-modules-4.8.0-2-4kc-malta-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-5kc-malta-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-alpha-generic-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-loongson-3-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-m68k-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-marvell-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-octeon-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-parisc-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-parisc64-smp-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-powerpc64-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-sh7751r-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-sh7785lcr-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-sparc64-di - RAID and LVM support (udeb)
md-modules-4.8.0-2-versatile-di - RAID and LVM support (udeb)
minix-modules-4.8.0-2-4kc-malta-di - Minix filesystem support (udeb)
minix-modules-4.8.0-2-5kc-malta-di - Minix filesystem support (udeb)
minix-modules-4.8.0-2-loongson-3-di - Minix filesystem support (udeb)
minix-modules-4.8.0-2-marvell-di - Minix filesystem support (udeb)
minix-modules-4.8.0-2-octeon-di - Minix filesystem support (udeb)
minix-modules-4.8.0-2-sh7751r-di - Minix filesystem support (udeb)
minix-modules-4.8.0-2-sh7785lcr-di - Minix filesystem support (udeb)
mmc-core-modules-4.8.0-2-4kc-malta-di - MMC/SD/SDIO core modules (udeb)
mmc-core-modules-4.8.0-2-5kc-malta-di - MMC/SD/SDIO core modules (udeb)
mmc-modules-4.8.0-2-4kc-malta-di - MMC/SD card modules (udeb)
mmc-modules-4.8.0-2-5kc-malta-di - MMC/SD card modules (udeb)
mmc-modules-4.8.0-2-marvell-di - MMC/SD card modules (udeb)
mouse-modules-4.8.0-2-4kc-malta-di - Mouse support (udeb)
mouse-modules-4.8.0-2-5kc-malta-di - Mouse support (udeb)
mouse-modules-4.8.0-2-alpha-generic-di - Mouse support (udeb)
mouse-modules-4.8.0-2-marvell-di - Mouse support (udeb)
mouse-modules-4.8.0-2-parisc-di - Mouse support (udeb)
mouse-modules-4.8.0-2-parisc64-smp-di - Mouse support (udeb)
mouse-modules-4.8.0-2-powerpc64-di - Mouse support (udeb)
mtd-modules-4.8.0-2-marvell-di - MTD modules (udeb)
multipath-modules-4.8.0-2-4kc-malta-di - Multipath support (udeb)
multipath-modules-4.8.0-2-5kc-malta-di - Multipath support (udeb)
multipath-modules-4.8.0-2-alpha-generic-di - Multipath support (udeb)
multipath-modules-4.8.0-2-loongson-3-di - Multipath support (udeb)
multipath-modules-4.8.0-2-marvell-di - Multipath support (udeb)
multipath-modules-4.8.0-2-octeon-di - Multipath support (udeb)
multipath-modules-4.8.0-2-parisc-di - Multipath support (udeb)
multipath-modules-4.8.0-2-parisc64-smp-di - Multipath support (udeb)
multipath-modules-4.8.0-2-powerpc64-di - Multipath support (udeb)
multipath-modules-4.8.0-2-sh7751r-di - Multipath support (udeb)
multipath-modules-4.8.0-2-sh7785lcr-di - Multipath support (udeb)
multipath-modules-4.8.0-2-sparc64-di - Multipath support (udeb)
multipath-modules-4.8.0-2-versatile-di - Multipath support (udeb)
nbd-modules-4.8.0-2-4kc-malta-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-5kc-malta-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-alpha-generic-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-loongson-3-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-m68k-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-marvell-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-octeon-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-parisc-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-parisc64-smp-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-powerpc64-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-sh7751r-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-sh7785lcr-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-sparc64-di - Network Block Device modules (udeb)
nbd-modules-4.8.0-2-versatile-di - Network Block Device modules (udeb)
nfs-modules-4.8.0-2-loongson-3-di - NFS filesystem support (udeb)
nic-modules-4.8.0-2-4kc-malta-di - NIC drivers (udeb)
nic-modules-4.8.0-2-5kc-malta-di - NIC drivers (udeb)
nic-modules-4.8.0-2-alpha-generic-di - NIC drivers (udeb)
nic-modules-4.8.0-2-loongson-3-di - NIC drivers (udeb)
nic-modules-4.8.0-2-marvell-di - NIC drivers (udeb)
nic-modules-4.8.0-2-octeon-di - NIC drivers (udeb)
nic-modules-4.8.0-2-parisc-di - NIC drivers (udeb)
nic-modules-4.8.0-2-parisc64-smp-di - NIC drivers (udeb)
nic-modules-4.8.0-2-powerpc64-di - NIC drivers (udeb)
nic-modules-4.8.0-2-sh7751r-di - NIC drivers (udeb)
nic-modules-4.8.0-2-sh7785lcr-di - NIC drivers (udeb)
nic-modules-4.8.0-2-sparc64-di - Network card modules for Sparc kernels (udeb)
nic-modules-4.8.0-2-versatile-di - NIC drivers (udeb)
nic-pcmcia-modules-4.8.0-2-alpha-generic-di - Common PCMCIA NIC drivers (udeb)
nic-pcmcia-modules-4.8.0-2-powerpc64-di - Common PCMCIA NIC drivers (udeb)
nic-shared-modules-4.8.0-2-4kc-malta-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-5kc-malta-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-alpha-generic-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-loongson-3-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-m68k-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-marvell-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-octeon-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-parisc-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-parisc64-smp-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-powerpc64-di - Shared NIC drivers (udeb)
nic-shared-modules-4.8.0-2-versatile-di - Shared NIC drivers (udeb)
nic-usb-modules-4.8.0-2-4kc-malta-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-5kc-malta-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-alpha-generic-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-loongson-3-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-marvell-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-octeon-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-parisc-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-parisc64-smp-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-sh7751r-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-sh7785lcr-di - USB NIC drivers (udeb)
nic-usb-modules-4.8.0-2-versatile-di - USB NIC drivers (udeb)
nic-wireless-modules-4.8.0-2-4kc-malta-di - Wireless NIC drivers (udeb)
nic-wireless-modules-4.8.0-2-5kc-malta-di - Wireless NIC drivers (udeb)
nic-wireless-modules-4.8.0-2-alpha-generic-di - Wireless NIC drivers (udeb)
nic-wireless-modules-4.8.0-2-loongson-3-di - Wireless NIC drivers (udeb)
nic-wireless-modules-4.8.0-2-octeon-di - Wireless NIC drivers (udeb)
ntfs-modules-4.8.0-2-4kc-malta-di - NTFS filesystem support (udeb)
ntfs-modules-4.8.0-2-5kc-malta-di - NTFS filesystem support (udeb)
ntfs-modules-4.8.0-2-loongson-3-di - NTFS filesystem support (udeb)
ntfs-modules-4.8.0-2-octeon-di - NTFS filesystem support (udeb)
pata-modules-4.8.0-2-4kc-malta-di - PATA drivers (udeb)
pata-modules-4.8.0-2-5kc-malta-di - PATA drivers (udeb)
pata-modules-4.8.0-2-alpha-generic-di - PATA drivers (udeb)
pata-modules-4.8.0-2-loongson-3-di - PATA drivers (udeb)
pata-modules-4.8.0-2-octeon-di - PATA drivers (udeb)
pata-modules-4.8.0-2-parisc-di - PATA drivers (udeb)
pata-modules-4.8.0-2-parisc64-smp-di - PATA drivers (udeb)
pata-modules-4.8.0-2-powerpc64-di - PATA drivers (udeb)
pata-modules-4.8.0-2-sh7751r-di - PATA drivers (udeb)
pata-modules-4.8.0-2-sh7785lcr-di - PATA drivers (udeb)
pata-modules-4.8.0-2-sparc64-di - PATA drivers (udeb)
pcmcia-modules-4.8.0-2-alpha-generic-di - Common PCMCIA drivers (udeb)
pcmcia-modules-4.8.0-2-powerpc64-di - Common PCMCIA drivers (udeb)
pcmcia-storage-modules-4.8.0-2-powerpc64-di - PCMCIA storage drivers (udeb)
ppp-modules-4.8.0-2-4kc-malta-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-5kc-malta-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-alpha-generic-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-loongson-3-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-m68k-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-marvell-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-octeon-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-parisc-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-parisc64-smp-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-powerpc64-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-sh7751r-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-sh7785lcr-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-sparc64-di - PPP drivers (udeb)
ppp-modules-4.8.0-2-versatile-di - PPP drivers (udeb)
rtc-modules-4.8.0-2-octeon-di - RTC modules (udeb)
sata-modules-4.8.0-2-4kc-malta-di - SATA drivers (udeb)
sata-modules-4.8.0-2-5kc-malta-di - SATA drivers (udeb)
sata-modules-4.8.0-2-alpha-generic-di - SATA drivers (udeb)
sata-modules-4.8.0-2-loongson-3-di - SATA drivers (udeb)
sata-modules-4.8.0-2-marvell-di - SATA drivers (udeb)
sata-modules-4.8.0-2-octeon-di - SATA drivers (udeb)
sata-modules-4.8.0-2-parisc-di - SATA drivers (udeb)
sata-modules-4.8.0-2-parisc64-smp-di - SATA drivers (udeb)
sata-modules-4.8.0-2-powerpc64-di - SATA drivers (udeb)
sata-modules-4.8.0-2-sh7751r-di - SATA drivers (udeb)
sata-modules-4.8.0-2-sh7785lcr-di - SATA drivers (udeb)
sata-modules-4.8.0-2-sparc64-di - SATA drivers (udeb)
sata-modules-4.8.0-2-versatile-di - SATA drivers (udeb)
scsi-core-modules-4.8.0-2-4kc-malta-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-5kc-malta-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-alpha-generic-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-loongson-3-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-marvell-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-octeon-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-parisc-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-parisc64-smp-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-powerpc64-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-sparc64-di - Core SCSI subsystem (udeb)
scsi-core-modules-4.8.0-2-versatile-di - Core SCSI subsystem (udeb)
scsi-modules-4.8.0-2-4kc-malta-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-5kc-malta-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-alpha-generic-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-loongson-3-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-m68k-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-octeon-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-parisc-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-parisc64-smp-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-powerpc64-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-sparc64-di - SCSI drivers (udeb)
scsi-modules-4.8.0-2-versatile-di - SCSI drivers (udeb)
serial-modules-4.8.0-2-alpha-generic-di - Serial drivers (udeb)
serial-modules-4.8.0-2-parisc-di - Serial drivers (udeb)
serial-modules-4.8.0-2-parisc64-smp-di - Serial drivers (udeb)
serial-modules-4.8.0-2-powerpc64-di - Serial drivers (udeb)
sound-modules-4.8.0-2-4kc-malta-di - sound support (udeb)
sound-modules-4.8.0-2-5kc-malta-di - sound support (udeb)
sound-modules-4.8.0-2-loongson-3-di - sound support (udeb)
sound-modules-4.8.0-2-octeon-di - sound support (udeb)
sound-modules-4.8.0-2-sh7751r-di - sound support (udeb)
sound-modules-4.8.0-2-sh7785lcr-di - sound support (udeb)
speakup-modules-4.8.0-2-loongson-3-di - speakup modules (udeb)
speakup-modules-4.8.0-2-sh7751r-di - speakup modules (udeb)
speakup-modules-4.8.0-2-sh7785lcr-di - speakup modules (udeb)
squashfs-modules-4.8.0-2-4kc-malta-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-5kc-malta-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-alpha-generic-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-loongson-3-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-m68k-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-marvell-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-octeon-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-parisc-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-parisc64-smp-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-powerpc64-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-sh7751r-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-sh7785lcr-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-sparc64-di - squashfs modules (udeb)
squashfs-modules-4.8.0-2-versatile-di - squashfs modules (udeb)
srm-modules-4.8.0-2-alpha-generic-di - SRM modules (udeb)
udf-modules-4.8.0-2-4kc-malta-di - UDF modules (udeb)
udf-modules-4.8.0-2-5kc-malta-di - UDF modules (udeb)
udf-modules-4.8.0-2-loongson-3-di - UDF modules (udeb)
udf-modules-4.8.0-2-m68k-di - UDF modules (udeb)
udf-modules-4.8.0-2-marvell-di - UDF modules (udeb)
udf-modules-4.8.0-2-octeon-di - UDF modules (udeb)
udf-modules-4.8.0-2-powerpc64-di - UDF modules (udeb)
udf-modules-4.8.0-2-sh7751r-di - UDF modules (udeb)
udf-modules-4.8.0-2-sh7785lcr-di - UDF modules (udeb)
udf-modules-4.8.0-2-sparc64-di - UDF modules (udeb)
udf-modules-4.8.0-2-versatile-di - UDF modules (udeb)
uinput-modules-4.8.0-2-marvell-di - uinput support (udeb)
uinput-modules-4.8.0-2-powerpc64-di - uinput support (udeb)
usb-modules-4.8.0-2-4kc-malta-di - USB support (udeb)
usb-modules-4.8.0-2-5kc-malta-di - USB support (udeb)
usb-modules-4.8.0-2-alpha-generic-di - USB support (udeb)
usb-modules-4.8.0-2-loongson-3-di - USB support (udeb)
usb-modules-4.8.0-2-marvell-di - USB support (udeb)
usb-modules-4.8.0-2-octeon-di - USB support (udeb)
usb-modules-4.8.0-2-parisc-di - USB support (udeb)
usb-modules-4.8.0-2-parisc64-smp-di - USB support (udeb)
usb-modules-4.8.0-2-powerpc64-di - USB support (udeb)
usb-modules-4.8.0-2-sparc64-di - USB support (udeb)
usb-modules-4.8.0-2-versatile-di - USB support (udeb)
usb-serial-modules-4.8.0-2-4kc-malta-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-5kc-malta-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-alpha-generic-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-loongson-3-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-marvell-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-octeon-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-parisc-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-parisc64-smp-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-powerpc64-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-sh7751r-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-sh7785lcr-di - USB serial drivers (udeb)
usb-serial-modules-4.8.0-2-versatile-di - USB serial drivers (udeb)
usb-storage-modules-4.8.0-2-4kc-malta-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-5kc-malta-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-alpha-generic-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-loongson-3-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-marvell-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-octeon-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-parisc-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-parisc64-smp-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-powerpc64-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-sh7751r-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-sparc64-di - USB storage support (udeb)
usb-storage-modules-4.8.0-2-versatile-di - USB storage support (udeb)
usbip - USB device sharing system over IP network
virtio-modules-4.8.0-2-4kc-malta-di - virtio modules (udeb)
virtio-modules-4.8.0-2-5kc-malta-di - virtio modules (udeb)
virtio-modules-4.8.0-2-alpha-generic-di - virtio modules (udeb)
virtio-modules-4.8.0-2-loongson-3-di - virtio modules (udeb)
virtio-modules-4.8.0-2-octeon-di - virtio modules (udeb)
virtio-modules-4.8.0-2-parisc-di - virtio modules (udeb)
virtio-modules-4.8.0-2-parisc64-smp-di - virtio modules (udeb)
virtio-modules-4.8.0-2-powerpc64-di - virtio modules (udeb)
virtio-modules-4.8.0-2-sh7751r-di - virtio modules (udeb)
virtio-modules-4.8.0-2-sparc64-di - virtio modules (udeb)
virtio-modules-4.8.0-2-versatile-di - virtio modules (udeb)
xen-linux-system-4.8.0-2-amd64 - Xen system with Linux 4.8 on 64-bit PCs (meta-package)
xfs-modules-4.8.0-2-4kc-malta-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-5kc-malta-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-alpha-generic-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-loongson-3-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-octeon-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-parisc-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-parisc64-smp-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-powerpc64-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-sh7751r-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-sh7785lcr-di - XFS filesystem support (udeb)
xfs-modules-4.8.0-2-sparc64-di - XFS filesystem support (udeb)
zlib-modules-4.8.0-2-4kc-malta-di - zlib modules (udeb)
zlib-modules-4.8.0-2-5kc-malta-di - zlib modules (udeb)
zlib-modules-4.8.0-2-alpha-generic-di - zlib modules (udeb)
zlib-modules-4.8.0-2-loongson-3-di - zlib modules (udeb)
zlib-modules-4.8.0-2-m68k-di - zlib modules (udeb)
zlib-modules-4.8.0-2-marvell-di - zlib modules (udeb)
zlib-modules-4.8.0-2-octeon-di - zlib modules (udeb)
zlib-modules-4.8.0-2-parisc-di - zlib modules (udeb)
zlib-modules-4.8.0-2-parisc64-smp-di - zlib modules (udeb)
zlib-modules-4.8.0-2-sh7751r-di - zlib modules (udeb)
zlib-modules-4.8.0-2-sh7785lcr-di - zlib modules (udeb)
zlib-modules-4.8.0-2-sparc64-di - zlib modules (udeb)
zlib-modules-4.8.0-2-versatile-di - zlib modules (udeb)
Changes:
linux (4.8.15-1) unstable; urgency=medium
.
* New upstream stable update:
https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.8.12
- [x86] iommu/vt-d: Fix PASID table allocation
- [x86] iommu/vt-d: Fix IOMMU lookup for SR-IOV Virtual Functions
- [x86] KVM: fix out-of-bounds access in lapic
- [x86] KVM: x86: drop error recovery in em_jmp_far and em_ret_far
(CVE-2016-9756)
- [x86] KVM: fix out-of-bounds accesses of rtc_eoi map (CVE-2016-9777)
- [x86] KVM: check for pic and ioapic presence before use
- [arm64, armhf] usb: chipidea: move the lock initialization to core file
- USB: serial: cp210x: add ID for the Zone DPMX
- USB: serial: ftdi_sio: add support for TI CC3200 LaunchPad
- scsi: mpt3sas: Fix secure erase premature termination
- cfg80211: limit scan results cache size
- apparmor: fix change_hat not finding hat after policy replacement
- NFSv4.x: hide array-bounds warning
- [x86] fpu: Fix invalid FPU ptrace state after execve()
- [x86] traps: Ignore high word of regs->cs in early_fixup_exception()
- perf/core: Fix address filter parser
- perf/x86/intel: Cure bogus unwind from PEBS entries
- [x86] thermal/powerclamp: add back module device table
- [hppa/parisc] Fix races in parisc_setup_cache_timing()
- [hppa/parisc] Switch to generic sched_clock implementation
- [hppa/parisc] Fix race in pci-dma.c
- [hppa/parisc] Also flush data TLB in flush_icache_page_asm
- mpi: Fix NULL ptr dereference in mpi_powm()
- X.509: Fix double free in x509_cert_parse()
- xc2028: Fix use-after-free bug properly
- [powerpc] Set missing wakeup bit in LPCR on POWER9
- [powerpc] mm: Fixup kernel read only mapping
- [powerpc] boot: Fix the early OPAL console wrappers
- can: bcm: fix support for CAN FD frames
- mm, oom: stop pre-mature high-order OOM killer invocations
- flow_dissect: call init_default_flow_dissectors() earlier
- scsi: mpt3sas: Unblock device after controller reset
https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.8.13
- libata-scsi: Fixup ata_gen_passthru_sense()
- scsi: hpsa: use bus '3' for legacy HBA devices
- scsi: libfc: fix seconds_since_last_reset miscalculation
- mm, thp: propagation of conditional compilation in khugepaged.c
- thp: fix corner case of munlock() of PTE-mapped THPs
- zram: fix unbalanced idr management at hot removal
- mm: fix false-positive WARN_ON() in truncate/invalidate for hugetlb
- ovl: fix d_real() for stacked fs
- Input: change KEY_DATA from 0x275 to 0x277
- Input: psmouse - disable automatic probing of BYD touchpads
- rcu: Fix soft lockup for rcu_nocb_kthread
- mm: workingset: fix NULL ptr in count_shadow_nodes
- PCI: Export pcie_find_root_port
- PCI: Set Read Completion Boundary to 128 iff Root Port supports it
(_HPX)
- mwifiex: printk() overflow with 32-byte SSIDs
- [arm64] KVM: vgic: Don't notify EOI for non-SPIs
- [x86] drm/i915: Don't touch NULL sg on i915_gem_object_get_pages_gtt()
error
- [x86] drm/i915: drop the struct_mutex when wedged or trying to reset
- [x86] drm/amdgpu: fix power state when port pm is unavailable
- drm/radeon: fix power state when port pm is unavailable
- [x86] drm/amdgpu: fix check for port PM availability
- drm/radeon: fix check for port PM availability
- [arm64] dts: juno: fix cluster sleep state entry latency on all SoC
versions
- KVM: use after free in kvm_ioctl_create_device()
- pwm: Fix device reference leak
- [x86] perf: Restore TASK_SIZE check on frame pointer
- [armhf] clk: sunxi: Fix M factor computation for APB1
- batman-adv: Detect missing primaryif during tp_send as error
- [arm64] cpufeature: Schedule enable() calls instead of calling them via
IPI
- [arm64] mm: Set PSTATE.PAN from the cpu_enable_pan() call
- [arm64] suspend: Reconfigure PSTATE after resume from idle
https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.8.14
- gro_cells: mark napi struct as not busy poll candidates
- virtio-net: add a missing synchronize_net()
- [armhf] net: dsa: b53: Fix VLAN usage and how we treat CPU port
- net: check dead netns for peernet2id_alloc()
- ip6_tunnel: disable caching when the traffic class is inherited
- net: sky2: Fix shutdown crash
- af_unix: conditionally use freezable blocking calls in read
- rtnetlink: fix FDB size computation
- l2tp: fix racy SOCK_ZAPPED flag check in l2tp_ip{,6}_bind()
- rtnl: fix the loop index update error in rtnl_dump_ifinfo()
- ipv6: bump genid when the IFA_F_TENTATIVE flag is clear
- udplite: call proper backlog handlers
- [armhf] net: dsa: bcm_sf2: Ensure we re-negotiate EEE during after link
change
- net, sched: respect rcu grace period on cls destruction
- [armhf] net: dsa: fix unbalanced dsa_switch_tree reference counting
- net/sched: pedit: make sure that offset is valid
- netlink: Call cb->done from a worker thread
- netlink: Do not schedule work from sk_destruct
- net/dccp: fix use-after-free in dccp_invalid_packet
- GSO: Reload iph after pskb_may_pull
- packet: fix race condition in packet_set_ring (CVE-2016-8655)
- ip6_offload: check segs for NULL in ipv6_gso_segment.
- cdc_ether: Fix handling connection notification
- tipc: check minimum bearer MTU (CVE-2016-8632)
- geneve: avoid use-after-free of skb->data
- net: avoid signed overflows for SO_{SND|RCV}BUFFORCE (CVE-2016-9793)
- net: ping: check minimum size on ICMP header length (CVE-2016-8399)
- ipv4: Restore fib_trie_flush_external function and fix call ordering
- ipv4: Fix memory leak in exception case for splitting tries
- ipv4: Drop leaf from suffix pull/push functions
- ipv4: Drop suffix update from resize code
- [sparc64] Fix find_node warning if numa node cannot be found
- [sparc64] fix compile warning section mismatch in find_node()
- [sparc] Fix inverted invalid_frame_pointer checks on sigreturns
- constify iov_iter_count() and iter_is_iovec()
- Don't feed anything but regular iovec's to blk_rq_map_user_iov
(CVE-2016-9576)
- ipv6: Set skb->protocol properly for local output
- ipv4: Set skb->protocol properly for local output
- Revert: "ip6_tunnel: Update skb->protocol to ETH_P_IPV6 in
ip6_tnl_xmit()"
- flowcache: Increase threshold for refusing new allocations
- esp4: Fix integrity verification when ESN are used
- esp6: Fix integrity verification when ESN are used
https://www.kernel.org/pub/linux/kernel/v4.x/ChangeLog-4.8.15
- [powerpc] eeh: Fix deadlock when PE frozen state can't be cleared
- [powerpc] mm: Fix lazy icache flush on pre-POWER5
- [powerpc] boot: Fix build failure in 32-bit boot wrapper
- fuse: fix clearing suid, sgid for chown()
- [hppa/parisc] Purge TLB before setting PTE
- [hppa/parisc] Remove unnecessary TLB purges from flush_dcache_page_asm
and flush_icache_page_asm
- [hppa/parisc] Fix TLB related boot crash on SMP machines
- zram: restrict add/remove attributes to root only
- locking/rtmutex: Prevent dequeue vs. unlock race
- locking/rtmutex: Use READ_ONCE() in rt_mutex_owner()
- device-dax: fix private mapping restriction, permit read-only
- scsi: lpfc: fix oops/BUG in lpfc_sli_ringtxcmpl_put()
- sched/autogroup: Fix 64-bit kernel nice level adjustment
- [x86] perf: Fix full width counter, counter overflow
- acpi, nfit: fix extended status translations for ACPI DSMs
- acpi, nfit, libnvdimm: fix / harden ars_status output length handling
- acpi, nfit: validate ars_status output buffer size
- acpi, nfit: fix bus vs dimm confusion in xlat_status
- [armel, armhf] crypto: marvell - Don't copy hash operation twice into
the SRAM
- crypto: caam - fix pointer size for AArch64 boot loader, AArch32 kernel
- [armel, armhf] crypto: marvell - Don't corrupt state of an STD req for
re-stepped ahash
- can: raw: raw_setsockopt: limit number of can_filter that can be set
- can: peak: fix bad memory access and free sequence
- [armel] dts: orion5x: fix number of sata port for linkstation ls-gl
(Closes: #845611)
- ceph: don't set req->r_locked_dir in ceph_d_revalidate
- [m68k] Fix ndelay() macro
- batman-adv: Check for alloc errors when preparing TT local data
- hotplug: Make register and unregister notifier API symmetric
.
[ Uwe Kleine-König ]
* [armhf] dts: armada-385: add support for Turris Omnia
.
[ Salvatore Bonaccorso ]
* Add ABI reference for 4.8.0-2
* Ignore ABI changes in KVM
* net: handle no dst on skb in icmp6_send (CVE-2016-9919)
* [rt] Update to 4.8.11-rt7
* [rt] Update to 4.8.14-rt9
* netfilter: ipv6: nf_defrag: drop mangled skb on ream error (CVE-2016-9755)
* Ignore ABI changes in libnvdimm
* docs: sphinx-extensions: make rstFlatTable work with docutils 0.13.
Thanks to Dmitry Shachnev <mitya57@debian.org> (Closes: #848349)
.
[ Ben Hutchings ]
* [amd64] Re-enable LEGACY_VSYSCALL_EMULATE instead of LEGACY_VSYSCALL_NONE.
There are still binaries in stable that use vsyscall (via dietlibc).
(Closes: #847154)
* debian/rules.real: Exclude *.pyc from featureset diffs
* debian/control: Fix build-dependency on flex to work with new versions that
have M-A: foreign
* debian/rules: Use dpkg-parsechangelog -S option to select fields
* debian/rules: Tighten binNMU version matching, consistent with linux-latest
Checksums-Sha1:
10347b98a0a9840a96b14313fbbb576efc42ba01 86331 linux_4.8.15-1.dsc
734669c0e2ea9d9f5ef54e54f48fb8d50266db43 93288968 linux_4.8.15.orig.tar.xz
1c7bc670ea77da36f3123fd538e9673658eb005a 2847036 linux_4.8.15-1.debian.tar.xz
e4b74fa4638b2c9fd37fad1126f22360bac6055d 12198310 linux-doc-4.8_4.8.15-1_all.deb
f018240ba630024ed32200dabef587af90f58638 3853232 linux-manual-4.8_4.8.15-1_all.deb
ea84deaa44db81a0d812c1fa6412b4d70513a6c0 95107340 linux-source-4.8_4.8.15-1_all.deb
89e90025be3b7da920ac86783393d9e8ab8d506b 462494 linux-support-4.8.0-2_4.8.15-1_all.deb
Checksums-Sha256:
d419bb47d00a2009bd815370172c76a8882e21fbc91819492050a68f1c84665c 86331 linux_4.8.15-1.dsc
59589f55a4f06f53de998eefa0e62df984db517b0e695d864b2bbb3fd5355a92 93288968 linux_4.8.15.orig.tar.xz
4bf152429c854126e30e759ae6bab68bb113e2f043c0d731ec9ca2f5661cd48c 2847036 linux_4.8.15-1.debian.tar.xz
998dc0427a70ec2297077d83e803d706175627b7b576c749a139765bd885b68a 12198310 linux-doc-4.8_4.8.15-1_all.deb
21b0712eef4cd38042068602b7a29ef41fab084ac6c81336e8f7991fa01e7095 3853232 linux-manual-4.8_4.8.15-1_all.deb
f37e2494557718b220c7b4433af987b9eac7c20adb5757610f56d88f8c621d4b 95107340 linux-source-4.8_4.8.15-1_all.deb
d01a87242cc5649441cef20da9dec1d20351dfa995fb97bd01e0f62d270f6a74 462494 linux-support-4.8.0-2_4.8.15-1_all.deb
Files:
0b1b4e2ac9059c5a538f070fe8a17f30 86331 kernel optional linux_4.8.15-1.dsc
d00c2115289d0921cd5d1d4718641db2 93288968 kernel optional linux_4.8.15.orig.tar.xz
1b9e436a08d802273e49771f77348ee1 2847036 kernel optional linux_4.8.15-1.debian.tar.xz
6a72af755dc5bb13dd0d78fb1034c812 12198310 doc optional linux-doc-4.8_4.8.15-1_all.deb
7d208db0c91661ad993d45e2558b88bc 3853232 doc optional linux-manual-4.8_4.8.15-1_all.deb
da2252765dbe01523813e2ceff9d451a 95107340 kernel optional linux-source-4.8_4.8.15-1_all.deb
fb8180015b51a320520048bd80fb8260 462494 devel optional linux-support-4.8.0-2_4.8.15-1_all.deb
-----BEGIN PGP SIGNATURE-----
iQKmBAEBCgCQFiEERkRAmAjBceBVMd3uBUy48xNDz0QFAlhX1dtfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDQ2
NDQ0MDk4MDhDMTcxRTA1NTMxRERFRTA1NENCOEYzMTM0M0NGNDQSHGNhcm5pbEBk
ZWJpYW4ub3JnAAoJEAVMuPMTQ89EOQAP/15tAh70945aIoDgEdHnSfcACUTIUGur
dLaA/Ojvuu+bz3rApplmAjkNJd0+cRlN2zj3pdjLB8PLLU0u8qms9UU2iZCmgK5k
+pYdW53foniabf0flrYu85T292ogXuicnmP/7zglJ8OjcwiBnoE3MhjbJVCT8RlS
N2JmPgPvYtU9Kn5AwDec729RZxK8UiOe0gVbDI4HlYGN5Y7AIb1AIwrM5fwHGPHw
WmvQck2xQIYSFtQcFIgUPvkDQkOen13LOsTSb2NZ7Gb+HjAAPNBGMjJdrROif1lb
naaWTysbzugixt52LZFemmwSEf0A30r/slZUWfs0/yM0oKr8VzUIQlggKekUCkhT
wjDevwx1BczHzZshdttsXxQ/mM+dtmauxvbyNfIR48NXQilLUfb3dtg5/LCWBW7e
5Fmo4lzwjRvTI6WCKwI+HthmCItTrf7+KZbOwucvbnenW8fSUXiXrD8q+p72kscn
Wkqz90tF8OUJ57S0bN1U9V6WLbczLOShgpr6mBaniuUTGcrL0tu3ZOEn2bUJuA4B
vP/Ogn3voz8Scr6IbQxWKwuNOQYRYoQHdHvXJVRUCMCo43pIe7CmqErbZAGsA+j1
XQazqKvrtkZQ2X9VsovJc6uQucccTV8udEpwOCmMMr1asva3D0ThaVW21st6mpv7
2GzWXCkG8NK3
=tv11
-----END PGP SIGNATURE-----
Bug reassigned from package 'linux-image-4.8.0-1-marvell' to 'src:linux'.
Request was from Andreas Beckmann <anbe@debian.org>
to control@bugs.debian.org.
(Mon, 16 Jan 2017 14:36:03 GMT) (full text, mbox, link).
No longer marked as found in versions 4.6.2-2 and linux/4.8.7-1.
Request was from Andreas Beckmann <anbe@debian.org>
to control@bugs.debian.org.
(Mon, 16 Jan 2017 14:36:03 GMT) (full text, mbox, link).
No longer marked as fixed in versions linux/4.8.15-1.
Request was from Andreas Beckmann <anbe@debian.org>
to control@bugs.debian.org.
(Mon, 16 Jan 2017 14:36:04 GMT) (full text, mbox, link).
Marked as fixed in versions linux/4.8.15-1.
Request was from Andreas Beckmann <anbe@debian.org>
to control@bugs.debian.org.
(Mon, 16 Jan 2017 14:36:05 GMT) (full text, mbox, link).
Marked as found in versions linux/4.8.7-1.
Request was from Andreas Beckmann <anbe@debian.org>
to control@bugs.debian.org.
(Mon, 16 Jan 2017 14:36:06 GMT) (full text, mbox, link).
Marked as found in versions linux/4.6.2-2.
Request was from Andreas Beckmann <anbe@debian.org>
to control@bugs.debian.org.
(Mon, 16 Jan 2017 14:36:06 GMT) (full text, mbox, link).
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Fri, 24 Mar 2017 07:25:53 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.