All of lore.kernel.org
 help / color / mirror / Atom feed
From: Richard Purdie <rpurdie@linux.intel.com>
To: poky@pokylinux.org
Subject: [PATCH 00/16] Poky core tweaks
Date: Sun, 28 Nov 2010 14:07:38 -0800	[thread overview]
Message-ID: <cover.1290982058.git.rpurdie@linux.intel.com> (raw)

I want to start posting my patches here like everyone else does. Whilst 
this time around, I did merge them in future I will not be doing that
giving some time for review. 

This series fixes a number of issues that have either been raised on 
the mailing list or elsewhere and should give some noticable 
performance improvements!

This lets me test out Darren's pull request scripts too!

Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: rpurdie/tweaks
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=rpurdie/tweaks

Cheers,

Richard

---


Paul Eggleton (1):
  qemu: fix failure to find zlib header files during configure

Richard Purdie (15):
  bitbake/runqueue.py: Fix stamp handling for noexec tasks
  scripts/poky-env-internal/image-swab.bbclass: Remove OEROOT
    references
  scripts/poky-env-internal: Remove unset variables
  scripts/poky-env-internal: Further cleanups
  scripts: Remove obsolete stage-manager scripts
  curl: Fix gnutls option (append ordering was incorrect)
  rm_work: Set BB_SCHEDULER as done in OE.dev to ensure disk space is
    freed sooner rather than at the end of the build
  utility-tasks: Switch listtasks to use bb.plain() for printing output
  bitbake: Simplfy pre and post cooker hooks
  font-util: Set RDEPENDS for virtclass-native to exclude encodings to
    copy DEPENDS
  font-alias: Set RDEPENDS to exclude encodings in the native case
  native.bbclasS: Add handing to remap RDEPENDS fields and avoid
    crossed target and native dependency trees
  bitbake/runqueue: Teach scenequeue about noexec tasks (since they
    don't do anything we can assume they're always successful
  native.bbclass: Mark various package functions as noexec since they
    don't do any work
  package-index: Fix after noexec changes

 bitbake/lib/bb/cooker.py                           |    9 +-
 bitbake/lib/bb/runqueue.py                         |   13 +-
 bitbake/lib/bb/server/none.py                      |    9 +-
 bitbake/lib/bb/server/xmlrpc.py                    |    7 +-
 meta/classes/image-swab.bbclass                    |    2 +-
 meta/classes/native.bbclass                        |   19 +-
 meta/classes/rm_work.bbclass                       |    4 +
 meta/classes/utility-tasks.bbclass                 |    2 +-
 meta/recipes-core/meta/package-index.bb            |   32 +-
 .../qemu/qemu-0.12.4/fix-configure-checks.patch    |   20 +
 meta/recipes-devtools/qemu/qemu_0.12.4.bb          |    3 +-
 .../recipes-graphics/xorg-font/font-alias_1.0.3.bb |    1 +
 meta/recipes-graphics/xorg-font/font-util_1.2.0.bb |    1 +
 meta/recipes-support/curl/curl_7.21.2.bb           |    7 +-
 scripts/poky-env-internal                          |   29 +-
 scripts/stage-manager                              |  156 ---
 scripts/stage-manager-ipkg                         | 1186 --------------------
 scripts/stage-manager-ipkg-build                   |  246 ----
 18 files changed, 97 insertions(+), 1649 deletions(-)
 create mode 100644 meta/recipes-devtools/qemu/qemu-0.12.4/fix-configure-checks.patch
 delete mode 100755 scripts/stage-manager
 delete mode 100755 scripts/stage-manager-ipkg
 delete mode 100755 scripts/stage-manager-ipkg-build



             reply	other threads:[~2010-11-28 22:16 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-28 22:07 Richard Purdie [this message]
2010-11-28 12:07 ` [PATCH 01/16] bitbake/runqueue.py: Fix stamp handling for noexec tasks Richard Purdie
2010-11-28 12:41 ` [PATCH 02/16] scripts/poky-env-internal/image-swab.bbclass: Remove OEROOT references Richard Purdie
2010-11-28 12:57 ` [PATCH 03/16] scripts/poky-env-internal: Remove unset variables Richard Purdie
2010-11-28 13:11 ` [PATCH 04/16] scripts/poky-env-internal: Further cleanups Richard Purdie
2010-11-28 13:14 ` [PATCH 05/16] scripts: Remove obsolete stage-manager scripts Richard Purdie
2010-11-28 14:10 ` [PATCH 06/16] curl: Fix gnutls option (append ordering was incorrect) Richard Purdie
2010-11-28 14:59 ` [PATCH 08/16] rm_work: Set BB_SCHEDULER as done in OE.dev to ensure disk space is freed sooner rather than at the end of the build Richard Purdie
2010-11-28 15:00 ` [PATCH 09/16] utility-tasks: Switch listtasks to use bb.plain() for printing output Richard Purdie
2010-11-28 15:01 ` [PATCH 10/16] bitbake: Simplfy pre and post cooker hooks Richard Purdie
2010-11-28 15:02 ` [PATCH 11/16] font-util: Set RDEPENDS for virtclass-native to exclude encodings to copy DEPENDS Richard Purdie
2010-11-28 15:19 ` [PATCH 12/16] font-alias: Set RDEPENDS to exclude encodings in the native case Richard Purdie
2010-11-28 15:20 ` [PATCH 13/16] native.bbclasS: Add handing to remap RDEPENDS fields and avoid crossed target and native dependency trees Richard Purdie
2010-11-28 15:59 ` [PATCH 14/16] bitbake/runqueue: Teach scenequeue about noexec tasks (since they don't do anything we can assume they're always successful Richard Purdie
2010-11-28 15:59 ` [PATCH 15/16] native.bbclass: Mark various package functions as noexec since they don't do any work Richard Purdie
2010-11-28 16:17 ` [PATCH 16/16] package-index: Fix after noexec changes 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.1290982058.git.rpurdie@linux.intel.com \
    --to=rpurdie@linux.intel.com \
    --cc=poky@pokylinux.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.