From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yh0-f49.google.com (mail-yh0-f49.google.com [209.85.213.49]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 2E757E005B1 for ; Mon, 9 Dec 2013 12:01:16 -0800 (PST) Received: by mail-yh0-f49.google.com with SMTP id z20so3096782yhz.36 for ; Mon, 09 Dec 2013 12:01:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=Sk6FfJKtQBMgEtHYAoCE98WZFncH6RRoeJ41VSAqen0=; b=w/UhuUB2TS8YiQKN28MIoPd+rVwl8OOfRP3WrKQDdaYLC1qhupqdkoJVh6JeKeKs0T vCpUKg1a7XF+NwOewN9/XPkS3a7rbG1Dl8kYOmboMpg2OxKKiAOa7sAemxXvYiczxhtu wIscg79S/qpyoADZ48+ZM8VnAY7FJ2SmOq6zQ6IUK3jae8ZYa90Nsr/qXanedA256/LZ jb/M1yBXrap9GWUizv943xVw4qklAB/9kKgqaajYTCIL/yK4AOS87FQF+LpNi92Y3eOa Gf169Hx84w/9YCke7cc9XUBF/It5l/I423JHaJzL7EMxleeJbvv46lhW6PaN5yjuZJgh /J5A== X-Received: by 10.236.31.71 with SMTP id l47mr241242yha.121.1386619275124; Mon, 09 Dec 2013 12:01:15 -0800 (PST) Received: from goober.local ([75.76.228.60]) by mx.google.com with ESMTPSA id m29sm18293115yho.14.2013.12.09.12.01.13 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 09 Dec 2013 12:01:13 -0800 (PST) Message-ID: <52A62189.5090302@gmail.com> Date: Mon, 09 Dec 2013 14:01:13 -0600 From: John Weber User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:24.0) Gecko/20100101 Thunderbird/24.1.1 MIME-Version: 1.0 To: Otavio Salvador References: <1386609976-24625-1-git-send-email-mario@ossystems.com.br> <1386609976-24625-2-git-send-email-mario@ossystems.com.br> <52A60E58.3020800@gmail.com> In-Reply-To: Cc: "meta-freescale@yoctoproject.org" Subject: Re: [meta-fsl-arm-extra][PATCH v3 2/2] wandboard.inc: add touchscreen support X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Dec 2013 20:01:18 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 12/9/13 1:00 PM, Otavio Salvador wrote: > Hello John, > > On Mon, Dec 9, 2013 at 4:39 PM, John Weber wrote: >> On 12/9/13 11:26 AM, Mario Domenech Goulart wrote: >>> Signed-off-by: Mario Domenech Goulart >>> diff --git a/conf/machine/include/wandboard.inc >>> b/conf/machine/include/wandboard.inc >>> index dc64d89..5e83ad5 100644 >>> --- a/conf/machine/include/wandboard.inc >>> +++ b/conf/machine/include/wandboard.inc >>> @@ -7,4 +7,4 @@ PREFERRED_PROVIDER_virtual/kernel ?= "linux-wandboard" >>> SERIAL_CONSOLE = "115200 ttymxc0" >>> -MACHINE_FEATURES += "pci" >>> +MACHINE_FEATURES += "pci touchscreen" >> What does the touchscreen feature add? In the case of headless systems, how >> would a developer override this setting if they want to create an image >> without touch support? Would something like MACHINE_FEATURES_remove = >> "touchscreen" work? > It allows calibration for the images which supports it. This so > depends on the image it is uses. > > The _remove is supported by bitbake so it does work. > OK. No problem. Thanks.