Your message dated Sun, 08 Feb 2015 22:49:06 +0000 with message-id <[email protected]> and subject line Bug#774536: fixed in brltty 5.2~20141018-3 has caused the Debian Bug report #774536, regarding grub2-common: Could brltty uncomment GRUB_INIT_TUNE 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.) -- 774536: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=774536 Debian Bug Tracking System Contact [email protected] with problems
--- Begin Message ---Package: grub2-common Version: 2.02~beta2-19 Severity: normal Dear Maintainer, *** Reporter, please consider answering these questions, where appropriate *** * What led up to the situation? I install Debian Jessie. I proceed in braille, I enabled Desktop environment, MATE. It results when Debian starts, the lightdm has Orca speaking, the desktop speaks, and brltty is on. * What exactly did you do (or not do) that was effective (or ineffective)? I want at boot time, grub beeps to inform a blind person that it's possible to choose his OS in grub. So I change GRUB_INIT_TUNE in /etc/default/grub, I uncomment it. * What was the outcome of this action? After I installed Debian, before doing what above said, GRUB doesn't beep. However brltty script changes now things in lightdm-gtk-greeter and MATE. * What outcome did you expect instead? I expect GRUB to beep. Actually Debian knows I use braille, enables what's needed for lightdm and MATE, could it enable GRUB beep? For this, brltty should be able to uncomment GRUB_INIT_TUNE in /etc/default/grub. *** End of the template - remove these template lines *** Regards, -- Package-specific info: *********************** BEGIN /proc/mounts /dev/disk/by-uuid/564293a0-7733-4585-a0e7-91daefce7f4a / ext4 rw,relatime,errors=remount-ro,data=ordered 0 0 /dev/sda2 /home ext4 rw,relatime,data=ordered 0 0 *********************** END /proc/mounts *********************** BEGIN /boot/grub/grub.cfg # # DO NOT EDIT THIS FILE # # It is automatically generated by grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### if [ -s $prefix/grubenv ]; then set have_grubenv=true load_env fi if [ "${next_entry}" ] ; then set default="${next_entry}" set next_entry= save_env next_entry set boot_once=true else set default="0" fi if [ x"${feature_menuentry_id}" = xy ]; then menuentry_id_option="--id" else menuentry_id_option="" fi export menuentry_id_option if [ "${prev_saved_entry}" ]; then set saved_entry="${prev_saved_entry}" save_env saved_entry set prev_saved_entry= save_env prev_saved_entry set boot_once=true fi function savedefault { if [ -z "${boot_once}" ]; then saved_entry="${chosen}" save_env saved_entry fi } function load_video { if [ x$feature_all_video_module = xy ]; then insmod all_video else insmod efi_gop insmod efi_uga insmod ieee1275_fb insmod vbe insmod vga insmod video_bochs insmod video_cirrus fi } terminal_input console terminal_output console if [ "${recordfail}" = 1 ] ; then set timeout=-1 else if [ x$feature_timeout_style = xy ] ; then set timeout_style=menu set timeout=0 # Fallback normal timeout code in case the timeout_style feature is # unavailable. else set timeout=0 fi fi play 480 440 1 ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### set menu_color_normal=cyan/blue set menu_color_highlight=white/blue ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/10_linux ### function gfxmode { set gfxpayload="${1}" } set linux_gfx_mode= export linux_gfx_mode menuentry 'Debian GNU/Linux' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-564293a0-7733-4585-a0e7-91daefce7f4a' { load_video insmod gzio if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi insmod part_msdos insmod ext2 set root='hd0,msdos1' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 564293a0-7733-4585-a0e7-91daefce7f4a else search --no-floppy --fs-uuid --set=root 564293a0-7733-4585-a0e7-91daefce7f4a fi echo 'Loading Linux 3.16.0-4-amd64 ...' linux /boot/vmlinuz-3.16.0-4-amd64 root=UUID=564293a0-7733-4585-a0e7-91daefce7f4a ro quiet echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.16.0-4-amd64 } submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-advanced-564293a0-7733-4585-a0e7-91daefce7f4a' { menuentry 'Debian GNU/Linux, with Linux 3.16.0-4-amd64' --class debian --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.16.0-4-amd64-advanced-564293a0-7733-4585-a0e7-91daefce7f4a' { load_video insmod gzio if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi insmod part_msdos insmod ext2 set root='hd0,msdos1' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 564293a0-7733-4585-a0e7-91daefce7f4a else search --no-floppy --fs-uuid --set=root 564293a0-7733-4585-a0e7-91daefce7f4a fi echo 'Loading Linux 3.16.0-4-amd64 ...' linux /boot/vmlinuz-3.16.0-4-amd64 root=UUID=564293a0-7733-4585-a0e7-91daefce7f4a ro quiet echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.16.0-4-amd64 } } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/20_linux_xen ### ### END /etc/grub.d/20_linux_xen ### ### BEGIN /etc/grub.d/30_os-prober ### ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_uefi-firmware ### ### END /etc/grub.d/30_uefi-firmware ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ### ### BEGIN /etc/grub.d/41_custom ### if [ -f ${config_directory}/custom.cfg ]; then source ${config_directory}/custom.cfg elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then source $prefix/custom.cfg; fi ### END /etc/grub.d/41_custom ### *********************** END /boot/grub/grub.cfg *********************** BEGIN /proc/mdstat cat: /proc/mdstat: No such file or directory *********************** END /proc/mdstat *********************** BEGIN /dev/disk/by-id total 0 lrwxrwxrwx 1 root root 9 Jan 3 15:22 ata-Hitachi_HTS723232A7A364_E3834563JH232N -> ../../sda lrwxrwxrwx 1 root root 10 Jan 3 15:22 ata-Hitachi_HTS723232A7A364_E3834563JH232N-part1 -> ../../sda1 lrwxrwxrwx 1 root root 10 Jan 3 15:22 ata-Hitachi_HTS723232A7A364_E3834563JH232N-part2 -> ../../sda2 lrwxrwxrwx 1 root root 9 Jan 4 01:53 ata-hp_CDDVDW_TS-L633J_R8GK6GMB703013 -> ../../sr0 lrwxrwxrwx 1 root root 9 Jan 3 15:22 wwn-0x5000cca61de30874 -> ../../sda lrwxrwxrwx 1 root root 10 Jan 3 15:22 wwn-0x5000cca61de30874-part1 -> ../../sda1 lrwxrwxrwx 1 root root 10 Jan 3 15:22 wwn-0x5000cca61de30874-part2 -> ../../sda2 *********************** END /dev/disk/by-id *********************** BEGIN /dev/disk/by-uuid total 0 lrwxrwxrwx 1 root root 10 Jan 3 15:22 21d692d5-abdb-4285-980d-1fd7834a7d8d -> ../../sda2 lrwxrwxrwx 1 root root 10 Jan 3 15:22 564293a0-7733-4585-a0e7-91daefce7f4a -> ../../sda1 *********************** END /dev/disk/by-uuid -- System Information: Debian Release: 8.0 APT prefers testing-updates APT policy: (500, 'testing-updates'), (500, 'testing'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages grub2-common depends on: ii dpkg 1.17.22 ii grub-common 2.02~beta2-19 ii install-info 5.2.0.dfsg.1-6 ii libc6 2.19-13 ii libdevmapper1.02.1 2:1.02.90-2 ii liblzma5 5.1.1alpha+20120614-2+b3 grub2-common recommends no packages. grub2-common suggests no packages. -- no debconf information
--- End Message ---
--- Begin Message ---Source: brltty Source-Version: 5.2~20141018-3 We believe that the bug you reported is fixed in the latest version of brltty, 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. Samuel Thibault <[email protected]> (supplier of updated brltty 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: SHA512 Format: 1.8 Date: Sun, 08 Feb 2015 22:58:05 +0100 Source: brltty Binary: brltty brltty-dbg libbrlapi0.6 libbrlapi-dbg libbrlapi-dev libbrlapi-jni libbrlapi-java brltty-flite brltty-speechd brltty-espeak brltty-udeb brltty-x11 xbrlapi cl-brlapi python-brlapi python3-brlapi Architecture: source amd64 all Version: 5.2~20141018-3 Distribution: unstable Urgency: medium Maintainer: Debian Accessibility Team <[email protected]> Changed-By: Samuel Thibault <[email protected]> Description: brltty - Access software for a blind person using a braille display brltty-dbg - debugging symbols for brltty brltty-espeak - Access software for a blind person - espeak driver brltty-flite - Access software for a blind person - Flite speech driver brltty-speechd - Access software for a blind person - Speech Dispatcher driver brltty-udeb - Access software for a blind person using a braille display (udeb) brltty-x11 - Access software for a blind person using a braille display - X11 cl-brlapi - Common Lisp bindings for BrlAPI libbrlapi-dbg - braille display access via BRLTTY - shared library debugging symb libbrlapi-dev - Library for communication with BRLTTY - static libs and headers libbrlapi-java - Java bindings for BrlAPI libbrlapi-jni - Java bindings for BrlAPI (native library) libbrlapi0.6 - braille display access via BRLTTY - shared library python-brlapi - Braille display access via BRLTTY - Python bindings python3-brlapi - Braille display access via BRLTTY - Python3 bindings xbrlapi - Access software for a blind person using a braille display - xbrl Closes: 774536 777377 Changes: brltty (5.2~20141018-3) unstable; urgency=medium . * brltty-udeb.prebaseconfig: Make grub beep at boot when brltty was used during installation (Closes: #774536). * patches/git-2421eda: Fix xbrlapi window path computation (Closes: #777377). * control: Break old version of Orca which does not have the same fix as xbrlapi. Checksums-Sha1: 52c5716cd0f21254d113b7d3c3c40fbfce60d8e2 3245 brltty_5.2~20141018-3.dsc 14e0d9b56afaabb3a4c8013297f32f1ff37f251b 26760 brltty_5.2~20141018-3.debian.tar.xz 7aaed0cf02527a605e50e379494a931074acc09f 1178638 brltty_5.2~20141018-3_amd64.deb 36a5aa7f4bc89b6e9e02b70a08b3f6d103cc287b 702568 brltty-dbg_5.2~20141018-3_amd64.deb f5e451131c392f682979a889a07259b09d760159 80950 libbrlapi0.6_5.2~20141018-3_amd64.deb ef4ce864c5ab73cd0ff4d61e727b2d100455de4f 316396 libbrlapi-dbg_5.2~20141018-3_amd64.deb 395a3dc715ae6f090f183291f42131e23994b855 191932 libbrlapi-dev_5.2~20141018-3_amd64.deb 2820eb95266cea451896adfdfbef90958c6e135b 73140 libbrlapi-jni_5.2~20141018-3_amd64.deb e7bc296f7332d63136ff0379c7b6d61182dee9c4 68178 brltty-flite_5.2~20141018-3_amd64.deb b54bc7a67d13ffbbafa2f66e3e8224fe72514772 68708 brltty-speechd_5.2~20141018-3_amd64.deb 700cc5b5c98cda947077c6ba37c76a0a3e1ce49d 68206 brltty-espeak_5.2~20141018-3_amd64.deb b5d4c420b418c2018e6cf8ac31f9c27e614c34d8 82340 brltty-x11_5.2~20141018-3_amd64.deb 8f1fbdef1b5d56417a3ce02cfe296905d9ac34cb 116684 xbrlapi_5.2~20141018-3_amd64.deb 7db83cf3a208752b5cc4986e390427ebc6b8fd5b 117866 python-brlapi_5.2~20141018-3_amd64.deb 0de3510280e3bb5fbdb9d2eb2e60cb9498290d18 116252 python3-brlapi_5.2~20141018-3_amd64.deb 90d1eb63814e8a84515526c30d946f125c6ee7f9 122154 libbrlapi-java_5.2~20141018-3_all.deb f759bca858060528e111adff88a8abf8258160a3 68110 cl-brlapi_5.2~20141018-3_all.deb 0b0ecdfca85c3d03b9728104c69f252fb7e0afb7 284522 brltty-udeb_5.2~20141018-3_amd64.udeb Checksums-Sha256: 26865a74c30a45b167500df92eceac7b5aac568e26e175c7c0bb8ea846ad39a0 3245 brltty_5.2~20141018-3.dsc 4a713f7a024737591b80bc88f747c4a1eae3fb32d21354dcef50e0c9b532051a 26760 brltty_5.2~20141018-3.debian.tar.xz 78a75296a739a2adf26ed72b40febe590daebcd006eee7226f66949d11c8338d 1178638 brltty_5.2~20141018-3_amd64.deb 275d740462f77ee2ce113bebdefade8b92f42674d8526cb7b2f76df0b987b6c8 702568 brltty-dbg_5.2~20141018-3_amd64.deb 8cb61056c0bf3cfc7fcb904c1a16357e38c93771bcc3bb86e4c6d3972c81c03d 80950 libbrlapi0.6_5.2~20141018-3_amd64.deb 454c4fde7ae0256a35c680cb223826c4f815609c0e1140cb1cd4b258c899d76b 316396 libbrlapi-dbg_5.2~20141018-3_amd64.deb 67ced5dccb96852ffc682e3cbfd31fa8e874592b31256fd98a0e44af6f02c2fc 191932 libbrlapi-dev_5.2~20141018-3_amd64.deb 8d894ce96489cec998b833b2db6920bd66d23c296157c67642201bc4318c0001 73140 libbrlapi-jni_5.2~20141018-3_amd64.deb 49c9e9e4cbecb86b5221909a31dd9acd9d3184904911ab7bd1207e8c2f3d5c50 68178 brltty-flite_5.2~20141018-3_amd64.deb ba395bf805244250f8070b35f8bba26072106e001d49e8e554e12bef5aae0c43 68708 brltty-speechd_5.2~20141018-3_amd64.deb 27db548945ae16d8669a25c955cf068d6ca73c2894cc1d05fa9d7c51eb518001 68206 brltty-espeak_5.2~20141018-3_amd64.deb dfd6d0e31d8b52adb600d0db69e0b399ff10b7c4837e6a0c4372d5978129da4e 82340 brltty-x11_5.2~20141018-3_amd64.deb a55e188932849cde211acd76562219805d76b2b486f9d1e27c773f6b51910f42 116684 xbrlapi_5.2~20141018-3_amd64.deb 49467c0d15bfda045f36dd170ff65f806f99526d5e348850a065459de11b8d81 117866 python-brlapi_5.2~20141018-3_amd64.deb 374bce5c960311d5902c49b2f72079593ef34959658dbcd40165f7f4272f85e3 116252 python3-brlapi_5.2~20141018-3_amd64.deb 31f82306a19ee55bf8bc0f84638572ff23731d69c47b9f66a47a038e1232a76d 122154 libbrlapi-java_5.2~20141018-3_all.deb c2de6ba87c664a51f2873d38b7b3e3811d7f8aff1d87d47eb71c938f286c161b 68110 cl-brlapi_5.2~20141018-3_all.deb 24664c710e7c113fccb5b545a4563beb51e21efa0134450f0b11ba17488b4942 284522 brltty-udeb_5.2~20141018-3_amd64.udeb Files: 93f9792ee613807a988330d6c59e9e95 3245 admin extra brltty_5.2~20141018-3.dsc ccb0f6ee0dfe31e8be66220eab119d59 26760 admin extra brltty_5.2~20141018-3.debian.tar.xz 71beeb95998d12b9e5fbbec2b7914266 1178638 admin extra brltty_5.2~20141018-3_amd64.deb 14003bf5036e64ef34b9d9221c170a59 702568 debug extra brltty-dbg_5.2~20141018-3_amd64.deb 4f496d9cf16674a610c14c638a9e50e4 80950 libs extra libbrlapi0.6_5.2~20141018-3_amd64.deb 649b8f56bee90aa7da4fde8b1bc9af9f 316396 debug extra libbrlapi-dbg_5.2~20141018-3_amd64.deb be45783a1f8c25887390bdc8026e6022 191932 libdevel extra libbrlapi-dev_5.2~20141018-3_amd64.deb 96f3b7d26c01c22b800a5e36f7b9aee3 73140 java extra libbrlapi-jni_5.2~20141018-3_amd64.deb fb367c9effcbf8116d44374dfa838398 68178 admin extra brltty-flite_5.2~20141018-3_amd64.deb ef1a3b90bf9f4299b752a5b34297b6c7 68708 admin extra brltty-speechd_5.2~20141018-3_amd64.deb d77150a4bacfe0252c3a125c7009c6eb 68206 admin extra brltty-espeak_5.2~20141018-3_amd64.deb 7450c8afa74c4dcca53f57aed386ab81 82340 admin extra brltty-x11_5.2~20141018-3_amd64.deb 0c82c816051d6cf83d22c8434131ca85 116684 admin extra xbrlapi_5.2~20141018-3_amd64.deb 6765fdd6747efe607814d2f0d21b02dc 117866 python extra python-brlapi_5.2~20141018-3_amd64.deb 00f57500f59910903b397bc6bb27e2a0 116252 python extra python3-brlapi_5.2~20141018-3_amd64.deb 34ec2081524c36e209ba95126ed119ba 122154 java extra libbrlapi-java_5.2~20141018-3_all.deb e83de5740e0b03326f728007b1179009 68110 lisp extra cl-brlapi_5.2~20141018-3_all.deb 8418991caaa94a817f75630d041da841 284522 debian-installer extra brltty-udeb_5.2~20141018-3_amd64.udeb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAEBCgAGBQJU1+GdAAoJEM8J0LDiiAQrYWkP/A8iPyYj+pvTpnd5vmrLswaE Z7OF/hFflkBqaf66Sqrb38pOkN94bE7hC+Sha75xBFgZ/wrXdd5x7WGK4SsY3BhK eQP/NHMTNJErGaRBgYD+1mcVwQKWO6r50vVq/kUHxBxbTrpAjBNzxrdocKew15SM XuVw83rTDGq+RcRtFjs0Yk95h8riTHs7hODbva9ZWu0/X135faUiKWqJGAhIVbXe DfnStLw+CW978z69zVzd+Ww66tRUMcE6MrWj6zLjXV4Dq/FDn0yaKXQRWo0ooWCL SRajC4y+x9Ts/6kP+w1y4Ut4QT49G/vEmWe6A4PXTdbjkal9h/Q12y2GbfecIBC5 yuzsjuuxryuxo2BTYogpIdBrT4qSPgDPcL+eHaAI0AObUdVRsbbSJEFVOluZkfxw Dr7NLqPX+o2Dm4y+L4KdRnvaqBxiqwZEG0sgkHiBK4e4FPnM7OvFADhacpaWtpwH ZlHhJzim/GTyDPXsZOfGw4ncKiPRl6ksWR3DtHFPPpFIU5xyX1DN/4vIFL72j+vv o5lWReAgc5sYVMVllFzX97Xa23uC8fBcqDh7FLMLjPerl5nGFxtAAGwJVVsfK+HY kYqoKGZCPR6NfH7bYzhE7neZ93cQNSG3Wy8oGrmPIAdNEdVwM8lOJgmGO22TC5aX rs9pb1l+/VbZjouOerSi =0BX0 -----END PGP SIGNATURE-----
--- End Message ---

