Your message dated Thu, 08 Aug 2013 09:18:57 +0000
with message-id <[email protected]>
and subject line Bug#685617: fixed in nvidia-graphics-drivers 325.15-1
has caused the Debian Bug report #685617,
regarding Allow co-installation of nvidia-kernel-dkms and 
nvidia-kernel-legacy-173xx-dkms
to be marked as done.

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

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


-- 
685617: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=685617
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: nvidia-graphics-drivers
Severity: wishlist
Tags: patch

If you want to use the full range of nvidia proprietry drivers on live
systems the kernel dkms packages must both be installed at the same time
and the correct module to use selected at runtime. While co-installation
is possible for the GLX and xorg parts, this is currently not possible
for the dkms packages.

The attached patches modify the dkms packages to allow coinstallation.
The legacy packages dkms config is modified to name the module
nvidia-legacy-173xx instead of just nvidia.

Unfortunately both modules claim to support most PCI IDs. To load the
most recent module in case both variants are installed. The patch for
nvidia-support adds a script to nvidia-kernel-common to select the right
module when modprobing either nvidia or nvidia-legacy-173xx. The correct
module is selected based on the existing nvidia.ids lists of PCI IDs.

The patches to nvidia-graphics-drivers and
nvidia-graphics-drivers-legacy-173xx also move the nvidia.ids file from
the xserver-xorg-video-nvidia-xxx package to the dkms and kernel-source
package to support the above script.

While I agree that all of this is a bit hacky. I can't see any better
way to support live systems and in my tests the whole thing works quite
well. I'm open for suggestions if you see better ways to make the dkms
packages co-installable.

I'm currently also writing a boot script for live systems to select the
correct glx and nvidia alternatives on boot based on the hardware present
in the system.

Gaudenz

P.S.: I'll clone this report to the other affected packages as soon as I
get the bug number.

-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (800, 'testing'), (700, 'unstable'), (50, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_CH.UTF-8, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Index: debian/control
===================================================================
--- debian/control	(Revision 3309)
+++ debian/control	(Arbeitskopie)
@@ -231,7 +231,7 @@
  nvidia-installer-cleanup,
 Depends:
  dkms (>= 2.1),
- nvidia-kernel-common (>= 20110213),
+ nvidia-kernel-common (>= 20120630+4),
  ${misc:Depends}
 Recommends:
  nvidia-glx${nvidia:Legacy} (>= ${nvidia:Version}),
@@ -239,9 +239,12 @@
  nvidia-kernel-dkms,
  nvidia-kernel-${nvidia:Version}${nvidia:Perfkit},
 Conflicts:
- nvidia-kernel-dkms,
+ nvidia-kernel-source (>= 304.37-2),
 Breaks:
  make (= 3.82-1),
+ xserver-xorg-video-nvidia (<< 304.37-2),
+Replaces:
+ xserver-xorg-video-nvidia (<< 304.37-2),
 Description: NVIDIA binary kernel module DKMS source${nvidia:LegacyDesc}
  .
  This package builds the NVIDIA Xorg binary kernel module needed by
@@ -273,8 +276,13 @@
  nvidia-kernel-common,
 Suggests:
  nvidia-glx${nvidia:Legacy} (>= ${nvidia:Version}),
+Conflicts:
+ nvidia-kernel-dkms (>= 304.37-2)
 Breaks:
  make (= 3.82-1),
+ xserver-xorg-video-nvidia (<< 304.37-2),
+Replaces:
+ xserver-xorg-video-nvidia (<< 304.37-2),
 Description: NVIDIA binary kernel module source${nvidia:LegacyDesc}
  .
  This package provides the source for the NVIDIA Xorg binary kernel module
Index: debian/changelog
===================================================================
--- debian/changelog	(Revision 3309)
+++ debian/changelog	(Arbeitskopie)
@@ -8,6 +8,7 @@
   * {libgl1-nvidia-glx,libcuda1,nvidia-vdpau-driver,nvidia-opencl-icd}-ia32:
     Add NEWS file describing the steps needed to install the multiarch :i386
     nvidia packages on amd64.
+  * Make current and legacy dkms packages co-installable
 
  -- Andreas Beckmann <[email protected]>  Thu, 16 Aug 2012 09:45:17 +0200
 
Index: debian/nvidia-kernel-dkms.install.in
===================================================================
--- debian/nvidia-kernel-dkms.install.in	(Revision 0)
+++ debian/nvidia-kernel-dkms.install.in	(Revision 0)
@@ -0,0 +1 @@
+nvidia.ids		usr/lib/#PRIVATE#/
Index: debian/xserver-xorg-video-nvidia.install.in
===================================================================
--- debian/xserver-xorg-video-nvidia.install.in	(Revision 3309)
+++ debian/xserver-xorg-video-nvidia.install.in	(Arbeitskopie)
@@ -1,3 +1,2 @@
 nvidia_drv.so		usr/lib/#PRIVATE#/
 libglx.so.#VERSION#	usr/lib/#PRIVATE#/
-nvidia.ids		usr/lib/#PRIVATE#/
Index: debian/nvidia-kernel-source.install.in
===================================================================
--- debian/nvidia-kernel-source.install.in	(Revision 0)
+++ debian/nvidia-kernel-source.install.in	(Revision 0)
@@ -0,0 +1 @@
+nvidia.ids		usr/lib/#PRIVATE#/
Index: debian/changelog
===================================================================
--- debian/changelog	(Revision 3309)
+++ debian/changelog	(Arbeitskopie)
@@ -4,6 +4,7 @@
     Add upstream patch nvidia-blacklist-vga-pmu-registers-195.diff:
     Fix exploitable local privilege escalation through VGA window manipulation
     via the device nodes that allows access to arbitrary physical memory.
+  * Make current and legacy dkms packagess co-installable 
 
  -- Andreas Beckmann <[email protected]>  Fri, 17 Aug 2012 01:42:27 +0200
 
Index: debian/nvidia-kernel-dkms.install.in
===================================================================
--- debian/nvidia-kernel-dkms.install.in	(Revision 0)
+++ debian/nvidia-kernel-dkms.install.in	(Revision 0)
@@ -0,0 +1 @@
+nvidia.ids						usr/lib/#PRIVATE#/
Index: debian/control
===================================================================
--- debian/control	(Revision 3309)
+++ debian/control	(Arbeitskopie)
@@ -223,7 +223,7 @@
  nvidia-installer-cleanup,
 Depends:
  dkms (>= 2.1),
- nvidia-kernel-common (>= 20110213),
+ nvidia-kernel-common (>= 20120630+4),
  ${misc:Depends}
 Recommends:
  nvidia-glx${nvidia:Legacy} (>= ${nvidia:Version}),
@@ -231,9 +231,12 @@
  nvidia-kernel-dkms,
  nvidia-kernel-${nvidia:Version}${nvidia:Perfkit},
 Conflicts:
- nvidia-kernel-dkms,
+ nvidia-kernel-legacy-173xx-source (>= 173.14.35-3)
 Breaks:
  make (= 3.82-1),
+ xserver-xorg-video-nvidia (<< 173.14.35-3),
+Replaces:
+ xserver-xorg-video-nvidia (<< 173.14.35-3),
 Description: NVIDIA binary kernel module DKMS source${nvidia:LegacyDesc}
  This package builds the NVIDIA Xorg binary kernel module needed by
  nvidia-glx${nvidia:Legacy}, using DKMS.
@@ -264,8 +267,13 @@
  nvidia-kernel-common,
 Suggests:
  nvidia-glx${nvidia:Legacy} (>= ${nvidia:Version}),
+Conflicts:
+ nvidia-kernel-legacy-173xx-dkms (>= 173.14.35-3)
 Breaks:
  make (= 3.82-1),
+ xserver-xorg-video-nvidia (<< 173.14.35-3),
+Replaces:
+ xserver-xorg-video-nvidia (<< 173.14.35-3),
 Description: NVIDIA binary kernel module source${nvidia:LegacyDesc}
  This package provides the source for the NVIDIA Xorg binary kernel module
  needed by nvidia-glx${nvidia:Legacy} in a form suitable
Index: debian/xserver-xorg-video-nvidia.install.in
===================================================================
--- debian/xserver-xorg-video-nvidia.install.in	(Revision 3309)
+++ debian/xserver-xorg-video-nvidia.install.in	(Arbeitskopie)
@@ -1,3 +1,2 @@
 usr/X11R6/lib/modules/drivers/nvidia_drv.so		usr/lib/#PRIVATE#/
 usr/X11R6/lib/modules/extensions/libglx.so.#VERSION#	usr/lib/#PRIVATE#/
-nvidia.ids						usr/lib/#PRIVATE#/
Index: debian/rules
===================================================================
--- debian/rules	(Revision 3309)
+++ debian/rules	(Arbeitskopie)
@@ -52,7 +52,7 @@
 
 module_source	 = debian/nvidia-kernel$(legacy)-source/usr/src/modules/nvidia-kernel$(legacy)
 module_tbz	 = $(subst /modules/,/,$(module_source)).tar.bz2
-dkms_source	 = debian/nvidia-kernel$(legacy)-dkms/usr/src/nvidia-$(version)
+dkms_source	 = debian/nvidia-kernel$(legacy)-dkms/usr/src/nvidia$(legacy)-$(version)
 
 comma		 = ,
 xorg_depends	 = $(foreach abi, $(XORG_ABI_LIST), xorg-video-abi-$(abi) |)
Index: debian/nvidia-kernel-dkms.dkms
===================================================================
--- debian/nvidia-kernel-dkms.dkms	(Revision 3309)
+++ debian/nvidia-kernel-dkms.dkms	(Arbeitskopie)
@@ -1,10 +1,11 @@
 # DKMS configuration for the NVIDIA kernel module.  -*- sh -*-
 
 # The version is replaced at build time by dh_dkms invoked in debian/rules.
-PACKAGE_NAME="nvidia"
+PACKAGE_NAME="nvidia-legacy-173xx"
 PACKAGE_VERSION="#MODULE_VERSION#"
 
-BUILT_MODULE_NAME[0]="$PACKAGE_NAME"
+BUILT_MODULE_NAME[0]="nvidia"
+DEST_MODULE_NAME[0]="$PACKAGE_NAME"
 DEST_MODULE_LOCATION[0]="/updates/dkms"
 AUTOINSTALL=yes
 
Index: debian/nvidia-kernel-source.install.in
===================================================================
--- debian/nvidia-kernel-source.install.in	(Revision 0)
+++ debian/nvidia-kernel-source.install.in	(Revision 0)
@@ -0,0 +1 @@
+nvidia.ids						usr/lib/#PRIVATE#/
Index: load-nvidia-kmod
===================================================================
--- load-nvidia-kmod	(Revision 0)
+++ load-nvidia-kmod	(Revision 0)
@@ -0,0 +1,40 @@
+#!/bin/sh
+
+# supported driver generations ordered by preference
+VERSIONS="current legacy-173xx"
+
+ID_BASEDIR="/usr/lib/nvidia/"
+ID_FILENAME="nvidia.ids"
+MODULE_BASE="nvidia"
+
+# get PCI ID of the first NVIDIA graphics card. Kernel module selection is done based on the first card.
+NV_DEVICES=$(lspci -mn | awk '{ gsub("\"",""); if ($2 == "0300" && ($3 == "10de" || $3 == "12d2")) { print $3$4 } }' | tr a-z A-Z | head -1)
+
+if [ -z "$NV_DEVICES" ]; then
+	echo "No NVIDIA GPU detected."
+	exit 1
+fi
+
+
+for v in $VERSIONS ; do
+    ID_FILE="$ID_BASEDIR/$v/$ID_FILENAME"
+
+    if [ ! -r $ID_FILE ] ; then
+        continue
+    fi
+
+    if grep -q $NV_DEVICES $ID_FILE ; then
+        if [ $v = "current" ] ; then
+            MODULE="$MODULE_BASE"
+        else
+            MODULE="$MODULE_BASE-$v"
+        fi
+        # load the module, ignore install scripts (to avoid recursion)
+        modprobe --ignore-install $MODULE $*
+        exit 0
+    fi
+done
+
+# No appropriate module found, try to load the nouveau driver as a last resort
+# don't pass module parameters as they won't be understood
+modprobe nouveau 

Eigenschaftsänderungen: load-nvidia-kmod
___________________________________________________________________
HinzugefĂĽgt: svn:executable
   + *

Index: debian/nvidia-kernel-common.install
===================================================================
--- debian/nvidia-kernel-common.install	(Revision 3309)
+++ debian/nvidia-kernel-common.install	(Arbeitskopie)
@@ -1,2 +1,3 @@
 nvidia_helper.ck /usr/lib/ConsoleKit/run-seat.d/
 nvidia_helper /lib/udev/
+load-nvidia-kmod /lib/modprobe.d/
\ No newline at end of file
Index: debian/nvidia-kernel-common.modprobe
===================================================================
--- debian/nvidia-kernel-common.modprobe	(Revision 3309)
+++ debian/nvidia-kernel-common.modprobe	(Arbeitskopie)
@@ -6,3 +6,7 @@
 
 # see #580894
 blacklist nouveau
+
+# Select correct kernel module if several are installed
+install nvidia /lib/modprobe.d/load-nvidia-kmod $CMDLINE_OPTS
+install nvidia-legacy-173xx /lib/modprobe.d/load-nvidia-kmod $CMDLINE_OPTS
Index: debian/changelog
===================================================================
--- debian/changelog	(Revision 3309)
+++ debian/changelog	(Arbeitskopie)
@@ -1,3 +1,11 @@
+nvidia-support (20120630+4) UNRELEASED; urgency=low
+
+  [ Gaudenz Steinlin ]
+  * Add script to nvidia-kernel-common to load correct
+    kernel module.
+
+ -- Gaudenz Steinlin <[email protected]>  Wed, 22 Aug 2012 09:26:09 +0200
+
 nvidia-support (20120630+3) unstable; urgency=low
 
   [ Debconf translations ]

--- End Message ---
--- Begin Message ---
Source: nvidia-graphics-drivers
Source-Version: 325.15-1

We believe that the bug you reported is fixed in the latest version of
nvidia-graphics-drivers, 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 [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Andreas Beckmann <[email protected]> (supplier of updated nvidia-graphics-drivers 
package)

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


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Thu, 08 Aug 2013 10:50:53 +0200
Source: nvidia-graphics-drivers
Binary: nvidia-driver nvidia-glx xserver-xorg-video-nvidia libgl1-nvidia-glx 
nvidia-alternative nvidia-kernel-dkms nvidia-kernel-source nvidia-vdpau-driver 
nvidia-smi nvidia-cuda-mps libcuda1 libnvidia-compiler libnvcuvid1 
libnvidia-encode1 libnvidia-ml1 nvidia-opencl-common nvidia-opencl-icd 
nvidia-libopencl1 nvidia-detect
Architecture: source amd64
Version: 325.15-1
Distribution: experimental
Urgency: low
Maintainer: Debian NVIDIA Maintainers <[email protected]>
Changed-By: Andreas Beckmann <[email protected]>
Description: 
 libcuda1   - NVIDIA CUDA runtime library
 libgl1-nvidia-glx - NVIDIA binary OpenGL libraries${nvidia:LegacyDesc}
 libnvcuvid1 - NVIDIA CUDA nvcuvid runtime library
 libnvidia-compiler - NVIDIA runtime compiler library
 libnvidia-encode1 - NVIDIA nvidia-encode runtime library
 libnvidia-ml1 - NVIDIA management library (NVML) runtime library
 nvidia-alternative - allows the selection of NVIDIA as GLX provider
 nvidia-cuda-mps - NVIDIA CUDA Multi Process Service (MPS)
 nvidia-detect - NVIDIA GPU detection utility
 nvidia-driver - NVIDIA metapackage${nvidia:LegacyDesc}
 nvidia-glx - transition to ${nvidia}-driver
 nvidia-kernel-dkms - NVIDIA binary kernel module DKMS 
source${nvidia:LegacyDesc}
 nvidia-kernel-source - NVIDIA binary kernel module source${nvidia:LegacyDesc}
 nvidia-libopencl1 - NVIDIA OpenCL ICD Loader library
 nvidia-opencl-common - NVIDIA OpenCL driver
 nvidia-opencl-icd - NVIDIA OpenCL ICD
 nvidia-smi - NVIDIA System Management Interface
 nvidia-vdpau-driver - NVIDIA vdpau driver
 xserver-xorg-video-nvidia - NVIDIA binary Xorg driver${nvidia:LegacyDesc}
Closes: 685617 718774
Changes: 
 nvidia-graphics-drivers (325.15-1) experimental; urgency=low
 .
   * New upstream short lived branch release 325.15 (2013-08-05).
   * New upstream release 319 series.
     - Fixed a bug that caused applications using CUDA-GL interop to crash
       when run on X servers with Xinerama enabled.
     - Fixed a bug that could prevent some double-bit ECC errors from being
       properly reported.
     - Fixed a bug which could cause a blank screen when changing house sync
       settings on Quadro Kepler GPUs with Quadro Sync boards.
     - Fixed a bug that prevented nested loops with identical loop conditions
       in GLSL shaders from terminating correctly. This could cause hangs in
       applications such as Exa PowerVIZ.
     - Added support for the following GPUs: GeForce GT 625, GRID K340,
       GRID K350, NVS 315, Quadro K500M.
     - Fixed a bug that resulted in corrupt texels when a previously empty
       texture image was specified with glXBindTexImageEXT. In GNOME 3, this
       caused gnome-screenshot to produce garbled window screenshots.
   * Update nv-readme.ids.
   * conftest.h: Implement new conftest.sh functions proc_create_data (325.15),
       pde_data (325.15), proc_remove (325.15), dom0_kernel_present (325.08),
       nvidiafb_sanity_check (1.0-8174), xen_sanity_check (1.0-9746, 177.76),
       preempt_rt_sanity_check (325.08).
   * kernel-3.10-{i2c,procfs}.patch: Remove. Fixed upstream.
   * Use a different approach to rename the kernel module that preserves its
     internal name as "nvidia".  (Closes: #718774)
   * nvidia{,-legacy-*}-kernel-dkms are now co-installable.  (Closes: #685617)
Checksums-Sha1: 
 dfdb25ed8001596f4b9781931e8a0f8bb7e227ba 3318 
nvidia-graphics-drivers_325.15-1.dsc
 ae9c4d77f935cde2c3c22eaba0dba37a4294efda 92207009 
nvidia-graphics-drivers_325.15.orig.tar.gz
 aa5b848c625e52b2b5b6326d4107bc2719d440cb 117080 
nvidia-graphics-drivers_325.15-1.debian.tar.gz
 bd834ca97bd8eaa2ca3054713af635a0993a35cd 391146 
nvidia-driver_325.15-1_amd64.deb
 10fbf6402e4e6a3b919aa32f7cce034c88286003 109210 nvidia-glx_325.15-1_amd64.deb
 7fcc2413328240cc19a409a81e54a453ebcaef46 2243874 
xserver-xorg-video-nvidia_325.15-1_amd64.deb
 351b43e78a2bd2abfe97eb19e37be413350d6857 6783946 
libgl1-nvidia-glx_325.15-1_amd64.deb
 970115451fa1cb1ae82faa137480941d36648a6a 109876 
nvidia-alternative_325.15-1_amd64.deb
 218d24b44bcf5e9b835a413ee8e0d51dc7ab6951 3260330 
nvidia-kernel-dkms_325.15-1_amd64.deb
 ab15b581733a80db37f17b82acaf368353e5ecba 3314044 
nvidia-kernel-source_325.15-1_amd64.deb
 0befa6ad99de57d44fd5479ab8763fdc096db56c 854802 
nvidia-vdpau-driver_325.15-1_amd64.deb
 e36ed17941ba9a059286fccc02bc3e7fb32929ad 180166 nvidia-smi_325.15-1_amd64.deb
 f6758c6423390483d5d2c3d30f50bbf18aa28935 131016 
nvidia-cuda-mps_325.15-1_amd64.deb
 b19fe1835576e1848cdecdfbef4ae664b2fc5265 3441646 libcuda1_325.15-1_amd64.deb
 7a412998e37396c4af4ec3bcdaddc52700b34224 6403546 
libnvidia-compiler_325.15-1_amd64.deb
 1b8c6ec0bc014b98ca80b401f750091e7fce32c9 711544 libnvcuvid1_325.15-1_amd64.deb
 17df1b7df682eeaba98ef83f5b00018e3af4487b 148748 
libnvidia-encode1_325.15-1_amd64.deb
 0bfb210859afd09ef52718ce134534f0606b41ae 273822 
libnvidia-ml1_325.15-1_amd64.deb
 46055e6a548aa6627cf213a5cbc677e08ffb9b7a 108548 
nvidia-opencl-common_325.15-1_amd64.deb
 b3fc9894b519f9842e5202fa5745b3e4dc226000 2923246 
nvidia-opencl-icd_325.15-1_amd64.deb
 d470143fe0780035b7a70a0deb36d7c0c74e81b3 115278 
nvidia-libopencl1_325.15-1_amd64.deb
 7f9572d2f237e3646833b663e57f377887b5bf47 111282 
nvidia-detect_325.15-1_amd64.deb
Checksums-Sha256: 
 b8224b333b8bfbda148584e6852be1a80532e8f4c6f9279100482b289e6837fc 3318 
nvidia-graphics-drivers_325.15-1.dsc
 b48570781c1e05a23563a6f1e59dedc241524a5820493c2795a43cd0812b7910 92207009 
nvidia-graphics-drivers_325.15.orig.tar.gz
 cfcc68e27dceefca16fdd6df970703d8d4f72c678e4fee28501dd1461e0a86c7 117080 
nvidia-graphics-drivers_325.15-1.debian.tar.gz
 c4af783fcb3fec8ef2da2144f0aec40af4b24571490d5ba1041a83edf5d7b1eb 391146 
nvidia-driver_325.15-1_amd64.deb
 11ad6341d991ec66186fc7513f431343454a7efc37f16d3f6db40671e2b15133 109210 
nvidia-glx_325.15-1_amd64.deb
 6d69a92ea1d9a3a54767b10246d3220de2f761d95c3ef988d3595b64ff089526 2243874 
xserver-xorg-video-nvidia_325.15-1_amd64.deb
 60a0dc8d755feb15e63a2ae5874c5e8313ee4504d522e3b8ec149b915fc8a16e 6783946 
libgl1-nvidia-glx_325.15-1_amd64.deb
 8aa8e3516ed778ef2a353feb36edc08e9bf3a1fbbd2d26817fc31cc3e5fa8f08 109876 
nvidia-alternative_325.15-1_amd64.deb
 3907d2ac9734c836d8289e785c0e65035cbd3176ca43a70ea48e5a037719d0b9 3260330 
nvidia-kernel-dkms_325.15-1_amd64.deb
 9f0d7979a8c23bf552e9f370eac33fa01233b47063120942d4747241f9d6ea55 3314044 
nvidia-kernel-source_325.15-1_amd64.deb
 d44093f0233fc1000a96c1bed79bf82436cea70603c45497c16d960e9508944e 854802 
nvidia-vdpau-driver_325.15-1_amd64.deb
 6d446cd77605fa2c16f801e392c1ce95de9d9872e2b580409ee0089965aae8cc 180166 
nvidia-smi_325.15-1_amd64.deb
 a276fd5dcc68359cb3bac3efebd612fd902ef8e1ca7ebe3e46ecb5929324ef3c 131016 
nvidia-cuda-mps_325.15-1_amd64.deb
 8920ffa3f4b2e98c9e347bd238f80e8912b10536a0085a2b8cf2ae4c1c6f2071 3441646 
libcuda1_325.15-1_amd64.deb
 7dc036e78b0c3274699e9dafb0e2e36d6fce8e585cae86ab38744c7abf294910 6403546 
libnvidia-compiler_325.15-1_amd64.deb
 f0f423141a985ee66fba0e312829e234c448f8266c838610ce19097ac6adc960 711544 
libnvcuvid1_325.15-1_amd64.deb
 0c18a2f78f6713c4f71c0a5bc6edbad82239826b2d55f59b0ee29a0bd374dd35 148748 
libnvidia-encode1_325.15-1_amd64.deb
 f10fa172011c0ea4ee34857a795518addea006e1dbedb172480806cec10ba21d 273822 
libnvidia-ml1_325.15-1_amd64.deb
 4c764fabff46b92c0b26e4810930773f2a1c89107a75209a70c79598d5358e87 108548 
nvidia-opencl-common_325.15-1_amd64.deb
 26e1de3d6a7efe45d8c807ec17f6ef7edeac930e0963634a1ed180508b6e488b 2923246 
nvidia-opencl-icd_325.15-1_amd64.deb
 064c0969a39b6c4cfea41034c9bd103ca2435e50e24880538b3a8cd3d34b3855 115278 
nvidia-libopencl1_325.15-1_amd64.deb
 711e3c6b6dca617e25dfe107004aca7d399854cec3573e943980b8f9b76b94e3 111282 
nvidia-detect_325.15-1_amd64.deb
Files: 
 ad1898e0c1a6a8d6ad612493a793a5d7 3318 non-free/libs optional 
nvidia-graphics-drivers_325.15-1.dsc
 5901b2a9905e97f869798d3587612c6c 92207009 non-free/libs optional 
nvidia-graphics-drivers_325.15.orig.tar.gz
 8b2a67c52f8f6fca432b1ce338f5c98c 117080 non-free/libs optional 
nvidia-graphics-drivers_325.15-1.debian.tar.gz
 d0703e8d82e22cb12d3ab16c25614d64 391146 non-free/x11 optional 
nvidia-driver_325.15-1_amd64.deb
 48f14a76ff4ddc33cd0f87eb27968405 109210 non-free/oldlibs extra 
nvidia-glx_325.15-1_amd64.deb
 009676c46dfea2aebb3af84a97235f46 2243874 non-free/x11 optional 
xserver-xorg-video-nvidia_325.15-1_amd64.deb
 295acca8b1a15d41b33928b3b9cedd3d 6783946 non-free/libs optional 
libgl1-nvidia-glx_325.15-1_amd64.deb
 db271c452400b207ea88fd9f125b3a26 109876 non-free/libs optional 
nvidia-alternative_325.15-1_amd64.deb
 74b014768304eebc4cdc19b9d7a9bb4d 3260330 non-free/kernel optional 
nvidia-kernel-dkms_325.15-1_amd64.deb
 de80dcdb1fa23a4fbf7d88494caaa61d 3314044 non-free/kernel optional 
nvidia-kernel-source_325.15-1_amd64.deb
 9a50143a95e93b1ad80fb38a4abfe115 854802 non-free/video optional 
nvidia-vdpau-driver_325.15-1_amd64.deb
 be3f883f3ade49a1af623b06a778e9cf 180166 non-free/utils optional 
nvidia-smi_325.15-1_amd64.deb
 7c9e297390afcb6e6375368a8f28f1e8 131016 non-free/utils optional 
nvidia-cuda-mps_325.15-1_amd64.deb
 03258b8268e6134e28e56f15231f230e 3441646 non-free/libs optional 
libcuda1_325.15-1_amd64.deb
 a3138fbe88d6dc5315acf2a578037a59 6403546 non-free/libs optional 
libnvidia-compiler_325.15-1_amd64.deb
 48a9904cc51d0c52b5790325ad3b888a 711544 non-free/libs optional 
libnvcuvid1_325.15-1_amd64.deb
 388d4abd662ee0af40eb274f19337a8e 148748 non-free/libs optional 
libnvidia-encode1_325.15-1_amd64.deb
 13db99572c2114fce3643484fc1ffea1 273822 non-free/libs optional 
libnvidia-ml1_325.15-1_amd64.deb
 201585d7bcd776307bf9da3cab20f140 108548 non-free/libs optional 
nvidia-opencl-common_325.15-1_amd64.deb
 42b518e8151213b0dc41f399e7648492 2923246 non-free/libs optional 
nvidia-opencl-icd_325.15-1_amd64.deb
 ee9f66927306984fe64af2bf9ed3b1c1 115278 non-free/libs optional 
nvidia-libopencl1_325.15-1_amd64.deb
 134ea7ad928a42124406cba13b15a495 111282 non-free/x11 optional 
nvidia-detect_325.15-1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJSA14kAAoJEF+zP5NZ6e0InLEQAK7HtO/VYRkv63LHn3+49m1S
2J/bmV3JkhnqBwf2Z1tUZ9xEALD056fhO632ykV9bmNbIzg/RPB951oIwMrK0L6h
Np/rDyLz869A1waOLQ46ZJRxuYe1/17xxouJoqwGU2YsHEWGjz9+T8wdjkc22Idw
Dc16xKPlDU+Zb2s8tsNwf/RXJ/JKseACrp5FNo5vt076/K39xoW3Y7/SGibisCMT
avtrmTLikqX6E8qfRqRj4cN7wrVt66kBDfYL6k1nukfmlNGgmhYb0KnInAndmg37
G1AXLI88K1/pRypNEQHpqqwb7I8lRg+yHq1S126DFkkUSN0rOBhWiRzCkpzRqwTz
+XeB0s6I/VzGydKiZA1sxzSslwFcz7RLB58mzIfJbCD+e2ZIkkSRh5ITgHyHvDom
guoheGyaGWBjbqJux62pNyVpy6nrL/obUWEgS6RpMITDExVNlXbjM7JQkybpWIO0
EMruoHmmz35i7xzacma1DQL74GlSjDehHsiCkE2NSZYHjKbFhzeS4IKERc5y8GTH
srnn6rDSHw+z63jh2i7RNYsiwSP6h3bVOyYHhiF3ELAr7Efyn8+MnyFjNvi78TSK
JArkWDuI/lCjDVvqswo1joTGM6Fd8szaLhjigP0IAHfW122TOxdOK6PzF7+65Cjz
rNg5Kic9623NqrArOfIt
=vSHU
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to