From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pb0-f47.google.com (mail-pb0-f47.google.com [209.85.160.47]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id D320EE0087B for ; Mon, 20 Jan 2014 19:15:00 -0800 (PST) Received: by mail-pb0-f47.google.com with SMTP id rp16so2762759pbb.6 for ; Mon, 20 Jan 2014 19:15:00 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=Qr2J0OuRwmMhyTmZGt/XzgHIF+1D36+843MJWoC9cdw=; b=PwjbniBJSzfdGSYPdE1XXbl7flTH0CwtE6gUqIIejTVduxpUD+TO0OdAG3GtoWflVt 5zE2BZtL7IaKg1HCvdhhZmXk7oYnxtLAr/dQOpCP7X504B4lHRaC4UDrNe/x/vlOLjRv xWQgPuuo1yC/1aWqMWTSPM4XgWaxj7DGik5UVAcA4q6J1nJaCHGpbYZWTw/nUXZeyKWw Bea6lqzg+gnnL0vdJ7LLtO9lC4QXid3AbROjdQ/+SgDVM4QbdKIgqOSLi3rG2QIk5I6M ixGGZm1rlrtgC5Ahn9hk2iU5xqCtMJM398WXn6aqdwGuejh4GocVphmn8/AhXE3D9rmo WQwQ== X-Gm-Message-State: ALoCoQkzNgsnqpHlNmQuX8IqbSx+TpokV1zgfQZw9UIqEVhdEwZbaXsfGeBzNhcnvoyXctkmVnlY X-Received: by 10.66.122.201 with SMTP id lu9mr21951905pab.40.1390274100458; Mon, 20 Jan 2014 19:15:00 -0800 (PST) Received: from [192.168.1.8] (ip98-167-230-131.ph.ph.cox.net. [98.167.230.131]) by mx.google.com with ESMTPSA id vg1sm7495989pbc.44.2014.01.20.19.14.58 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 20 Jan 2014 19:14:59 -0800 (PST) Message-ID: <52DDE600.30207@boundarydevices.com> Date: Mon, 20 Jan 2014 20:14:08 -0700 From: Eric Nelson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Alok Kumar References: <52DD4D04.3070301@boundarydevices.com> In-Reply-To: Cc: meta-freescale@yoctoproject.org Subject: Re: 3.10.17-1.0.0_beta meta-fsl-bsp-release layer 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: Tue, 21 Jan 2014 03:15:03 -0000 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Hi Alok, On 01/20/2014 09:44 AM, Alok Kumar wrote: > Hi Eric, > > I am not sure if I understand it. my apology. > No sweat. Over a year in and I'm still figuring things out... > I am following this > http://wiki.wandboard.org/index.php/Getting_started_with_Yocto_on_Wandboard > > and took stable dora branch. > I'd start with Daiane's docs on i.MX Community: http://layers.openembedded.org/layerindex/branch/master/layer/meta-gnome/ And O.S.Systems that describes how to specifically build for Nitrogen6x: http://www.ossystems.com.br/blog/2013/04/15/yocto-with-boundary-devices-nitrogen6x-5-steps-only.html Make sure you use the "dora" branch instead of "dylan" though. > Now if I want to try chromium" beta, > a) should I got to development branch first and get everything from below. > > repo init -u > https://github.com/Freescale/fsl-community-bsp-platform -b master > Again, you should stick with "Dora" unless you need something specific in "master". > b) apply chromium recipe on this build and build the image. After the repo sync, you'll need to pull in the meta-browser layer: ~/yocto/sources$ git clone git://github.com/OSSystems/meta-browser.git And you'll need to add meta-browser and meta-gnome to your conf/bblayers.conf file: BBLAYERS = " \ ... ${BSPDIR}/sources/meta-openembedded/meta-gnome \ ${BSPDIR}/sources/meta-browser \ ... " And finally, you'll need to pull it into your build. The easy way is to add this to your local.conf file: IMAGE_INSTALL += " \ chromium \ " I'm not sure why, but when I went through these steps, I got complaints about the license for libav and was prompted to add this to local.conf: LICENSE_FLAGS_WHITELIST = "commercial" I think there's something screwy with that, though. The recipes in poky/meta/recipes-multimedia/libav/ appear to have a combination of GPL and LGPL licenses. > c) where should I test this on Sabrelite or nitorgen6x ? > We recommend the use of "nitrogen6x" for the MACHINE type. The resulting image will run on either the SABRE Lite or Nitrogen6X boards. Regards, Eric