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 1QGMkX-0007vM-1J for garchives@archives.gentoo.org; Sun, 01 May 2011 02:51:09 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3096A1C08C; Sun, 1 May 2011 02:49:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 00D3D1C08C for ; Sun, 1 May 2011 02:49:11 +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 B10462AC014 for ; Sun, 1 May 2011 02:49:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 1FC9F8050A for ; Sun, 1 May 2011 02:49:11 +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: <3ca14c1c816e098e0ce8719ab962a01d51e8462a.williamH@gentoo> Subject: [gentoo-commits] proj/livecd-tools:master 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: 3ca14c1c816e098e0ce8719ab962a01d51e8462a Date: Sun, 1 May 2011 02:49:11 +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: 993089f92c8c4b13a2d87b97b98dcc8b commit: 3ca14c1c816e098e0ce8719ab962a01d51e8462a Author: William Hubbs gentoo org> AuthorDate: Sun Feb 13 19:22:31 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun May 1 02:46:14 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/livecd-tools.= git;a=3Dcommit;h=3D3ca14c1c start xdm from autoconfig We need to start xdm ourselves instead of allowing it to start in the default order. This allows us to not start it when X is not requested by the user or when speakup or brltty is requested. --- autoconfig | 6 +----- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/autoconfig b/autoconfig index 3d3c71f..9eec5ce 100755 --- a/autoconfig +++ b/autoconfig @@ -278,6 +278,7 @@ list_services() { svcs=3D"${svcs} $(check_svc ${PASSWD} pwgen)" svcs=3D"${svcs} $(check_svc ${PCMCIA} pcmcia)" svcs=3D"${svcs} $(check_svc ${SSHD} sshd)" + svcs=3D"${svcs} $(check_svc ${X11} xdm)" =20 ### TODO: make this baselayout-2 compatible ### TODO: make these checks accurate using service dependencies @@ -602,11 +603,6 @@ start() { =20 [ -n "${XDESC}" ] && einfo "VideoCard: ${HILITE}${XDESC}${NORMAL}" =20 - if ! yesno "${X11}" - then - touch /etc/.noxdm - fi - killall hwsetup 2>/dev/null echo "6" > /proc/sys/kernel/printk }