Your message dated Sat, 17 Aug 2013 13:34:19 +0000
with message-id <[email protected]>
and subject line Bug#685617: fixed in nvidia-graphics-drivers 304.88-7
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: 304.88-7

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: Sat, 17 Aug 2013 14:41:44 +0200
Source: nvidia-graphics-drivers
Binary: nvidia-driver nvidia-glx xserver-xorg-video-nvidia libgl1-nvidia-glx 
libxvmcnvidia1 nvidia-alternative nvidia-kernel-dkms nvidia-kernel-source 
nvidia-vdpau-driver nvidia-smi nvidia-cuda-mps libcuda1 libnvidia-compiler 
libnvcuvid1 libnvidia-ml1 nvidia-opencl-common nvidia-opencl-icd 
nvidia-libopencl1 nvidia-detect
Architecture: source amd64
Version: 304.88-7
Distribution: unstable
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-ml1 - NVIDIA management library (NVML) runtime library
 libxvmcnvidia1 - NVIDIA binary XvMC library${nvidia:LegacyDesc}
 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 685648 695883 717606 719915
Changes: 
 nvidia-graphics-drivers (304.88-7) unstable; urgency=low
 .
   * Add new substvars ${nvidia-alternative}, #NVIDIA_ALTERNATIVE#.
   * Rename the kernel module to nvidia-current.ko but retain its internal name
     as 'nvidia'.
   * nvidia{,-legacy-*}-kernel-dkms are now co-installable.  (Closes: #685617)
   * nvidia-alternative: Add /etc/nvidia/nvidia-modprobe.conf (with the nvidia
     alias) and a slave alternative /etc/modprobe.d/nvidia.conf to the nvidia
     alternative.  (Closes: #685648)
   * nvidia-alternative: Provides: ${nvidia-alternative}--kmod-alias.
   * nvidia-kernel-dkms, nvidia-kernel-#KVERS#: Depend on
     ${nvidia-alternative}--kmod-alias.
   * nvidia-libopencl1: Provide virtual package libopencl-1.1-1 and update
     description.
   * nvidia-libopencl1.symbols: Change the dependency template to always
     generate a Depends: ocl-icd-libopencl1 | libopencl1, libopencl-1.1-1.
     (Closes: #717606)
   * nvidia-libopencl1.shlibs: Removed in favor of doing the same in .symbols.
   * nvidia-libopencl1.links: Stop shipping libOpenCL.so, will be moved to
     nvidia-opencl-dev.
   * nvidia-opencl-icd: Depend on
       ocl-icd-libopencl1 | nvidia-libopencl1 | libopencl1
     for more deterministic libopencl1 installation.  (Closes: #695883)
   * libgl1-nvidia-glx.symbols: Change the dependency template to always
     generate a Depends: libgl1-mesa-glx | libgl1 and stop manipulating the
     .shlibs.
   * libgl1-nvidia-glx:i386: Check for problematic stray /usr/lib32/libGL.so*
     via Depends: nvidia-installer-cleanup (>= 20130816).  (Closes: #719915)
   * Don't explicitly request xz compression - dpkg 1.17 does this by default.
   * Drop empty Description paragraphs that worked around dpkg bug #680871.
   * conftest.h:
     - Implement check for drm/drmP.h (319.12).
     - Implement new conftest.sh functions drm_available (319.12),
       dom0_kernel_present (325.08),
       proc_create_data, pde_data, proc_remove (304.108, 325.15).
     - Implement conftest.sh sanity checks (only emit warning)
       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: Replace with patches backported from
     304.108.
   * kernel-3.11.patch: New patch to fix compilation with Linux 3.11-rc.
Checksums-Sha1: 
 dbe579806e2470e1b648fb58d12a515781373edd 3319 
nvidia-graphics-drivers_304.88-7.dsc
 a4a7f5704b800ce3c3cfeffd372f1b16e10d9ef9 115795 
nvidia-graphics-drivers_304.88-7.debian.tar.gz
 b1aa15495f2c892d5056b6fcbde595ba4d9d2cf2 347850 
nvidia-driver_304.88-7_amd64.deb
 09a78b8e0e53caf1bce25e35cabc66e00128652a 95766 nvidia-glx_304.88-7_amd64.deb
 796a9229a022610966e848c313823ebc6cc83d2e 2288314 
xserver-xorg-video-nvidia_304.88-7_amd64.deb
 d0bd325de2609fa0b656749860973470f8e06ea2 6585248 
libgl1-nvidia-glx_304.88-7_amd64.deb
 69e205173f66e2506f4c717588d46b65ea3bc59f 281388 
libxvmcnvidia1_304.88-7_amd64.deb
 4ae4f767ddedd618e24f8918df268f329912079a 96692 
nvidia-alternative_304.88-7_amd64.deb
 da7dda803301a065f80c6bc7c8a0af5b9d43bec6 3698896 
nvidia-kernel-dkms_304.88-7_amd64.deb
 db643cfdebb8c680369039ed397af9452df27055 3766296 
nvidia-kernel-source_304.88-7_amd64.deb
 bc5ff7db50af9fa9559060d2edade0e76a3f70d1 836566 
nvidia-vdpau-driver_304.88-7_amd64.deb
 0cacaf87c716dc126bc19f4f0cf25936bfa44125 146890 nvidia-smi_304.88-7_amd64.deb
 db9bc61e74a725049d4ef5f0f5d5f197ac677644 115532 
nvidia-cuda-mps_304.88-7_amd64.deb
 aec082c96b240a7a4ece00bc0c60bba910667233 3277224 libcuda1_304.88-7_amd64.deb
 6eb2b7f09aa819976588c3277a410ed6e46b0d5d 6968752 
libnvidia-compiler_304.88-7_amd64.deb
 b8a79ba42c88b0fd8630aa70a8230144902ffc83 625012 libnvcuvid1_304.88-7_amd64.deb
 9a6ed0d23757e54bf5184f77e652f54d29525c28 217166 
libnvidia-ml1_304.88-7_amd64.deb
 7b681e117340787886d82d0a2df6e6cd8b39d26a 95304 
nvidia-opencl-common_304.88-7_amd64.deb
 acc6b7792306baf0a54bd2a62b7d7a3d3fc79ddc 2909320 
nvidia-opencl-icd_304.88-7_amd64.deb
 4c627613a1ab769e925748b82e4976df0830be7e 102128 
nvidia-libopencl1_304.88-7_amd64.deb
 46544ce1d08171cc2552f470f1b0a1a617d18ff6 98384 nvidia-detect_304.88-7_amd64.deb
Checksums-Sha256: 
 3136a600066a8c18a7d38b3e9e9e80e2f7ae2b2672a3e4224d1e9db2cf0c4596 3319 
nvidia-graphics-drivers_304.88-7.dsc
 6906e489cc6e4f282c4522957f5c177c36106aeffe88018cb2c0b6e49bde0947 115795 
nvidia-graphics-drivers_304.88-7.debian.tar.gz
 37fbed094fb9834888851b7a7a68e318e14841d58468616583a0228b058de6b4 347850 
nvidia-driver_304.88-7_amd64.deb
 abee389ae2516c9f0345f6e88deb6559cbdbe5827411c4823c462a37725270e3 95766 
nvidia-glx_304.88-7_amd64.deb
 f965f3ccb24c57870b2c7e4fa935d3b2c4379ed11fb338941f57c320cc0a3e4d 2288314 
xserver-xorg-video-nvidia_304.88-7_amd64.deb
 f8ebd7faa2c0944d458426164f8ebc0e30c5ed710387f7dcd6fb5b3e4688b536 6585248 
libgl1-nvidia-glx_304.88-7_amd64.deb
 40c0bc2c179da68a89dab15371a0b4caa22085efac0837330f3479f300e2f978 281388 
libxvmcnvidia1_304.88-7_amd64.deb
 fd5e31c2265cb0966efca71d3c770aecd90b462e66806cd452c927aad6df7aba 96692 
nvidia-alternative_304.88-7_amd64.deb
 4ba7dc2780861933d0a5a987c81bc9ee72e8dbfdcc223084ae5e4493ea1e6e3a 3698896 
nvidia-kernel-dkms_304.88-7_amd64.deb
 c558cf7dad5f8872448b7d0d1ddccd6a910d1937b509eefe45cf85be996f11e0 3766296 
nvidia-kernel-source_304.88-7_amd64.deb
 f077a631a8d35317e812ed7dfc7bd31372f738f804a806cdc806dedb3802196d 836566 
nvidia-vdpau-driver_304.88-7_amd64.deb
 730984b607b7584611a0d329c1d251b71b8ef5f096d77e3e02ea872e7e33cbcb 146890 
nvidia-smi_304.88-7_amd64.deb
 84fd6a9f9ab48316be0b2e2383f5ca209a5ebe4fdb214c3b8439f012fb3f450b 115532 
nvidia-cuda-mps_304.88-7_amd64.deb
 e6142f83095255f801069577295347b60630d1dbb79f07cd3ba7ef0a4c24fcc9 3277224 
libcuda1_304.88-7_amd64.deb
 332c72c5dc477fc3a2dd4f89ff1ee8ef465911f610208c4b32b7591f4362e52f 6968752 
libnvidia-compiler_304.88-7_amd64.deb
 568c00135166e512d2e4319164c38aaf7a0771c89579a16142bfcc421a1989b7 625012 
libnvcuvid1_304.88-7_amd64.deb
 aff61e40764d3e7c610613ebf4e0960f026220737f620b97fd4561f451877729 217166 
libnvidia-ml1_304.88-7_amd64.deb
 50002ec27569ce2c913506b101f87be3891b6bea2136b193ec09c294fa7d2ddc 95304 
nvidia-opencl-common_304.88-7_amd64.deb
 08c827efa2fc5e33c5bd8c27bd27251a48fab9592e64597c975170ba6b3c4ae1 2909320 
nvidia-opencl-icd_304.88-7_amd64.deb
 ff224e18216b4f6262e7ec2809c6e1386c7fb4c7fff3593c19f230da5e4fdcaa 102128 
nvidia-libopencl1_304.88-7_amd64.deb
 88ef33a2fd7dcd0da84b8f6cae5f37b21a3213d00f672e9cf9b6f4a90da14bdf 98384 
nvidia-detect_304.88-7_amd64.deb
Files: 
 18b9d10391adf5dbf08de281e56c539b 3319 non-free/libs optional 
nvidia-graphics-drivers_304.88-7.dsc
 94a2295714d593901110e0d1d1d45b57 115795 non-free/libs optional 
nvidia-graphics-drivers_304.88-7.debian.tar.gz
 f6b208c4184802e44960f9856a7e3ce3 347850 non-free/x11 optional 
nvidia-driver_304.88-7_amd64.deb
 d719c8cc0f6ed43e00567cb5b62bd28b 95766 non-free/oldlibs extra 
nvidia-glx_304.88-7_amd64.deb
 b3291dfe81adc939e017eb4d1080ee4c 2288314 non-free/x11 optional 
xserver-xorg-video-nvidia_304.88-7_amd64.deb
 7fc472fed8525c7811c46b74480c06f4 6585248 non-free/libs optional 
libgl1-nvidia-glx_304.88-7_amd64.deb
 48b2f69e781767b28e398fb4705af3b6 281388 non-free/libs optional 
libxvmcnvidia1_304.88-7_amd64.deb
 29c43ecd69de216f2e180beea35c30e8 96692 non-free/libs optional 
nvidia-alternative_304.88-7_amd64.deb
 15809530a5b437596b357cacda311d95 3698896 non-free/kernel optional 
nvidia-kernel-dkms_304.88-7_amd64.deb
 c9f99bf7234b120c53c3e312570bbeb5 3766296 non-free/kernel optional 
nvidia-kernel-source_304.88-7_amd64.deb
 2f1558ed1a89afada925d5139b3df0bb 836566 non-free/video optional 
nvidia-vdpau-driver_304.88-7_amd64.deb
 4e13e8ab3648aaba70e72a7c95614ed5 146890 non-free/utils optional 
nvidia-smi_304.88-7_amd64.deb
 154a30cfe7d34c4b772b373855e2dec7 115532 non-free/utils optional 
nvidia-cuda-mps_304.88-7_amd64.deb
 b0d16de297c66fc485bf38aaf0256996 3277224 non-free/libs optional 
libcuda1_304.88-7_amd64.deb
 1ed627e09be7e75d0365a52fe8da2517 6968752 non-free/libs optional 
libnvidia-compiler_304.88-7_amd64.deb
 37fde42a301219a77f94c48793b1963a 625012 non-free/libs optional 
libnvcuvid1_304.88-7_amd64.deb
 7e0b0f968b3d225d70fd2b5bf6db5c05 217166 non-free/libs optional 
libnvidia-ml1_304.88-7_amd64.deb
 59398e5628490d99718daebc39e19063 95304 non-free/libs optional 
nvidia-opencl-common_304.88-7_amd64.deb
 38b8c2661aa3251fcaf95981d6b9bc92 2909320 non-free/libs optional 
nvidia-opencl-icd_304.88-7_amd64.deb
 46b7c5e163c4b462b484397e676c5432 102128 non-free/libs optional 
nvidia-libopencl1_304.88-7_amd64.deb
 89247d3fe55842249f11a667eaf20f67 98384 non-free/x11 optional 
nvidia-detect_304.88-7_amd64.deb

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

iQIcBAEBCAAGBQJSD3eQAAoJEF+zP5NZ6e0IdXQQAK98QDzb5eDE2mwghaFxw2oq
stjoJzts9zpl97809gp3QOHfhk7Q2kRaezFZYUAKY2cg93BMPXqCfBBVeURFdu2C
uJe1TwsHqm27ZTV/OfA4ezcxJUcAwuLJIJvL0+AYZGGx+j7FQRHfyGG9Ol4pzkqn
Bdrs7y9oNNlR9USgJJPA2i2QJiQ8c9zjTtP5yUgtRa+XWC3e3G+gqdonYFUZ8mpI
kwvwND7IQH8F2xRV4ABVpTqXfpmdOKobnMeTBZL6XtO0A6hEJXzXtMQJUINHwcLP
MejPW6lUbymOGLICq7rOyXZ/JGDVxJFpddI/neNu8JdTzHVg2yB8lRaS0n2mRVLP
4z4JflepfCuUfPP43uz1JEB3Z204GannnakmlSLmJSvRvmvlSMmOGhCgODjdj1qv
FI+vZ6dtMq7Ow6DBehUubKESylhD1ofVDN8DDQeU0BjGC1iEDg969Fo5yi5x72XB
O7lQpsWu+jLdg7QmYUVH6duJAiuMHiyHURRySuMWI6PcLFekhOprZxwp1x49sqe6
1sbbJrr7+Q7/GkE4M0rZqfSRyccAclu+Ddi90QPqgJVMBwWtHFdi4jOB19QDbfNa
/mxUrJF/M0kdEGmCtr+MpzBuKJIbpXqETTd41QQWYez1bLtaOLrxXOxqBBFReoOB
J/T0tx7ipBjqcEM9fm2K
=LwR8
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to