From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-gg0-f176.google.com (mail-gg0-f176.google.com [209.85.161.176]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id D7A6AE00282 for ; Tue, 17 Jul 2012 12:24:32 -0700 (PDT) Received: by ggnk4 with SMTP id k4so916474ggn.35 for ; Tue, 17 Jul 2012 12:24:32 -0700 (PDT) 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:subject :content-type:content-transfer-encoding; bh=YizJmSEyTklivBreH0qYdqOOIGdPlib6Kedd6JO/7Rc=; b=Qubn5ufKpoORcOcwXOS+ol2wGVNgIZke070VgAe41VvK3DnXKLbGvpb9z34mwxvJYQ ma9+h0J66Qk/Tt18LzrrTZPa8xMMtHOuK0ksgeXa/Jbov37/Nl9A/sf8HZiY3B3+mMAQ wgPf02e2IVy/EGmtQhdxI8tIoSRq6zDqbUwzFXrMffr2Ja8ZGsoNYyb4Rd3KWoL7cqxC 8jsUl0c7/Zi45R0VRSHW3+HPEzKiMajuFByZ9jy0Z5YGhtPKo6h8uG0QpaPiGj7h47tN kkMdqyNPUk5iwYz5W5ZQ7Afqyrgp3+F7zRGAVSohrFhzgdd9tNmkVofsa5SwS8LnkgoD DhVg== Received: by 10.236.117.97 with SMTP id i61mr2191492yhh.73.1342553072129; Tue, 17 Jul 2012 12:24:32 -0700 (PDT) Received: from [10.0.1.54] (nc-184-4-39-191.dhcp.embarqhsd.net. [184.4.39.191]) by mx.google.com with ESMTPS id a79sm36060130yhk.16.2012.07.17.12.24.30 (version=SSLv3 cipher=OTHER); Tue, 17 Jul 2012 12:24:30 -0700 (PDT) Message-ID: <5005BBEE.7000404@gmail.com> Date: Tue, 17 Jul 2012 15:24:30 -0400 From: Jim Abernathy User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:13.0) Gecko/20120615 Thunderbird/13.0.1 MIME-Version: 1.0 To: yocto@yoctoproject.org Subject: meta-baryon flexibility X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jul 2012 19:24:33 -0000 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit In an effort to explore how independent a layer could be to the underlying hardware, I took the meta-baryon NAS layer and got it built from master using the n450 BSP. With that working I decided to replace the n450 with sugarbay. While the n450 can support X11 and sato, it was not generated by design in the baryon build. However, when I changed to sugarbay, the build stops because X11 is needed. To get around this I had to comment out some things in the conf/machine/sugarbay.conf file in the BSP. #XSERVER ?= "${XSERVER_IA32_BASE} \ # ${XSERVER_IA32_EXT} \ # ${XSERVER_IA32_I965} \ # " #VA_FEATURES ?= "gst-va-intel va-intel" #MACHINE_EXTRA_RRECOMMENDS += "${VA_FEATURES}" Why didn't I have to do this in the n450?? JIm A