Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Christopher Larson <kergoth@gmail.com>
To: openembedded-core@lists.openembedded.org
Cc: Christopher Larson <chris_larson@mentor.com>
Subject: [PATCH 00/10] external-csl-toolchain fixes and improvements
Date: Fri, 27 Jan 2012 11:13:38 -0600	[thread overview]
Message-ID: <cover.1327684024.git.chris_larson@mentor.com> (raw)

From: Christopher Larson <chris_larson@mentor.com>

- Fixes the external-csl-toolchain and corresponding tcmode to be compatible
  with current metadata (e.g. uses current providers), and ensures it works again
- Kills the arch and version specific bits, making it work fine with a number
  of different versions of the CodeSourcery arm, mips, ppc, and ia32 toolchains
- Makes the packaging match up with the packaging of the internal toolchain by
  leveraging the eglibc packaging .inc and ensuring our other packages are
  named correctly
- Extracts versioning information for both the recipe and emitted packages
  from the external toolchain at ConfigParsed time. This code is not pretty,
  largely kept as is from the Mentor internal external toolchain, but it does
  work. A future commit or commits will clean that up.

I've tested with with the fall 2010, spring 2011, and fall 2011 releases, for
the qemux86, qemuarm, qemumips, and qemuppc machines. I used buildhistory to
compare the packages and image content between internal and external, ensuring
that they match up with almost no differences.

The following changes since commit fba0459da7f274ae284d36b7fdbf2f9d10a52610:

  distro_tracking_fields: fix the typos in the field of maintainer. (2012-01-27 09:52:00 +0000)

are available in the git repository at:
  git://github.com/kergoth/oe-core external-toolchain

Christopher Larson (10):
      libc-package: fix typo in LOCALETREESRC default value
      eglibc-package.inc: don't include debug files in -pic
      binutils: fixes for build with an external csl toolchain
      external-csl-toolchain: fix critical PATH manipulation bug
      external-csl-toolchain: fixes for metadata changes
      external-csl-toolchain: avoid the hardcoded version/prefix
      external-csl-toolchain: support mips/ppc/arm
      external-csl-toolchain: support ia32
      external-csl-toolchain: leverage eglibc's packaging for more granular output
      external-csl-toolchain: extract version info from the toolchain

 meta/classes/libc-package.bbclass                  |    6 +-
 meta/conf/distro/include/csl-versions.inc          |  105 +++++++++++++++
 meta/conf/distro/include/tcmode-external-csl.inc   |  112 ++++++++++++++++
 .../distro/include/tcmode-external-csl2008q3.inc   |   28 ----
 meta/recipes-core/eglibc/eglibc-package.inc        |    2 +-
 meta/recipes-core/meta/external-csl-toolchain.bb   |  140 ++++++++++++++++++++
 .../meta/external-csl-toolchain_2008q3-72.bb       |   64 ---------
 meta/recipes-devtools/binutils/binutils.inc        |    5 +-
 8 files changed, 365 insertions(+), 97 deletions(-)
 create mode 100644 meta/conf/distro/include/csl-versions.inc
 create mode 100644 meta/conf/distro/include/tcmode-external-csl.inc
 delete mode 100644 meta/conf/distro/include/tcmode-external-csl2008q3.inc
 create mode 100644 meta/recipes-core/meta/external-csl-toolchain.bb
 delete mode 100644 meta/recipes-core/meta/external-csl-toolchain_2008q3-72.bb

Christopher Larson (10):
  libc-package: fix typo in LOCALETREESRC default value
  eglibc-package.inc: don't include debug files in -pic
  binutils: fixes for build with an external csl toolchain
  external-csl-toolchain: fix critical PATH manipulation bug
  external-csl-toolchain: fixes for metadata changes
  external-csl-toolchain: avoid the hardcoded version/prefix
  external-csl-toolchain: support mips/ppc/arm
  external-csl-toolchain: support ia32
  external-csl-toolchain: leverage eglibc's packaging for more granular
    output
  external-csl-toolchain: extract version info from the toolchain

 meta/classes/libc-package.bbclass                  |    6 +-
 meta/conf/distro/include/csl-versions.inc          |  105 +++++++++++++++
 meta/conf/distro/include/tcmode-external-csl.inc   |  112 ++++++++++++++++
 .../distro/include/tcmode-external-csl2008q3.inc   |   28 ----
 meta/recipes-core/eglibc/eglibc-package.inc        |    2 +-
 meta/recipes-core/meta/external-csl-toolchain.bb   |  140 ++++++++++++++++++++
 .../meta/external-csl-toolchain_2008q3-72.bb       |   64 ---------
 meta/recipes-devtools/binutils/binutils.inc        |    5 +-
 8 files changed, 365 insertions(+), 97 deletions(-)
 create mode 100644 meta/conf/distro/include/csl-versions.inc
 create mode 100644 meta/conf/distro/include/tcmode-external-csl.inc
 delete mode 100644 meta/conf/distro/include/tcmode-external-csl2008q3.inc
 create mode 100644 meta/recipes-core/meta/external-csl-toolchain.bb
 delete mode 100644 meta/recipes-core/meta/external-csl-toolchain_2008q3-72.bb

-- 
1.7.8.rc4




             reply	other threads:[~2012-01-27 17:21 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-27 17:13 Christopher Larson [this message]
2012-01-27 17:13 ` [PATCH 01/10] libc-package: fix typo in LOCALETREESRC default value Christopher Larson
2012-01-27 17:13 ` [PATCH 02/10] eglibc-package.inc: don't include debug files in -pic Christopher Larson
2012-01-28 20:21   ` Khem Raj
2012-02-02 18:26     ` Chris Larson
2012-01-27 17:13 ` [PATCH 03/10] binutils: fixes for build with an external csl toolchain Christopher Larson
2012-01-28 20:23   ` Khem Raj
2012-02-02 18:25     ` Chris Larson
2012-01-27 17:13 ` [PATCH 04/10] external-csl-toolchain: fix critical PATH manipulation bug Christopher Larson
2012-01-27 17:13 ` [PATCH 05/10] external-csl-toolchain: fixes for metadata changes Christopher Larson
2012-01-27 17:13 ` [PATCH 06/10] external-csl-toolchain: avoid the hardcoded version/prefix Christopher Larson
2012-01-27 17:13 ` [PATCH 07/10] external-csl-toolchain: support mips/ppc/arm Christopher Larson
2012-01-28 20:28   ` Khem Raj
2012-02-02 18:27     ` Chris Larson
2012-01-27 17:13 ` [PATCH 08/10] external-csl-toolchain: support ia32 Christopher Larson
2012-01-27 17:13 ` [PATCH 09/10] external-csl-toolchain: leverage eglibc's packaging for more granular output Christopher Larson
2012-01-27 17:13 ` [PATCH 10/10] external-csl-toolchain: extract version info from the toolchain Christopher Larson
2012-02-03 16:00 ` [PATCH 00/10] external-csl-toolchain fixes and improvements Ken Werner
2012-02-03 16:34   ` Richard Purdie
2012-02-03 16:17 ` Richard Purdie

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.1327684024.git.chris_larson@mentor.com \
    --to=kergoth@gmail.com \
    --cc=chris_larson@mentor.com \
    --cc=openembedded-core@lists.openembedded.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox