[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#796591: marked as done (debian-installer: beep on x86 UEFI for accessibility)



Your message dated Fri, 28 Aug 2015 07:18:58 +0000
with message-id <E1ZVDwA-0003vk-51@franck.debian.org>
and subject line Bug#796591: fixed in debian-installer 20150828
has caused the Debian Bug report #796591,
regarding debian-installer: beep on x86 UEFI for accessibility
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.)


-- 
796591: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=796591
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: debian-installer
Version: 20150718
Severity: normal

Hello,

As raised during the accessibility talk, we need to emit a beep at boot
menu in the UEFI case too (grub menu).

I don't really know how to test this (can qemu emulate it?), so for
now I'm just attaching a patch which should be working, but which is
not tested.  Also, we probably need to make it conditionalized under
official uploads like was done for the syslinux prompt.

Samuel

-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'buildd-unstable'), (500, 'unstable'), (500, 'stable'), (1, 'buildd-experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.1.0 (SMP w/8 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: systemd (via /run/systemd/system)

-- no debconf information
diff --git a/build/boot/hurd/grub-hurd-cdrom.cfg b/build/boot/hurd/grub-hurd-cdrom.cfg
index b50ceb5..a7753b4 100644
--- a/build/boot/hurd/grub-hurd-cdrom.cfg
+++ b/build/boot/hurd/grub-hurd-cdrom.cfg
@@ -26,6 +26,8 @@ else
 	set menu_color_highlight=white/blue
 fi
 
+play 480 440 1
+
 menuentry "Debian GNU/Hurd installer boot menu" {
 	true
 }
diff --git a/build/boot/hurd/grub-hurd-pxe.cfg b/build/boot/hurd/grub-hurd-pxe.cfg
index b5c9fc3..1f6031e 100644
--- a/build/boot/hurd/grub-hurd-pxe.cfg
+++ b/build/boot/hurd/grub-hurd-pxe.cfg
@@ -17,6 +17,8 @@ else
 	set menu_color_highlight=white/blue
 fi
 
+play 480 440 1
+
 menuentry "Debian GNU/Hurd installer boot menu" {
 	true
 }
diff --git a/build/boot/kfreebsd/grub-kfreebsd-cdrom.cfg b/build/boot/kfreebsd/grub-kfreebsd-cdrom.cfg
index c252410..202b3d7 100644
--- a/build/boot/kfreebsd/grub-kfreebsd-cdrom.cfg
+++ b/build/boot/kfreebsd/grub-kfreebsd-cdrom.cfg
@@ -26,6 +26,8 @@ else
 	set menu_color_highlight=white/blue
 fi
 
+play 480 440 1
+
 menuentry "Debian GNU/kFreeBSD installer boot menu" {
 	true
 }
diff --git a/build/boot/kfreebsd/grub-kfreebsd-pxe.cfg b/build/boot/kfreebsd/grub-kfreebsd-pxe.cfg
index 03f242b..587152e 100644
--- a/build/boot/kfreebsd/grub-kfreebsd-pxe.cfg
+++ b/build/boot/kfreebsd/grub-kfreebsd-pxe.cfg
@@ -17,6 +17,8 @@ else
 	set menu_color_highlight=white/blue
 fi
 
+play 480 440 1
+
 menuentry "Debian GNU/kFreeBSD installer boot menu" {
 	true
 }
diff --git a/build/boot/x86/grub/grub-efi.cfg b/build/boot/x86/grub/grub-efi.cfg
index 759076c..79f07da 100644
--- a/build/boot/x86/grub/grub-efi.cfg
+++ b/build/boot/x86/grub/grub-efi.cfg
@@ -17,3 +17,4 @@ else
   set menu_color_highlight=white/blue
 fi
 
+play 480 440 1
diff --git a/build/config/hurd.cfg b/build/config/hurd.cfg
index 4ac8965..d32a919 100644
--- a/build/config/hurd.cfg
+++ b/build/config/hurd.cfg
@@ -33,7 +33,7 @@ GRUB_CFG_PXE=boot/hurd/grub-hurd-pxe.cfg
 # GRUB modules
 GRUB_PLATFORM=i386-pc
 GRUB_MODDIR=/usr/lib/grub/$(GRUB_PLATFORM)
-GRUB_MODULES_PXE=pxe tftp multiboot cpuid echo gfxterm gfxterm_background gzio minicmd normal png vbe
+GRUB_MODULES_PXE=pxe tftp multiboot cpuid echo play gfxterm gfxterm_background gzio minicmd normal png vbe
 
 # Location for Xen example configuration.
 XENCFG = $(SOME_DEST)/$(EXTRANAME)debian.cfg
diff --git a/build/config/kfreebsd.cfg b/build/config/kfreebsd.cfg
index b8eddd1..b549739 100644
--- a/build/config/kfreebsd.cfg
+++ b/build/config/kfreebsd.cfg
@@ -18,7 +18,7 @@ GRUB_CFG_PXE=boot/kfreebsd/grub-kfreebsd-pxe.cfg
 # GRUB modules
 GRUB_PLATFORM=i386-pc
 GRUB_MODDIR=/usr/lib/grub/$(GRUB_PLATFORM)
-GRUB_MODULES_PXE=pxe tftp bsd cpuid echo gfxterm gfxterm_background gzio minicmd normal png vbe
+GRUB_MODULES_PXE=pxe tftp bsd cpuid echo play gfxterm gfxterm_background gzio minicmd normal png vbe
 
 # Location for Xen example configuration.
 XENCFG = $(SOME_DEST)/$(EXTRANAME)debian.cfg

--- End Message ---
--- Begin Message ---
Source: debian-installer
Source-Version: 20150828

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 796591@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: SHA1

Format: 1.8
Date: Fri, 28 Aug 2015 09:07:40 +0200
Source: debian-installer
Binary: debian-installer
Architecture: source
Version: 20150828
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team <debian-boot@lists.debian.org>
Changed-By: Cyril Brulebois <kibi@debian.org>
Description:
 debian-installer - Debian Installer documentation
Closes: 796591
Changes:
 debian-installer (20150828) unstable; urgency=medium
 .
   [ Didier Raboud ]
   * In the syslinux menu tree:
     - Add syslinux machinery to use ifcpu64.c32 on multi-arch CDs, for CPU
       64-bit capability detection
     - Swap one-key shortcuts to let them access the graphical variants
     - Add the correct one-key shortcuts to 32-bit variant
     - Replace (32 bits) prefix mentions by the correct "32-bit" in parentheses
     - Shorten the 32-bits menu label to use the i386 Debian architecture name,
       to make the whole label short enough
     - Shorten the 32-bit Graphical automated install entry label
     - Drop unused non-gtk speech synthesis entries
 .
   [ Samuel Thibault ]
   * Add beep to UEFI x86 boot menu (Closes: #796591).
   * Add 's' shortcut for speech to UEFI x86 boot menu.
 .
   [ Aurelien Jarno ]
   * Drop r4k-ip22, r5k-ip32 and sb1-bcm91250a images on mips.
   * Drop sb1-bcm91250a images on mipsel.
 .
   [ Cyril Brulebois ]
   * Update translation-status for the release.
Checksums-Sha1:
 6b34a3f9218ee8f3980610efc02dfaed10ff2270 3439 debian-installer_20150828.dsc
 714ccab2e88f0fe6581d2274d2ed23a4a0c91c7a 1380470 debian-installer_20150828.tar.gz
Checksums-Sha256:
 1ea572c5825a9c675d4c1a03e12fe20beb8c1f0af402a80e8818dd698ca169a3 3439 debian-installer_20150828.dsc
 0f58d218c3a75edee2f36fdaded695a7e0b54e7a2a873db83be297be07a84a5a 1380470 debian-installer_20150828.tar.gz
Files:
 1362165db9af1f34534374f7dd3564de 3439 devel optional debian-installer_20150828.dsc
 78164f76fd7e5e81f5b34c29682df018 1380470 devel optional debian-installer_20150828.tar.gz

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1

iQIcBAEBAgAGBQJV4AmKAAoJEP+RSvDCs1UgQeUP/jWzORx5KWFj2o0UFtH9Rboe
G5F+Xm8QZoQr+2PJ2+JfneBL49Efd+31OU1JkTe2YKXPh/Iay+qQdtNdTvRjsCRH
q6p0VnSPJ5G522Bps4spJpjKQH5EQcK7Gylr8w1ZNm1nOCbpvVdZKj0sQi4Fd3Gd
LPcGdiSsaNDQxXGf2x12hSV9oD5ACJxO7LdPyyzhjuR3so8p870/tL4iv1dKszHi
ON17yS0jTmZMv1ze/4sbpcMR+hP3i6xSJgDpdR/+5Q2K98Zy4wkjHvedIhcJexXq
FcqQMhmOrFYT3zGTFRaxfyKx8gE2+l5LhV+cTvzt/D8IgAZmlMkl15fWPgGBDQll
QDA6hV+eGYWWOqrOHI4PPogclSMdeeA8KpKjNARRCN10IiCDEu6eG+ncBecQg/Kb
j2WFicWgNx1RLRVXBlC0QvzcE8DeUJummEb9nkSGCYwfmRRYylmVDJdqujyVv7xZ
RxMTUZ/yjUIsW7e+oaefRUd4o/boKq4bML0BeO/SnqJAec69wdpG3aGFodTbPJot
PwhaovuqfgR/zXNuWZ9FhdoAJZ2CiJYOMO2MWJIjIkX/MfjiUDA1ZMys2cyoFHrU
oDUVYvPn7y+ayiAfIos0QaAf7ngLo8ivbCqOkTKXLY2TOaEmsWdoa3Y90WWK2mvI
QTdE6HvXMSn/dnpGLpSN
=0Q0/
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: