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 -- To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org