All of lore.kernel.org
 help / color / mirror / Atom feed
From: tom.zanussi@intel.com
To: yocto@yoctoproject.org, dvhart@linux.intel.com,
	kishore.k.bodke@intel.com
Subject: [PATCH 00/17] meta-intel: machine config cleanup, v2
Date: Mon, 21 Nov 2011 16:44:29 -0600	[thread overview]
Message-ID: <cover.1321915192.git.tom.zanussi@intel.com> (raw)

From: Tom Zanussi <tom.zanussi@intel.com>

This patchset cleans up the BSPs in meta-intel by having them use the
new ia32-base.inc file containing common BSP settings.

The following BSPs were build- and boot-tested: sugarbay, crownbay,
crownbay-noemgd, emenlow, and n450.  These represent all the main
variations and all were verified to work the same before as after.
This includes the n450, which wasn't able to start X either before
or after.

The other BSPs are the same or similar to those tested, so shouldn't
see any changes either, but will have to be tested later.

v2: Add common metadata to intel layer and add a layer dependency
section to BSP READMEs.

The following changes since commit 2a41ae377613b1f14829179f437aa76bbb1bc39e:
  Tom Zanussi (1):
        meta-intel: update kernel SRCREVs

are available in the git repository at:

  git://git.yoctoproject.org/meta-intel.git tzanussi/conf-cleanup-v2
  http://git.yoctoproject.org/cgit/cgit.cgi/meta-intel/log/?h=tzanussi/conf-cleanup-v2

Tom Zanussi (17):
  meta-intel: remove virtual/xserver-xf86 references
  meta-intel: make meta-intel itself a layer
  ia32-base.inc: new include file
  Have sugarbay.conf use the common ia32-base .inc file and remove the 
       open-coded machine settings.
  Have fishriver.conf use the common ia32-base .inc file and remove the
        open-coded machine settings.
  Have crownbay.conf use the common ia32-base .inc file and remove the 
       open-coded machine settings.
  Have crownbay-noemgd.conf use the common ia32-base .inc file and    
    remove the open-coded machine settings.
  Have fri2.conf use the common ia32-base .inc file and remove the    
    open-coded machine settings.
  Have fri2-noemgd.conf use the common ia32-base .inc file and    
    remove the open-coded machine settings.
  Have jasperforest.conf use the common ia32-base .inc file and    
    remove the open-coded machine settings.
  Have n450.conf use the common ia32-base .inc file and remove the    
    open-coded machine settings.
  Have romley.conf use the common ia32-base .inc file and remove the   
     open-coded machine settings.
  Have emenlow.conf use the common ia32-base .inc file and remove the  
      open-coded machine settings.
  meta-intel: update READMEs with new layer info
  meta-crownbay: remove common from BBFILES
  meta-fri2: remove common from BBFILES
  meta-intel: update READMEs with layer dependency list

 conf/layer.conf                                  |   10 ++++
 conf/machine/include/ia32-base.inc               |   58 ++++++++++++++++++++++
 meta-crownbay/README                             |   22 ++++++++-
 meta-crownbay/conf/layer.conf                    |    4 +-
 meta-crownbay/conf/machine/crownbay-noemgd.conf  |   43 ++--------------
 meta-crownbay/conf/machine/crownbay.conf         |   43 ++--------------
 meta-emenlow/README                              |   21 ++++++++-
 meta-emenlow/conf/machine/emenlow.conf           |   22 +--------
 meta-fishriver/README                            |   21 ++++++++-
 meta-fishriver/conf/machine/fishriver.conf       |   42 ++--------------
 meta-fri2/README                                 |   22 ++++++++-
 meta-fri2/conf/layer.conf                        |    4 +-
 meta-fri2/conf/machine/fri2-noemgd.conf          |   43 ++--------------
 meta-fri2/conf/machine/fri2.conf                 |   43 +++-------------
 meta-jasperforest/README                         |   25 ++++++++-
 meta-jasperforest/conf/machine/jasperforest.conf |   42 ++--------------
 meta-n450/ReleaseNotes                           |    4 ++
 meta-n450/conf/machine/n450.conf                 |   40 ++-------------
 meta-romley/README                               |   22 ++++++++-
 meta-romley/conf/machine/romley.conf             |   40 ++-------------
 meta-sugarbay/README                             |   22 ++++++++-
 meta-sugarbay/conf/machine/sugarbay.conf         |   43 ++--------------
 22 files changed, 270 insertions(+), 366 deletions(-)
 create mode 100644 conf/layer.conf
 create mode 100644 conf/machine/include/ia32-base.inc



             reply	other threads:[~2011-11-21 22:44 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-11-21 22:44 tom.zanussi [this message]
2011-11-21 22:44 ` [PATCH 01/17] meta-intel: remove virtual/xserver-xf86 references tom.zanussi
2011-11-21 22:44 ` [PATCH 02/17] meta-intel: make meta-intel itself a layer tom.zanussi
2011-11-21 22:44 ` [PATCH 03/17] ia32-base.inc: new include file tom.zanussi
2011-11-21 22:44 ` [PATCH 04/17] Have sugarbay.conf use the common ia32-base .inc file and remove the open-coded machine settings tom.zanussi
2011-11-21 22:44 ` [PATCH 05/17] Have fishriver.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 06/17] Have crownbay.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 07/17] Have crownbay-noemgd.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 08/17] Have fri2.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 09/17] Have fri2-noemgd.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 10/17] Have jasperforest.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 11/17] Have n450.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 12/17] Have romley.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 13/17] Have emenlow.conf " tom.zanussi
2011-11-21 22:44 ` [PATCH 14/17] meta-intel: update READMEs with new layer info tom.zanussi
2011-11-21 22:44 ` [PATCH 15/17] meta-crownbay: remove common from BBFILES tom.zanussi
2011-11-21 22:44 ` [PATCH 16/17] meta-fri2: " tom.zanussi
2011-11-21 22:44 ` [PATCH 17/17] meta-intel: update READMEs with layer dependency list tom.zanussi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=cover.1321915192.git.tom.zanussi@intel.com \
    --to=tom.zanussi@intel.com \
    --cc=dvhart@linux.intel.com \
    --cc=kishore.k.bodke@intel.com \
    --cc=yocto@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.