From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from atl4mhfb03.myregisteredsite.com ([209.17.115.61]) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1UcX0A-0008S5-UP for openembedded-core@lists.openembedded.org; Wed, 15 May 2013 10:24:20 +0200 Received: from atl4mhob11.myregisteredsite.com (atl4mhob11.myregisteredsite.com [209.17.115.49]) by atl4mhfb03.myregisteredsite.com (8.14.4/8.14.4) with ESMTP id r4F85lln027546 for ; Wed, 15 May 2013 04:05:48 -0400 Received: from mail.hostingplatform.com ([10.30.71.206]) by atl4mhob11.myregisteredsite.com (8.14.4/8.14.4) with ESMTP id r4F85kKG006781 for ; Wed, 15 May 2013 04:05:46 -0400 Received: (qmail 7747 invoked by uid 0); 15 May 2013 08:05:46 -0000 Received: from unknown (HELO ?192.168.80.45?) (mike@milosoftware.com@88.159.208.100) by 0 with ESMTPA; 15 May 2013 08:05:46 -0000 Message-ID: <519341D9.6080104@topic.nl> Date: Wed, 15 May 2013 10:05:45 +0200 From: Mike Looijmans User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 MIME-Version: 1.0 To: openembedded-core@lists.openembedded.org References: <3388285.jCfN1Lj2u9@yiqingliang-pc> In-Reply-To: <3388285.jCfN1Lj2u9@yiqingliang-pc> Subject: Re: qt keyboard problem X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 May 2013 08:24:20 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 05/15/2013 08:19 AM, Yi Qingliang wrote: > I'm running qt application on yocto's qt image. cpu is s3c2442, like mini2440. > > the problem is: > > key event issued by pressing gpio-key eat by 'getty' (from busybox), > my application can't receive input event, > if I remove respawn 'getty' for tty1 in /etc/inittab, everything ok. I solved it by no longer starting the console login. Set the following in one of your .conf files (distro or local.conf): USE_VT = "0" SYSVINIT_ENABLED_GETTYS = "" You may need to rebuild initscripts for this to have effect.