From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Po87Q-00076l-Bj for garchives@archives.gentoo.org; Sat, 12 Feb 2011 05:34:04 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B73FE0912; Sat, 12 Feb 2011 05:33:57 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D8128E0912 for ; Sat, 12 Feb 2011 05:33:56 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 589941B438C for ; Sat, 12 Feb 2011 05:33:56 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 4970F8006A for ; Sat, 12 Feb 2011 05:33:55 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <0fcc8a96944d868a9d10d5df72181bdcdc4d0ff1.williamH@gentoo> Subject: [gentoo-commits] proj/livecd-tools:bl2-only commit in: / X-VCS-Repository: proj/livecd-tools X-VCS-Files: autoconfig X-VCS-Directories: / X-VCS-Committer: williamH X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 0fcc8a96944d868a9d10d5df72181bdcdc4d0ff1 Date: Sat, 12 Feb 2011 05:33:55 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 97e44f270c8adb3d95615584c04981af commit: 0fcc8a96944d868a9d10d5df72181bdcdc4d0ff1 Author: William Hubbs gentoo org> AuthorDate: Sat Feb 12 05:31:11 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Sat Feb 12 05:31:11 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/livecd-tools.= git;a=3Dcommit;h=3D0fcc8a96 load speakup module before espeakup is run This change will make sure that the speakup module is loaded into memory before espeakup is run in case the user wants to use software speech. --- autoconfig | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/autoconfig b/autoconfig index 5a9c679..ed588d6 100755 --- a/autoconfig +++ b/autoconfig @@ -255,6 +255,11 @@ list_services() { esac fi =20 + if yesno "${SPEAKUP}" + then + modprobe ${SPEAKUP_MODULE} ${SPEAKUP_OPTIONS} 2> /dev/null + fi + local svcs=3D"$(check_svc ${ACPI} acpid)" svcs=3D"${svcs} $(check_svc ${ALSA} alsasound)" svcs=3D"${svcs} $(check_svc ${ALSA} unmute)" @@ -405,11 +410,6 @@ start() { echo "0" > /proc/sys/kernel/printk get_config =20 - if yesno "${SPEAKUP}" - then - modprobe ${SPEAKUP_MODULE} ${SPEAKUP_OPTIONS} - fi - if yesno "${DETECT}" then ebegin "Hardware detection started"