Package: debian-cd Version: 3.1.17 Severity: important Tag: patch Hello,
I have just received a report from somebody who installed Jessie with speech synthesis help, only to get a non-talking installed system, because he was using CDs without network source. In tasks/jessie/forcd1 we have put brltty to avoid this issue for braille, and speakup for speech, but what we need there is actually espeakup (the software speech synthesis), not speakup (which denotes the kernel modules, which are actually already available in the standard linux-image package). Also, we need the alsa-utils package to make sure that audio levels are not muted by default. I have attached a patch to fix this. I guess this will be used for the next wheezy and jessie point release so the issue will be fixed there? Samuel -- System Information: Debian Release: stretch/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable-debug'), (500, 'oldoldstable'), (500, 'buildd-unstable'), (500, 'unstable'), (500, 'stable'), (500, 'oldstable'), (1, 'experimental-debug'), (1, 'buildd-experimental'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.3.0-1-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) -- Samuel R: Parce que ça renverse bêtement l'ordre naturel de lecture! Q: Mais pourquoi citer en fin d'article est-il si effroyable? R: Citer en fin d'article Q: Quelle est la chose la plus désagréable sur les groupes de news?
diff --git a/tasks/jessie/forcd1 b/tasks/jessie/forcd1 index 4d29b85..2e19ca2 100644 --- a/tasks/jessie/forcd1 +++ b/tasks/jessie/forcd1 @@ -10,7 +10,8 @@ libterm-readline-gnu-perl /* Accessibility stuff that is installed by base-installer * in certain situations, but too large for the netinst. */ brltty -speakup +espeakup +alsa-utils /* See rationale in #630805 */ apt-offline diff --git a/tasks/stretch/forcd1 b/tasks/stretch/forcd1 index 4d29b85..2e19ca2 100644 --- a/tasks/stretch/forcd1 +++ b/tasks/stretch/forcd1 @@ -10,7 +10,8 @@ libterm-readline-gnu-perl /* Accessibility stuff that is installed by base-installer * in certain situations, but too large for the netinst. */ brltty -speakup +espeakup +alsa-utils /* See rationale in #630805 */ apt-offline diff --git a/tasks/wheezy/forcd1 b/tasks/wheezy/forcd1 index df06a32..2b9c771 100644 --- a/tasks/wheezy/forcd1 +++ b/tasks/wheezy/forcd1 @@ -10,7 +10,8 @@ libterm-readline-gnu-perl /* Accessibility stuff that is installed by base-installer * in certain situations, but too large for the netinst. */ brltty -speakup +espeakup +alsa-utils /* See rationale in #630805 */ apt-offline

