From: Saul Wold <sgw@linux.intel.com>
To: openembedded-core@lists.openembedded.org
Subject: [Consolidated Pull 00/17] bug fixes and updates
Date: Thu, 14 Jun 2012 12:27:04 -0700 [thread overview]
Message-ID: <cover.1339701375.git.sgw@linux.intel.com> (raw)
Richard,
Various fixes and updates, I have built and tested the changes.
This includes some work from Robert to provide pybootchartgui,
updated with some of the work you did for build profiling. Basic
touch testing of it brings up a window when given the right directory.
Sau!
The following changes since commit c4d0b1c5438039dab07103c151c0c5a76a4c9499:
connman: bump PR and add some comments (2012-06-13 13:11:11 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib sgw/stage
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/stage
Andrei Gherzan (1):
coreutils: Fix a typo in v6.9 (bracket not braket)
Bogdan Marinescu (1):
libpcre: updated to version 8.30
Bruce Ashfield (2):
linux-yocto/3.4: update yaffs2 and drop rc6
linux-yocto/3.4: create linux-yocto-rt recipe
Robert Yang (6):
pybootchartgui: add the original code
pybootchartgui: remove the original examples
pybootchartgui: make the build profiling in pictures
pybootchartgui: split the output chart into multiple ones
pybootchartgui: Fix the filename and add a default format
opkg 0.1.8: do_fetch failed since no checksum specified
Saul Wold (7):
distro_tracking_fields: move to meta-yocto as seperate files
busybox: Add check for wifi/bluetooth to enable rfkill
curl: enable ssl support
quilt: added ac_cv_path_BASH to CACHED_CONFIGUREVARS
eglibc: added ac_cv_path_ to CACHED_CONFIGUREVARS
gcc-target: ensure target packages have the correct virtual package
names
beecrypt: add patch for build issue on Fedora 17
.../conf/distro/include/distro_tracking_fields.inc | 6485 --------------------
meta/recipes-core/busybox/busybox.inc | 2 +
meta/recipes-core/coreutils/coreutils_6.9.bb | 2 +-
meta/recipes-core/eglibc/eglibc.inc | 2 +
meta/recipes-core/eglibc/eglibc_2.13.bb | 2 +-
meta/recipes-core/eglibc/eglibc_2.15.bb | 2 +-
meta/recipes-devtools/gcc/gcc-4.7.inc | 2 +-
meta/recipes-devtools/gcc/gcc-package-runtime.inc | 4 +
.../opkg/opkg-0.1.8/add_vercmp.patch | 36 -
meta/recipes-devtools/opkg/opkg_0.1.8.bb | 3 +
meta/recipes-devtools/quilt/quilt_0.60.bb | 5 +-
meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb | 32 +
meta/recipes-kernel/linux/linux-yocto_3.4.bb | 14 +-
.../beecrypt/beecrypt/fix-for-gcc-4.7.patch | 39 +
meta/recipes-support/beecrypt/beecrypt_4.2.1.bb | 5 +-
meta/recipes-support/curl/curl_7.24.0.bb | 10 +-
.../libpcre/{libpcre_8.21.bb => libpcre_8.30.bb} | 10 +-
scripts/pybootchartgui/AUTHORS | 11 +
scripts/pybootchartgui/COPYING | 674 ++
scripts/pybootchartgui/README | 36 +
scripts/pybootchartgui/pybootchartgui.py | 7 +
scripts/pybootchartgui/pybootchartgui/batch.py | 23 +
scripts/pybootchartgui/pybootchartgui/draw.py | 408 ++
scripts/pybootchartgui/pybootchartgui/gui.py | 273 +
scripts/pybootchartgui/pybootchartgui/main.py | 76 +
scripts/pybootchartgui/pybootchartgui/parsing.py | 264 +
.../pybootchartgui/pybootchartgui/process_tree.py | 270 +
scripts/pybootchartgui/pybootchartgui/samples.py | 93 +
.../pybootchartgui/tests/parser_test.py | 93 +
.../pybootchartgui/tests/process_tree_test.py | 78 +
30 files changed, 2416 insertions(+), 6545 deletions(-)
delete mode 100644 meta/conf/distro/include/distro_tracking_fields.inc
delete mode 100644 meta/recipes-devtools/opkg/opkg-0.1.8/add_vercmp.patch
create mode 100644 meta/recipes-kernel/linux/linux-yocto-rt_3.4.bb
create mode 100644 meta/recipes-support/beecrypt/beecrypt/fix-for-gcc-4.7.patch
rename meta/recipes-support/libpcre/{libpcre_8.21.bb => libpcre_8.30.bb} (86%)
create mode 100644 scripts/pybootchartgui/AUTHORS
create mode 100644 scripts/pybootchartgui/COPYING
create mode 100644 scripts/pybootchartgui/README
create mode 100755 scripts/pybootchartgui/pybootchartgui.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/__init__.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/batch.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/draw.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/gui.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/main.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/parsing.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/process_tree.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/samples.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/tests/parser_test.py
create mode 100644 scripts/pybootchartgui/pybootchartgui/tests/process_tree_test.py
--
1.7.7.6
next reply other threads:[~2012-06-14 19:38 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-14 19:27 Saul Wold [this message]
2012-06-14 19:27 ` [Consolidated Pull 01/17] distro_tracking_fields: move to meta-yocto as seperate files Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 02/17] libpcre: updated to version 8.30 Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 03/17] coreutils: Fix a typo in v6.9 (bracket not braket) Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 04/17] pybootchartgui: add the original code Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 05/17] pybootchartgui: remove the original examples Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 06/17] pybootchartgui: make the build profiling in pictures Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 07/17] pybootchartgui: split the output chart into multiple ones Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 08/17] pybootchartgui: Fix the filename and add a default format Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 09/17] linux-yocto/3.4: update yaffs2 and drop rc6 Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 10/17] linux-yocto/3.4: create linux-yocto-rt recipe Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 11/17] opkg 0.1.8: do_fetch failed since no checksum specified Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 12/17] busybox: Add check for wifi/bluetooth to enable rfkill Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 13/17] curl: enable ssl support Saul Wold
2012-06-14 19:54 ` Phil Blundell
2012-06-14 19:58 ` Phil Blundell
2012-06-14 20:10 ` Saul Wold
2012-06-14 20:25 ` Phil Blundell
2012-06-14 19:27 ` [Consolidated Pull 14/17] quilt: added ac_cv_path_BASH to CACHED_CONFIGUREVARS Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 15/17] eglibc: added ac_cv_path_ " Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 16/17] gcc-target: ensure target packages have the correct virtual package names Saul Wold
2012-06-14 19:27 ` [Consolidated Pull 17/17] beecrypt: add patch for build issue on Fedora 17 Saul Wold
2012-06-15 14:14 ` [Consolidated Pull 00/17] bug fixes and updates 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.1339701375.git.sgw@linux.intel.com \
--to=sgw@linux.intel.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