From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 337C11381F3 for ; Wed, 25 Sep 2013 22:30:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5C9DE0EE7; Wed, 25 Sep 2013 22:30:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 56BCEE0EE7 for ; Wed, 25 Sep 2013 22:30:16 +0000 (UTC) Received: from work-Thinkpad.pdx.edu (unknown [131.252.137.69]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: mattst88) by smtp.gentoo.org (Postfix) with ESMTPSA id 813F733ED6B; Wed, 25 Sep 2013 22:30:15 +0000 (UTC) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: thomas.stellard@amd.com, Matt Turner Subject: [gentoo-catalyst] [PATCH] Start the X server only once. Date: Wed, 25 Sep 2013 15:30:17 -0700 Message-Id: <1380148217-6077-1-git-send-email-mattst88@gentoo.org> X-Mailer: git-send-email 1.8.3.2 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: c8aef7c4-24e5-4c79-8192-0c4ace58ac8d X-Archives-Hash: f9fbd92cd049c20a6e1dcde521a597b9 From: Matt Turner Bugzilla: https://bugs.gentoo.org/show_bug.cgi?id=481236 --- livecd/files/livecd-bashrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livecd/files/livecd-bashrc b/livecd/files/livecd-bashrc index 983e657..9ea1fea 100644 --- a/livecd/files/livecd-bashrc +++ b/livecd/files/livecd-bashrc @@ -4,7 +4,7 @@ if [ ! "$(grep nox /proc/cmdline)" ] then if [ -x /usr/bin/X ] then - if [ -e /etc/startx ] + if [ -e /etc/startx -a $(tty) = "/dev/tty7" ]; then rm -f /etc/startx ##STARTX -- 1.8.3.2