Openembedded Core Discussions
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 0/7] conf/machine: fix arm tune files
Date: Thu,  4 Oct 2012 15:23:34 +0200	[thread overview]
Message-ID: <cover.1349356755.git.Martin.Jansa@gmail.com> (raw)
In-Reply-To: <cover.1348330479.git.Martin.Jansa@gmail.com>

Tested with sstate-diff.sh script and fake machine configs added in this branch:
http://git.openembedded.org/openembedded-core-contrib/log/?h=jansa/tune2-test

Fixes [YOCTO #3219]

The following changes since commit df2b756436b90f8f9ff229ba64d0af30d9d4f923:

  common-licenses: Adding bzip (2012-10-04 14:09:06 +0100)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib jansa/tune2
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=jansa/tune2

Martin Jansa (7):
  tune-xscale: replace TUNE_CCARGS for webkit-gtk and cairo only with
    xscale in TUNE_FEATURES
  bitbake.conf: add TUNE_CCARGS[vardepvalue]
  tune-cortexr4: fix march value
  arm/arch-arm*: define ARMPKGARCH_tune-* for default tunes
  arch-arm: define different ARMPKGARCH when different CCARGS are used
  tune-*: define more generic DEFAULTTUNE to share feed between
    machines
  scripts/sstate-diff.sh: add simple script to compare sstate checksums
    between MACHINEs

 meta/conf/bitbake.conf                           |  1 +
 meta/conf/machine/include/arm/arch-arm.inc       |  2 +-
 meta/conf/machine/include/arm/arch-armv4.inc     |  6 +++--
 meta/conf/machine/include/arm/arch-armv5-dsp.inc | 12 +++++++++
 meta/conf/machine/include/arm/arch-armv5.inc     | 14 +++++++++--
 meta/conf/machine/include/arm/arch-armv6.inc     | 10 ++++++--
 meta/conf/machine/include/arm/arch-armv7a.inc    | 18 +++++++++++--
 meta/conf/machine/include/tune-arm1136jf-s.inc   |  3 ++-
 meta/conf/machine/include/tune-arm920t.inc       |  3 ++-
 meta/conf/machine/include/tune-arm926ejs.inc     |  4 +--
 meta/conf/machine/include/tune-arm9tdmi.inc      |  3 ++-
 meta/conf/machine/include/tune-cortexa8.inc      |  8 +++++-
 meta/conf/machine/include/tune-cortexa9.inc      |  8 +++++-
 meta/conf/machine/include/tune-cortexm1.inc      |  3 ++-
 meta/conf/machine/include/tune-cortexm3.inc      |  2 +-
 meta/conf/machine/include/tune-cortexr4.inc      |  4 +--
 meta/conf/machine/include/tune-ep9312.inc        |  4 +--
 meta/conf/machine/include/tune-iwmmxt.inc        |  4 +--
 meta/conf/machine/include/tune-strongarm1100.inc |  3 ++-
 meta/conf/machine/include/tune-xscale.inc        |  8 +++---
 scripts/sstate-diff.sh                           | 32 ++++++++++++++++++++++++
 21 files changed, 122 insertions(+), 30 deletions(-)
 create mode 100755 scripts/sstate-diff.sh

-- 
1.7.12




  parent reply	other threads:[~2012-10-04 13:36 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-22 16:51 [RFC 0/5] OPTDEFAULTTUNE for arm tune files Martin Jansa
2012-09-22 16:51 ` [RFC 1/5] arch-arm: add ARMPKGSFX_CPU to TUNE_PKGARCH because we're using different TUNE_CCARGS Martin Jansa
2012-09-22 16:51 ` [RFC 2/5] tune-xscale, tune-arm926ejs: add OPTDEFAULTTUNE variable and use more generic DEFAULTTUNE as default Martin Jansa
2012-09-22 17:45   ` Richard Purdie
2012-09-27  8:37     ` Martin Jansa
2012-09-27 18:58       ` Mark Hatle
2012-09-27 19:12         ` Martin Jansa
2012-09-27 19:18           ` Mark Hatle
2012-09-27 19:40             ` Martin Jansa
2012-09-27 19:53               ` Mark Hatle
2012-09-27 20:16                 ` Martin Jansa
2012-09-28 11:02         ` Phil Blundell
2012-09-28 18:21           ` Martin Jansa
2012-10-02 18:43         ` Martin Jansa
2012-10-02 20:36           ` Mark Hatle
2012-10-02 20:38             ` Martin Jansa
2012-10-02 20:47               ` Mark Hatle
2012-09-22 16:51 ` [RFC 3/5] optimized-tune.inc: add optional distro include Martin Jansa
2012-09-22 16:51 ` [RFC 4/5] bitbake.conf: add TUNE_CCARGS[vardepvalue] Martin Jansa
2012-09-22 16:51 ` [RFC 5/5] tune-xscale, tune-arm926ejs: drop ARMPKGSFX_CPU, change ARMPKGARCH instead Martin Jansa
2012-10-04 13:23 ` Martin Jansa [this message]
2012-10-04 13:23   ` [PATCH 1/7] tune-xscale: replace TUNE_CCARGS for webkit-gtk and cairo only with xscale in TUNE_FEATURES Martin Jansa
2012-10-04 16:55     ` Khem Raj
2012-10-04 17:13       ` Martin Jansa
2012-10-04 13:23   ` [PATCH 2/7] bitbake.conf: add TUNE_CCARGS[vardepvalue] Martin Jansa
2012-10-04 13:23   ` [PATCH 3/7] tune-cortexr4: fix march value Martin Jansa
2012-10-04 16:55     ` Khem Raj
2012-10-04 13:23   ` [PATCH 4/7] arm/arch-arm*: define ARMPKGARCH_tune-* for default tunes Martin Jansa
2012-10-04 13:23   ` [PATCH 5/7] arch-arm: define different ARMPKGARCH when different CCARGS are used Martin Jansa
2012-10-04 13:23   ` [PATCH 6/7] tune-*: define more generic DEFAULTTUNE to share feed between machines Martin Jansa
2012-10-04 13:23   ` [PATCH 7/7] scripts/sstate-diff.sh: add simple script to compare sstate checksums between MACHINEs Martin Jansa
2012-12-04 12:07     ` [PATCHv2] " Martin Jansa
2012-12-04 13:03       ` Richard Purdie
2012-12-04 15:24         ` [PATCHv3] " Martin Jansa
2012-12-04 15:26         ` [PATCHv4] scripts/sstate-diff-machines.sh: " Martin Jansa

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.1349356755.git.Martin.Jansa@gmail.com \
    --to=martin.jansa@gmail.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