Your message dated Thu, 08 May 2014 12:05:16 +0000
with message-id <[email protected]>
and subject line Bug#746396: fixed in grub2 2.02~beta2-10
has caused the Debian Bug report #746396,
regarding grub-common: Add support for NVMe devices in grub-mkdevicemap
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.)


-- 
746396: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=746396
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: grub-common
Version: 2.02~beta2-9
Severity: wishlist
Tags: patch

Dear Maintainer,

Whilst legacy grub-mkdevicemap is still in use, I have noticed that it
doesn't have support for NVMe devices. I've added the device pattern,
for grub-mkdevicemap to probe NVMe devices following other similar
devices. I've tested it using qemu-system, booted with UEFI edk2
firmware and an NVMe device, here are sample instructions:

  cd `mktemp -d`
  cp /usr/share/ovmf/OVMF.fd .
  qemu-system-x86_64 -pflash OVMF.fd -m 1024 -drive 
file=nvme.img,if=none,id=D22 -device nvme,drive=D22,serial=1234 --enable-kvm 
-ctrl-grab -cdrom trusty-desktop-amd64.iso

With the attached patch grub-mkdevicemap produces result for the nvme
drive. Patch was created on top of locally generated
`patched-experimental` branch.

>From b6a40d729005631017ed63191b00cd8f710a434d Mon Sep 17 00:00:00 2001
From: Dimitri John Ledkov <[email protected]>
Date: Tue, 29 Apr 2014 16:45:44 +0100
Subject: [PATCH] Add support for nvme device in grub-mkdevicemap.

---
 util/deviceiter.c | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/util/deviceiter.c b/util/deviceiter.c
index b61715d..0f871e5 100644
--- a/util/deviceiter.c
+++ b/util/deviceiter.c
@@ -371,6 +371,12 @@ get_fio_disk_name (char *name, int unit)
 {
   sprintf (name, "/dev/fio%c", unit + 'a');
 }
+
+static void
+get_nvme_disk_name (char *name, int controller, int namespace)
+{
+    sprintf (name, "/dev/nvme%dn%d", controller, namespace);
+}
 #endif
 
 static struct seen_device
@@ -875,6 +881,29 @@ grub_util_iterate_devices (int (*hook) (const char *, int, void *), void *hook_d
 	}
     }
 
+  /* This is for standard NVMe controllers
+     /dev/nvme<controller>n<namespace>p<partition>. No idea about
+     actual limits of how many controllers a system can have and/or
+     how many namespace that would be, 10 for now. */
+  {
+    int controller, namespace;
+
+    for (controller = 0; controller < 10; controller++)
+      {
+	for (namespace = 0; namespace < 10; namespace++)
+	  {
+	    char name[16];
+
+	    get_nvme_disk_name (name, controller, namespace);
+	    if (check_device_readable_unique (name))
+	      {
+		if (hook (name, 0, hook_data))
+		  goto out;
+	      }
+	  }
+      }
+  }
+
 # ifdef HAVE_DEVICE_MAPPER
 #  define dmraid_check(cond, ...) \
   if (! (cond)) \
-- 
1.9.1

Regards,

Dimitri.

--- End Message ---
--- Begin Message ---
Source: grub2
Source-Version: 2.02~beta2-10

We believe that the bug you reported is fixed in the latest version of
grub2, 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.
Colin Watson <[email protected]> (supplier of updated grub2 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 May 2014 11:13:48 +0100
Source: grub2
Binary: grub2 grub-linuxbios grub-efi grub-common grub2-common grub-emu 
grub-emu-dbg grub-pc-bin grub-pc-dbg grub-pc grub-rescue-pc grub-coreboot-bin 
grub-coreboot-dbg grub-coreboot grub-efi-ia32-bin grub-efi-ia32-dbg 
grub-efi-ia32 grub-efi-amd64-bin grub-efi-amd64-dbg grub-efi-amd64 
grub-efi-ia64-bin grub-efi-ia64-dbg grub-efi-ia64 grub-efi-arm-bin 
grub-efi-arm-dbg grub-efi-arm grub-efi-arm64-bin grub-efi-arm64-dbg 
grub-efi-arm64 grub-ieee1275-bin grub-ieee1275-dbg grub-ieee1275 
grub-firmware-qemu grub-uboot-bin grub-uboot-dbg grub-uboot grub-xen-bin 
grub-xen-dbg grub-xen grub-yeeloong-bin grub-yeeloong-dbg grub-yeeloong 
grub-theme-starfield grub-mount-udeb
Architecture: source i386
Version: 2.02~beta2-10
Distribution: unstable
Urgency: medium
Maintainer: GRUB Maintainers <[email protected]>
Changed-By: Colin Watson <[email protected]>
Description: 
 grub-common - GRand Unified Bootloader (common files)
 grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
 grub-coreboot-bin - GRand Unified Bootloader, version 2 (Coreboot binaries)
 grub-coreboot-dbg - GRand Unified Bootloader, version 2 (Coreboot debug files)
 grub-efi   - GRand Unified Bootloader, version 2 (dummy package)
 grub-efi-amd64 - GRand Unified Bootloader, version 2 (EFI-AMD64 version)
 grub-efi-amd64-bin - GRand Unified Bootloader, version 2 (EFI-AMD64 binaries)
 grub-efi-amd64-dbg - GRand Unified Bootloader, version 2 (EFI-AMD64 debug 
files)
 grub-efi-arm - GRand Unified Bootloader, version 2 (ARM UEFI version)
 grub-efi-arm-bin - GRand Unified Bootloader, version 2 (ARM UEFI binaries)
 grub-efi-arm-dbg - GRand Unified Bootloader, version 2 (ARM UEFI debug files)
 grub-efi-arm64 - GRand Unified Bootloader, version 2 (ARM64 UEFI version)
 grub-efi-arm64-bin - GRand Unified Bootloader, version 2 (ARM64 UEFI binaries)
 grub-efi-arm64-dbg - GRand Unified Bootloader, version 2 (ARM64 UEFI debug 
files)
 grub-efi-ia32 - GRand Unified Bootloader, version 2 (EFI-IA32 version)
 grub-efi-ia32-bin - GRand Unified Bootloader, version 2 (EFI-IA32 binaries)
 grub-efi-ia32-dbg - GRand Unified Bootloader, version 2 (EFI-IA32 debug files)
 grub-efi-ia64 - GRand Unified Bootloader, version 2 (IA64 version)
 grub-efi-ia64-bin - GRand Unified Bootloader, version 2 (IA64 binaries)
 grub-efi-ia64-dbg - GRand Unified Bootloader, version 2 (IA64 debug files)
 grub-emu   - GRand Unified Bootloader, version 2 (emulated version)
 grub-emu-dbg - GRand Unified Bootloader, version 2 (emulated debug files)
 grub-firmware-qemu - GRUB firmware image for QEMU
 grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
 grub-ieee1275-bin - GRand Unified Bootloader, version 2 (Open Firmware 
binaries)
 grub-ieee1275-dbg - GRand Unified Bootloader, version 2 (Open Firmware debug 
files)
 grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
 grub-mount-udeb - export GRUB filesystems using FUSE (udeb)
 grub-pc    - GRand Unified Bootloader, version 2 (PC/BIOS version)
 grub-pc-bin - GRand Unified Bootloader, version 2 (PC/BIOS binaries)
 grub-pc-dbg - GRand Unified Bootloader, version 2 (PC/BIOS debug files)
 grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
 grub-theme-starfield - GRand Unified Bootloader, version 2 (starfield theme)
 grub-uboot - GRand Unified Bootloader, version 2 (ARM U-Boot version)
 grub-uboot-bin - GRand Unified Bootloader, version 2 (ARM U-Boot binaries)
 grub-uboot-dbg - GRand Unified Bootloader, version 2 (ARM U-Boot debug files)
 grub-xen   - GRand Unified Bootloader, version 2 (Xen version)
 grub-xen-bin - GRand Unified Bootloader, version 2 (Xen binaries)
 grub-xen-dbg - GRand Unified Bootloader, version 2 (Xen debug files)
 grub-yeeloong - GRand Unified Bootloader, version 2 (Yeeloong version)
 grub-yeeloong-bin - GRand Unified Bootloader, version 2 (Yeeloong binaries)
 grub-yeeloong-dbg - GRand Unified Bootloader, version 2 (Yeeloong debug files)
 grub2      - GRand Unified Bootloader, version 2 (dummy package)
 grub2-common - GRand Unified Bootloader (common files for version 2)
Closes: 745559 746396 746856
Changes: 
 grub2 (2.02~beta2-10) unstable; urgency=medium
 .
   [ Colin Watson ]
   * Add the true module to the signed image, since 05_debian_theme uses it.
     Thanks to Dimitri John Ledkov for the report.
   * Limit test suite parallelisation to 1; the test suite seems to have some
     isolation problems at higher levels at the moment (closes: #746856).
   * Simplify override_dh_install a bit.
   * Backport patches from upstream to make the network stack more responsive
     on busy networks (LP: #1314134).
 .
   [ Dimitri John Ledkov ]
   * Add support for nvme device in grub-mkdevicemap (closes: #746396,
     LP: #1275162).
 .
   [ Debconf translations ]
   * Korean (Changwoo Ryu, closes: #745559).
Checksums-Sha1: 
 54ae8b1f06c399962ecc092914f2e780e00a5ace 6679 grub2_2.02~beta2-10.dsc
 4e15d913809570ff0a4b4c852e2ef3502a7c7995 991488 
grub2_2.02~beta2-10.debian.tar.xz
 a8a0fc9d494f5a2c1e00bdfc00e35708bd4ea289 2572 grub2_2.02~beta2-10_i386.deb
 ce0578a3d8510450c80dcd022e2d15ba239dfcf1 2574 
grub-linuxbios_2.02~beta2-10_i386.deb
 91316598a1be6a7f22f187f41c04d728365a3717 2582 grub-efi_2.02~beta2-10_i386.deb
 88c13c41306b7b47c86a483312e0310e1ce8dc0f 2639588 
grub-common_2.02~beta2-10_i386.deb
 5ca78c4710d6657732ae2c118643c130125c7e91 508716 
grub2-common_2.02~beta2-10_i386.deb
 8a7a9309ed3c9816efceec0b8af7d40a28380aab 3132398 
grub-emu_2.02~beta2-10_i386.deb
 2b86b1c17515dd2b91a6e86a84911aab83fcabb7 2194510 
grub-emu-dbg_2.02~beta2-10_i386.deb
 c7876937d7831c0a3abf14df011249c32dbed123 887280 
grub-pc-bin_2.02~beta2-10_i386.deb
 7c2148deea9020ae6f925cfaadfa0fbcd5c31751 2796568 
grub-pc-dbg_2.02~beta2-10_i386.deb
 c7bdb66b3f9aeb70895fec89fe8447fec3f72b87 199398 grub-pc_2.02~beta2-10_i386.deb
 58a023f97ac9f45484996a962404937077582998 2725270 
grub-rescue-pc_2.02~beta2-10_i386.deb
 7779a9828b5d83d686df29d41dde6c8f6cb4fdee 592792 
grub-coreboot-bin_2.02~beta2-10_i386.deb
 ed9aa69200f1bd1a7f0b364c07a064ffa115c101 2532950 
grub-coreboot-dbg_2.02~beta2-10_i386.deb
 8625905f0fd04863f3095e1b65b2fd7cbab32fcb 52038 
grub-coreboot_2.02~beta2-10_i386.deb
 732705300aa88f566aa7d3383b9fd58b92496c99 617022 
grub-efi-ia32-bin_2.02~beta2-10_i386.deb
 f2246b541d313e58cfbae5f3e3a3bdc471e3b84c 2709362 
grub-efi-ia32-dbg_2.02~beta2-10_i386.deb
 5c20abf9f281ef33563c2c08ac2a4a1db622c7d1 52072 
grub-efi-ia32_2.02~beta2-10_i386.deb
 9f49ab78bff1d3d2814513471437caa38488bb9d 649804 
grub-efi-amd64-bin_2.02~beta2-10_i386.deb
 7d0de7b7b657720c57acef55af0a38d38ba0fb0c 2874060 
grub-efi-amd64-dbg_2.02~beta2-10_i386.deb
 d470248d2e485e66555bad616efff2df5970ff3a 52070 
grub-efi-amd64_2.02~beta2-10_i386.deb
 db57c477afb0cf3222877299e7b4715b2dae3e44 589390 
grub-ieee1275-bin_2.02~beta2-10_i386.deb
 b0f1af81daaa05cecd523102c42764e4fa8c0c39 2561548 
grub-ieee1275-dbg_2.02~beta2-10_i386.deb
 a5c057167e59576fa2d6a648587c54170cc743a4 52038 
grub-ieee1275_2.02~beta2-10_i386.deb
 835a961cae3e51b4ba73817c69a2e33994569e66 1072350 
grub-firmware-qemu_2.02~beta2-10_i386.deb
 ab9825613bc05ca4cd0e7d1219504df108c0a447 913544 
grub-xen-bin_2.02~beta2-10_i386.deb
 25310257d1afc183186874368de294948f7bb236 4191156 
grub-xen-dbg_2.02~beta2-10_i386.deb
 98519a577e73819b212b56189e62295366170cfb 52012 grub-xen_2.02~beta2-10_i386.deb
 18a4f6d158a2e155832741bc994666e300ffdb01 2151036 
grub-theme-starfield_2.02~beta2-10_i386.deb
 36dc33db96dfb93eb6b7afc725c937da45e5a86a 340052 
grub-mount-udeb_2.02~beta2-10_i386.udeb
Checksums-Sha256: 
 8b206b4379809b7a7af140f32c9942c3f76022f434b56f10fcf1e0526f8398bf 6679 
grub2_2.02~beta2-10.dsc
 7d6a0b22ddc29bc8b2ff95f9c9bf127edda4fc462a2a02042dc72e8fd738e14c 991488 
grub2_2.02~beta2-10.debian.tar.xz
 1bd2f6b0b4f412466e0c211780edbda5a1496417ac727c4e7131681eedc46826 2572 
grub2_2.02~beta2-10_i386.deb
 23b463ceeaace40d5fcdd0c647799e27ca22133e4cf2416e330258c7d035ca4e 2574 
grub-linuxbios_2.02~beta2-10_i386.deb
 64d51a263f22931b8ccdefac1613e92bc8e2670443ddf9b5195194431de53c12 2582 
grub-efi_2.02~beta2-10_i386.deb
 bfcb87c525b02517df1e6388318056abc2bd7f74f0d86af1f8827fd8375f4512 2639588 
grub-common_2.02~beta2-10_i386.deb
 0f6a2931b2d44cbb3c242af2aff7df2cbcab16a71db8edade1b9db4e5ed0a1f6 508716 
grub2-common_2.02~beta2-10_i386.deb
 cc6ef07525d918965de7d1967ff3a7df0ffa5b4ddbd2c4bcc06d9a68434f477f 3132398 
grub-emu_2.02~beta2-10_i386.deb
 a9d2ad7e62daa164dc4a366ce309e6e89937d30852d7322feab2ca4ef9fbc9c6 2194510 
grub-emu-dbg_2.02~beta2-10_i386.deb
 a324a4b871ec03b7e1d8c434a5bc2fee68f24bdcb3876e63564c2888d226744a 887280 
grub-pc-bin_2.02~beta2-10_i386.deb
 034d846b8e8bd3709dc7a4a63439cb88b139e23b04b5315d696ca1f269aa9b67 2796568 
grub-pc-dbg_2.02~beta2-10_i386.deb
 7ec5425b27921c07938de2849099487d664e3f512555552b54c66b94986aa486 199398 
grub-pc_2.02~beta2-10_i386.deb
 be0d1a5b8f202189c58858680ca733e0fdf7e62193c55f246c1b6ed83ab1ac4b 2725270 
grub-rescue-pc_2.02~beta2-10_i386.deb
 1eebe7b2709f8cf99d3534fc4b855acc545edf99285ea42409294f8a2b3bcc9b 592792 
grub-coreboot-bin_2.02~beta2-10_i386.deb
 a33eb6a1e881e590ba62b648e30ebce498bb657d42364ac16b31391c8055ccd7 2532950 
grub-coreboot-dbg_2.02~beta2-10_i386.deb
 1160f6b42d3e6d100c5deb441764a422b61f244bacf22e7a50a725c4435f3298 52038 
grub-coreboot_2.02~beta2-10_i386.deb
 0564f3352d6bd02d5e2613d5badb21a328ecba75e56e3f215aefb403547fe2c0 617022 
grub-efi-ia32-bin_2.02~beta2-10_i386.deb
 c741b45c2ca9e1a795c64a77b424f306fdcc5b54ac2ed277e94ad71faddfc266 2709362 
grub-efi-ia32-dbg_2.02~beta2-10_i386.deb
 24511bcbe214f1431b354c4c91fe4e7841b894c469469d22bc1fb3cb1d84a929 52072 
grub-efi-ia32_2.02~beta2-10_i386.deb
 963fb6a807050a9b7e9e000230df4effea7ea11a4ac7983db5cfd5ef754d9fd6 649804 
grub-efi-amd64-bin_2.02~beta2-10_i386.deb
 4096f052d0ec4e4b62ad8905003ded6a5f5807445fabd56bb857bb263565b69d 2874060 
grub-efi-amd64-dbg_2.02~beta2-10_i386.deb
 6918332cc238f77390dd055c69507a97c9089dece9574b4aa445fd7349ec983b 52070 
grub-efi-amd64_2.02~beta2-10_i386.deb
 f32325c7ab426718f7b8cc0d82006d11cc92bbf2e9ab6b0fd7465cd7c0564c82 589390 
grub-ieee1275-bin_2.02~beta2-10_i386.deb
 29d95ae309b24b39cf50532b27da2994759c48aec428c74d3590bb9eb4e87710 2561548 
grub-ieee1275-dbg_2.02~beta2-10_i386.deb
 fdd31baa5939bb84f818dd9214ee2228714519be1a8b4efc93117c32a312a002 52038 
grub-ieee1275_2.02~beta2-10_i386.deb
 7a856b130fc31429619a47a38d6801c9bd25bcf90d8cde8b39c6327a4a73c6e5 1072350 
grub-firmware-qemu_2.02~beta2-10_i386.deb
 a1b14e9d8946f96536696f10dd5a29b64fe717cabb09906d854d10f15d64f33f 913544 
grub-xen-bin_2.02~beta2-10_i386.deb
 087612a7ff6528852d4c1efb9ecfe24e8659d8afb81ea128dbcbf21f9431cde0 4191156 
grub-xen-dbg_2.02~beta2-10_i386.deb
 c90f8abc1328cb196bc8203fee5b123a88b42386a80ddab6c0d2b2b40761b07c 52012 
grub-xen_2.02~beta2-10_i386.deb
 a3755ab53f8dce95ab9f5c593b9624603030420fa861fa58780d2caef1a59d4a 2151036 
grub-theme-starfield_2.02~beta2-10_i386.deb
 0bca35399417d752f839d5c5bd959a73c82eb64018fda227e3d10c12432f133a 340052 
grub-mount-udeb_2.02~beta2-10_i386.udeb
Files: 
 e45af34e5112c463ceef447b12443c3e 2572 oldlibs extra 
grub2_2.02~beta2-10_i386.deb
 2cb0336cb9f8264d60c442009190a3d0 2574 oldlibs extra 
grub-linuxbios_2.02~beta2-10_i386.deb
 1130dba3e3fc4b230892c6cf693a517f 2582 oldlibs extra 
grub-efi_2.02~beta2-10_i386.deb
 0b585a3d3f8a655446a4e198807559d0 2639588 admin optional 
grub-common_2.02~beta2-10_i386.deb
 f91316c694cda1b09157bb25b402fe6e 508716 admin optional 
grub2-common_2.02~beta2-10_i386.deb
 5533db8f056699cc1395594f4bd075d8 3132398 admin extra 
grub-emu_2.02~beta2-10_i386.deb
 3fd92dd454ee0deaf1ba1477d0cdb5d6 2194510 debug extra 
grub-emu-dbg_2.02~beta2-10_i386.deb
 7f9c25ec4c4d0a96bcc17b509aeb3e5f 887280 admin optional 
grub-pc-bin_2.02~beta2-10_i386.deb
 f9cce671a7f5d228b288412360ca8dc0 2796568 debug extra 
grub-pc-dbg_2.02~beta2-10_i386.deb
 b9658f55341ee3c2e3bc752e3e2706dc 199398 admin optional 
grub-pc_2.02~beta2-10_i386.deb
 7c81c56256a7e65366a999db72b54f04 2725270 admin extra 
grub-rescue-pc_2.02~beta2-10_i386.deb
 d84141bb92475239a9dd5bcc1639e114 592792 admin extra 
grub-coreboot-bin_2.02~beta2-10_i386.deb
 8dfedf21a797396a0868c9dd51768211 2532950 debug extra 
grub-coreboot-dbg_2.02~beta2-10_i386.deb
 cf209583804f8643eb6f5788af77eb1f 52038 admin extra 
grub-coreboot_2.02~beta2-10_i386.deb
 1f015636a2e935a6bde15999dac3e0ba 617022 admin extra 
grub-efi-ia32-bin_2.02~beta2-10_i386.deb
 6358b7786d3e1d9cc9237dcc9d666cf8 2709362 debug extra 
grub-efi-ia32-dbg_2.02~beta2-10_i386.deb
 bd4abe58d4872b5f7cbf2eb853653d33 52072 admin extra 
grub-efi-ia32_2.02~beta2-10_i386.deb
 1ca06b0c60067fe27e6b69178e876915 649804 admin extra 
grub-efi-amd64-bin_2.02~beta2-10_i386.deb
 d7ddeb47e1d02119140518e0544355ed 2874060 debug extra 
grub-efi-amd64-dbg_2.02~beta2-10_i386.deb
 981090af568763134e4ca732b3254042 52070 admin extra 
grub-efi-amd64_2.02~beta2-10_i386.deb
 fa4944d0c7e1fcc31535696a2b1ec541 589390 admin extra 
grub-ieee1275-bin_2.02~beta2-10_i386.deb
 b0368e50200850de446ac3bc32d6d659 2561548 debug extra 
grub-ieee1275-dbg_2.02~beta2-10_i386.deb
 869557e1de19b480b47d82b934dfde63 52038 admin extra 
grub-ieee1275_2.02~beta2-10_i386.deb
 f1f4ebcd121676bc86241ee6e56c2a1a 1072350 admin extra 
grub-firmware-qemu_2.02~beta2-10_i386.deb
 83ac70c41247eb1c009555734fe9d56a 913544 admin extra 
grub-xen-bin_2.02~beta2-10_i386.deb
 74e25614e8cb7151c7f5d8be741decbf 4191156 debug extra 
grub-xen-dbg_2.02~beta2-10_i386.deb
 195fad12428c2c79460cdfd8ecee2334 52012 admin extra 
grub-xen_2.02~beta2-10_i386.deb
 ccedcec9b39990b1ebba22414ba89af8 2151036 admin extra 
grub-theme-starfield_2.02~beta2-10_i386.deb
 ff3ebec5c9f1fe1b5b0438ac8d69375d 340052 debian-installer extra 
grub-mount-udeb_2.02~beta2-10_i386.udeb
 e61a1e0ededcd01a1128fa06ec4bcf1e 6679 admin extra grub2_2.02~beta2-10.dsc
 bd50ce5553e002c8a1b437f87acc8e03 991488 admin extra 
grub2_2.02~beta2-10.debian.tar.xz
Package-Type: udeb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1
Comment: Colin Watson <[email protected]> -- Debian developer

iQIVAwUBU2togDk1h9l9hlALAQhIuw//QhrTsrxlpzhvdpDY0JwiI2eFYO5htjz4
CMXxBlwmVhwRRFFHb+CMSji+4gndQwDex8rVJMtBygCFIZues9ZkZjnXk7Eij/hd
el5RmmKu5dSwJCBRmpS8sa3NzIirBoNkGdA5YeC1tUnFulKMrdUX3CfjhBMm2H/b
o2NrNIOn369fy04PSiqpZYzPkHLMlDN3OIEbYrFko8nvf+gHpNzJwkFkpCz9Q9N0
NT8l0jCWlyLd/Or/Pg2x/lp+rSdDUNE+0RTcN4QY9ZHS53q0D2M3c6JNZFFhvdNE
uc8FEjQ5ZJmMwQQ5NXFaAT/RFbVKAhAoSmlrij+WjYK6wbm4ECoeD3XJVBoD/spj
4YOxyZ1n+oK64i/dGF1FhkeQX9Prqcq7yaHuU04QvHkE/n3G1UNbE/5x7EA/LoKa
I6ya0AwdmtKvidT1EkxgLAAWawZIAykyG6UIwa+O+I5Zoya3P+bxJbThj+FrUXnA
6TlNmDIdLt6lpRiOaawU9J+pE1/bgFpvIQSqCwb66m9cBdACKv1ZMKoJmq76lGV5
uDuluHktHCigpl9Szvoxon2jaEgUsyL7EJjZwg9c+oQb2LHBOjskdc5URSqoC1ip
G9re0nltjWRHwVbZpUIzrgbH/LbIWIzEMxMt3T+KV0qC02DZB1mYSjleGOF8K6x0
+egTkgxyobk=
=JyXr
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to