Your message dated Sat, 14 Sep 2024 11:33:57 +0000 with message-id <E1spR2L-004alB-PV@fasolo.debian.org> and subject line Bug#1057713: fixed in debian-installer 20240914 has caused the Debian Bug report #1057713, regarding debian-installer: add loongarch64 support to build cdrom image 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 owner@bugs.debian.org immediately.) -- 1057713: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1057713 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: submit@bugs.debian.org
- Cc: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
- Subject: debian-installer: add loongarch64 support to build cdrom image
- From: zhangdandan <zhangdandan@loongson.cn>
- Date: Thu, 7 Dec 2023 21:01:29 +0800
- Message-id: <18f58805-cbef-bf0d-a077-b85afc33502c@loongson.cn>
Source: debian-installer Version: 20230607+deb12u2 Severity: wishlist Tags: patch User: debian-loongarch@lists.debian.org Usertags: loong64 Dear maintainers,Compiling the debian-installer package failed for loong64 in the Debian Package Auto-Building environment. The full compilation log can be found at https://buildd.debian.org/status/logs.php?pkg=debian-installer&ver=20230607%2Bdeb12u2&arch=loong64Please consider the patch I have attached.The debian-installer source package was compiled successfully on my local loong64 rootfs environment. Since the loong64's merge-request in Debian kernel repository is still open[1], I compiled with a local kernel (via build/localudebs/ local sources).The binary files compiled by debian-installer are as follows, ``` debian-installer-images_20230607+deb12u2_loong64.tar.gz debian-installer_20230607+deb12u2_loong64.buildinfo debian-installer_20230607+deb12u2_loong64.changes debian-installer_20230607+deb12u2_loong64.deb ```The support for loongarch64 architecture in debian-installer source code package will be a gradual development process. We are happy to perform local testing and verification work based on maintainers suggestions.If you have any questions, you can contact me at any time.Also, for a patch to add loong64 support to debian-installer (I don't have permission to submit a pull request), please visit the debian git personal repository[2].If there are other suggestions, we can continue to discuss. [1]: https://salsa.debian.org/kernel-team/linux/-/merge_requests/879 [2]: https://salsa.debian.org/zhangdandan/debian-installer thanks, Dandan Zhangdiff -Nru debian-installer-20230607+deb12u2/build/boot/loong64/grub/grub-efi.cfg debian-installer-20230607+deb12u2/build/boot/loong64/grub/grub-efi.cfg --- debian-installer-20230607+deb12u2/build/boot/loong64/grub/grub-efi.cfg 1970-01-01 00:00:00.000000000 +0000 +++ debian-installer-20230607+deb12u2/build/boot/loong64/grub/grub-efi.cfg 2023-10-01 22:16:20.000000000 +0000 @@ -0,0 +1,5 @@ +set menu_color_normal=cyan/blue +set menu_color_highlight=white/blue + +insmod gzio + diff -Nru debian-installer-20230607+deb12u2/build/config/common debian-installer-20230607+deb12u2/build/config/common --- debian-installer-20230607+deb12u2/build/config/common 2023-10-01 22:16:20.000000000 +0000 +++ debian-installer-20230607+deb12u2/build/config/common 2023-10-01 22:16:20.000000000 +0000 @@ -11,7 +11,8 @@ # Default kernel ABI version to use. Append a kernel flavour to # produce KERNELVERSION. -LINUX_KERNEL_ABI ?= 6.1.0-13 +#LINUX_KERNEL_ABI ?= 6.1.0-13 +LINUX_KERNEL_ABI ?= 6.5.0-3 # Make sure the mirror is sufficiently up-to-date, by checking minimal # version (list of package_version): diff -Nru debian-installer-20230607+deb12u2/build/config/loong64/cdrom/grub.cfg debian-installer-20230607+deb12u2/build/config/loong64/cdrom/grub.cfg --- debian-installer-20230607+deb12u2/build/config/loong64/cdrom/grub.cfg 1970-01-01 00:00:00.000000000 +0000 +++ debian-installer-20230607+deb12u2/build/config/loong64/cdrom/grub.cfg 2023-10-01 22:16:20.000000000 +0000 @@ -0,0 +1,8 @@ +MEDIA_TYPE = CD-ROM +TARGET = $(INITRD) $(KERNEL) $(DEBIAN_CD_INFO) + +MANIFEST-KERNEL = "kernel for use with EFI to build a CD" +MANIFEST-INITRD = "initrd for use with EFI to build a CD" +MANIFEST-DEBIAN_CD_INFO = "EFI config files for CD" + +TYPE = cdrom/grub diff -Nru debian-installer-20230607+deb12u2/build/config/loong64/cdrom.cfg debian-installer-20230607+deb12u2/build/config/loong64/cdrom.cfg --- debian-installer-20230607+deb12u2/build/config/loong64/cdrom.cfg 1970-01-01 00:00:00.000000000 +0000 +++ debian-installer-20230607+deb12u2/build/config/loong64/cdrom.cfg 2023-10-01 22:16:20.000000000 +0000 @@ -0,0 +1,3 @@ +FLAVOUR_SUPPORTED = grub gtk + +MEDIA_TYPE = CD-ROM diff -Nru debian-installer-20230607+deb12u2/build/config/loong64.cfg debian-installer-20230607+deb12u2/build/config/loong64.cfg --- debian-installer-20230607+deb12u2/build/config/loong64.cfg 1970-01-01 00:00:00.000000000 +0000 +++ debian-installer-20230607+deb12u2/build/config/loong64.cfg 2023-10-01 22:16:20.000000000 +0000 @@ -0,0 +1,26 @@ +MEDIUM_SUPPORTED = cdrom + +DEBIAN_RELEASE = unstable + +KEYRING = /usr/share/keyrings/debian-ports-archive-keyring.gpg + +USE_UNRELEASED = 1 + +KERNELMAJOR = 2.6 +# The version of the kernel to use. +KERNELVERSION = $(LINUX_KERNEL_ABI)-loongson-3 +KERNELNAME = vmlinuz + +# Configuration for generating EFI images +GRUB_EFI=y +GRUB_EFI_PLATFORM=loongarch64-efi +GRUB_EFI_NAME=loongarch64 + +# We build a gtk installer for this arch +GRAPHICAL_INSTALLER=y + +arch_boot_screens: +arch_tree: + +include config/loongarch.cfg + diff -Nru debian-installer-20230607+deb12u2/build/config/loongarch.cfg debian-installer-20230607+deb12u2/build/config/loongarch.cfg --- debian-installer-20230607+deb12u2/build/config/loongarch.cfg 1970-01-01 00:00:00.000000000 +0000 +++ debian-installer-20230607+deb12u2/build/config/loongarch.cfg 2023-10-01 22:16:20.000000000 +0000 @@ -0,0 +1,44 @@ +# Common configuration and targets for loong64 systems. + +# The font to load in GRUB +GRUB_FONT = /usr/share/grub/ascii.pf2 + +# Extract GRUB EFI files. +.PHONY: loong64_grub_efi +loong64_grub_efi: $(TREE)/lib +ifeq ($(GRUB_EFI),y) + efi-image -o $(TEMP_GRUB_EFI) -g $(GRUB_EFI_PLATFORM) \ + -e $(GRUB_EFI_NAME) -n $(NETBOOT_PATH) \ + -s $(EFI_SIGNED) -d $(TREE)/lib +endif + +# Supply GRUB EFI configuration. +.PHONY: arch_cd_info_dir +arch_cd_info_dir: loong64_grub_efi + -rm -f $(TEMP_CD_INFO_DIR)/* + mkdir -p $(TEMP_CD_INFO_DIR) + + if [ "$(GRUB_EFI)" = y ]; then \ + set -e; \ + mkdir -p $(TEMP_CD_INFO_DIR)/grub/$(GRUB_EFI_PLATFORM); \ + cp -a $(TEMP_GRUB_EFI)/efi.img $(TEMP_CD_INFO_DIR)/grub/; \ + if [ "$(GRAPHICAL_INSTALLER)" = y ]; then \ + grub-gencfg \ + KERNEL /%install%/vmlinuz \ + INITRD /%install%/initrd.gz \ + INITRD_GTK /%install%/gtk/initrd.gz \ + HEADER boot/$(ARCH)/grub/grub-efi.cfg \ + IS_PURE_GTK "$(IS_PURE_GTK)" \ + > $(TEMP_CD_INFO_DIR)/grub/grub.cfg; \ + else \ + grub-gencfg \ + KERNEL /%install%/vmlinuz \ + INITRD /%install%/initrd.gz \ + HEADER boot/$(ARCH)/grub/grub-efi.cfg \ + IS_PURE_GTK "$(IS_PURE_GTK)" \ + > $(TEMP_CD_INFO_DIR)/grub/grub.cfg; \ + fi; \ + cp -a $(GRUB_FONT) $(TEMP_CD_INFO_DIR)/grub/font.pf2; \ + cp -a $(TEMP_GRUB_EFI)/boot/grub/$(GRUB_EFI_PLATFORM)/* \ + $(TEMP_CD_INFO_DIR)/grub/$(GRUB_EFI_PLATFORM)/; \ + fi Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/crc-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/crc-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/crypto-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/crypto-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/fat-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/fat-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/fb-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/fb-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/input-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/input-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/kernel-image-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/kernel-image-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/localechooser_2.104_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/localechooser_2.104_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/mtd-core-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/mtd-core-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/nic-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/nic-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/nic-shared-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/nic-shared-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/sata-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/sata-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/scsi-core-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/scsi-core-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/usb-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/usb-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/usb-serial-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/usb-serial-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ Binary files /tmp/NPfKsiDfkf/debian-installer-20230607+deb12u2/build/localudebs/usb-storage-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb and /tmp/WqLlsqaPdK/debian-installer-20230607+deb12u2/build/localudebs/usb-storage-modules-6.5.0-3-loongson-3-di_6.5.8-2_loong64.udeb differ diff -Nru debian-installer-20230607+deb12u2/build/pkg-lists/cdrom/loong64.cfg debian-installer-20230607+deb12u2/build/pkg-lists/cdrom/loong64.cfg --- debian-installer-20230607+deb12u2/build/pkg-lists/cdrom/loong64.cfg 1970-01-01 00:00:00.000000000 +0000 +++ debian-installer-20230607+deb12u2/build/pkg-lists/cdrom/loong64.cfg 2023-10-01 22:16:20.000000000 +0000 @@ -0,0 +1,21 @@ +console-setup-pc-ekmap +fat-modules-${kernel:Version} +debian-ports-archive-keyring-udeb + +input-modules-${kernel:Version} +fb-modules-${kernel:Version} +console-setup-udeb +kbd-udeb + +usb-modules-${kernel:Version} +usb-serial-modules-${kernel:Version} ? +usb-storage-modules-${kernel:Version} +virtio-modules-${kernel:Version} ? +uinput-modules-${kernel:Version} ? + +# Support for usb cdroms +usb-storage-modules-${kernel:Version} +# USB and firewire cdroms both need this. +scsi-core-modules-${kernel:Version} + +sata-modules-${kernel:Version} diff -Nru debian-installer-20230607+deb12u2/debian/control debian-installer-20230607+deb12u2/debian/control --- debian-installer-20230607+deb12u2/debian/control 2023-10-01 22:16:20.000000000 +0000 +++ debian-installer-20230607+deb12u2/debian/control 2023-10-01 22:16:20.000000000 +0000 @@ -51,7 +51,7 @@ genromfs [sparc sparc64], # Used for creating sparc floppies (which are not built by # default.) - dosfstools [hurd-i386 i386 ia64 m68k amd64 armhf arm64], + dosfstools [hurd-i386 i386 ia64 loong64 m68k amd64 armhf arm64], # For creating FAT filesystems with mkfs.msdos. # Of course i386/amd64 use this for floppies, CDs etc. # m68k uses it for atari floppies @@ -109,7 +109,8 @@ grub-efi-ia32-bin [hurd-i386 i386], grub-efi-ia64-bin [ia64], grub-efi-arm-bin [armhf], - grub-common [amd64 arm64 i386], xorriso, + grub-efi-loong64-bin [loong64], + grub-common [amd64 arm64 i386 loong64], xorriso, # Used to make EFI bootable images grub-ieee1275-bin [powerpc ppc64 ppc64el sparc sparc64], # IEEE1275 bootloader support. @@ -131,7 +132,7 @@ tofrodos [i386 amd64 kfreebsd-i386 kfreebsd-amd64], # For todos, used on files that need to be accessible from # DOS. - mtools [i386 ia64 m68k amd64 armhf arm64 kfreebsd-i386 kfreebsd-amd64 hurd-i386], + mtools [i386 ia64 loong64 m68k amd64 armhf arm64 kfreebsd-i386 kfreebsd-amd64 hurd-i386], # mcopy is used to put files onto FAT filesystems w/o # mounting them. Note that patches from #900409 and #900410 # are required for a reproducible build (available since @@ -155,11 +156,11 @@ # Used as the CD-ROM's bootloader xorriso (>= 1.3.2-1~) [kfreebsd-i386 kfreebsd-amd64 hurd-i386], # Used by grub-pc to create the CD-ROM images - debian-ports-archive-keyring [alpha hppa ia64 m68k powerpc powerpcspe ppc64 riscv64 sh4 sparc64 x32], + debian-ports-archive-keyring [alpha hppa ia64 loong64 m68k powerpc powerpcspe ppc64 riscv64 sh4 sparc64 x32], # Used for architectures hosted on debian-ports.org librsvg2-bin [any-amd64 any-i386], # Used to convert splash SVG to splash PNG during build - fdisk [amd64 arm64 armhf i386], + fdisk [amd64 arm64 armhf i386 loong64], # sfdisk is used by util/gen-hd-image when creating SD card # images for arm64 and armhf systems. # fdisk is used is used by util/geniso_hybrid_plus_firmware_partition
--- End Message ---
--- Begin Message ---
- To: 1057713-close@bugs.debian.org
- Subject: Bug#1057713: fixed in debian-installer 20240914
- From: Debian FTP Masters <ftpmaster@ftp-master.debian.org>
- Date: Sat, 14 Sep 2024 11:33:57 +0000
- Message-id: <E1spR2L-004alB-PV@fasolo.debian.org>
- Reply-to: Cyril Brulebois <kibi@debian.org>
Source: debian-installer Source-Version: 20240914 Done: Cyril Brulebois <kibi@debian.org> We believe that the bug you reported is fixed in the latest version of debian-installer, 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 1057713@bugs.debian.org, and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Cyril Brulebois <kibi@debian.org> (supplier of updated debian-installer 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: Sat, 14 Sep 2024 00:49:08 +0200 Source: debian-installer Architecture: source Version: 20240914 Distribution: unstable Urgency: medium Maintainer: Debian Install System Team <debian-boot@lists.debian.org> Changed-By: Cyril Brulebois <kibi@debian.org> Closes: 980493 1057713 1071873 Changes: debian-installer (20240914) unstable; urgency=medium . [ Cyril Brulebois ] * Install trixie, using trixie udebs. * Bump Linux kernel ABI to 6.10.9 (Closes: #1071873). * Bump (temporary) linux-image build-deps accordingly. * Makefile: unversion /boot/vmlinuz-* into /boot/vmlinuz, except on mips64el (KERNELNAME lists a few version+flavour items). * Makefile: adjust the drm/fb-modules workaround for now-compressed modules. * Update translation-status for the release. . [ harry88@gmx.ph ] * Add support for Orange Pi One Plus (Closes: #980493) . [ Holger Wansing ] * Update minimal RAM size value for amd64, according to lowmem value. * d-i i18n guide: remove win32-loader from the manual. . [ Aurelien Jarno ] * Build riscv64 from the official archive. * Dot not include debian-ports-archive-keyring-udeb on riscv64. * Add a device-tree target for riscv64. * Switch the riscv64 netboot flavour to grub.efi. * Build a mini.iso in the riscv64 netboot flavour. * Update riscv64 netboot package list. * Add a cdrom flavour for riscv64. * Drop kfreebsd support. . [ John Paul Adrian Glaubitz ] * alpha: Remove $(KERNELVERSION) suffix from KERNELNAME * hppa: Rewrite configuration to support sub-architectures * m68k: Remove $(KERNELVERSION) suffix from KERNELNAME * loong64: Add support for loong64 (Closes: #1057713) . [ Samuel Thibault ] * Add hurd-amd64 support. . [ Colin Watson ] * Clarify that partman-auto-recipe.txt is written using BNF. . [ Helmut Grohne ] * extend merge-usr tool to cover base-files functionality . [ Steve McIntyre ] * i386 is no longer supported for Secure Boot. + Disable SB in i386.cfg + Remove Build-Depends on shim-signed and grub-efi-ia32-signed there Checksums-Sha1: 84465c3d35228ead7517dba6243adb007d858639 4000 debian-installer_20240914.dsc b21a18eea2f9930e519a384b594f5056e7ece8be 1181256 debian-installer_20240914.tar.xz f23d0e0e46bdcfd13a3ae58df8d1d7d861264646 17265 debian-installer_20240914_source.buildinfo Checksums-Sha256: 4000105b10a84e3265b0e2021e3d946234875612e115b0b1f31e6e1ba0aeea67 4000 debian-installer_20240914.dsc fc7a5b5ceadff5158881fcac0969d50494da35144360bd5f5031699fd5c3e06c 1181256 debian-installer_20240914.tar.xz 44eb0b75059ff208a48414256c04c9563e6666ad731173a1f35331c60d01b7e7 17265 debian-installer_20240914_source.buildinfo Files: 504a782e5c8f2e47c14dd8effe731717 4000 devel optional debian-installer_20240914.dsc a7f5d1ff7b84d716416595ae8087590b 1181256 devel optional debian-installer_20240914.tar.xz dadf9087a750010db85253b915fabf08 17265 devel optional debian-installer_20240914_source.buildinfo -----BEGIN PGP SIGNATURE----- iQJEBAEBCgAuFiEEtg6/KYRFPHDXTPR4/5FK8MKzVSAFAmblb5QQHGtpYmlAZGVi aWFuLm9yZwAKCRD/kUrwwrNVIGeBD/9dPuVfF6y/kq8zAtA1JyIciPq/AUCT0rJo ulZBOXcjryfi2xtynoyOVocujovvqswFNa4s7r+uoIuckq4Eqe+oIVphZH8ZqW2k 3kGmypulFAkXb8FwXpGd4tJKyP0hgxeijvznGWy6Hs1WSpiMIO+mvHeQwrBX0Pyw rDg+La0J0XM/m6LViwr+OOCPtOV2QGJ3w1orLnwyrsgoojHHNDzKzNYdGPYOUAGi yKdsL9I600GYrZO9GvYL21IxihegurEmoj/bTizpgEaaXzj4QiV1Fm8Jms3x+H1d qkyQgW7XhJHnoPRssKufSJmvkvwTpoKNtdrazgU8xLmuTqQ4jGjksJwubD7jOPDL K/oXq3VKG/w3Jvbikkpl/7VP3z4D+Va8gIOewmLgbRCM8pUDRu4fjisQTpNizI2l ZYehJAJDMbSB5T/ztONr2PdC96BMQdME2kFLT7rk67VNYY9YDHQMCNN3Oqx0SUtD e+MGCvnlWRktZJvSXTZqAyVOtlJCc+q4tkVQol0f+qdSRIvs8onTRoz7n2GZJDDc AVYv064N6b9ixJu8N/rVG3n4Vjj2NWEKCwVwgHiqwyI40ru82G2HbVlFP8mC4VWp Oj0Sg8GNFmKs8PqeEhpxnIqCi5Xh+J6KXsRy7BcIEelI6peNdvxSe/dStGJMgUJ6 U+L5cuzyWQ== =ny5A -----END PGP SIGNATURE-----Attachment: pgpuxU9GZqiWN.pgp
Description: PGP signature
--- End Message ---