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 1PohbP-0000Aq-Te for garchives@archives.gentoo.org; Sun, 13 Feb 2011 19:27:24 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE114E0BAE; Sun, 13 Feb 2011 19:27:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id ABB51E0BAE for ; Sun, 13 Feb 2011 19:27:16 +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 4A6221B4091 for ; Sun, 13 Feb 2011 19:27:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id A85A08006A for ; Sun, 13 Feb 2011 19:27:15 +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: 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: def73ce8ab55684c923b065e82208d7e70596f11 Date: Sun, 13 Feb 2011 19:27:15 +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: 261a98d08ffb31dae2dfc45a17ad0111 commit: def73ce8ab55684c923b065e82208d7e70596f11 Author: William Hubbs gentoo org> AuthorDate: Sun Feb 13 19:22:31 2011 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Feb 13 19:22:31 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/livecd-tools.= git;a=3Dcommit;h=3Ddef73ce8 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 }