All of lore.kernel.org
 help / color / mirror / Atom feed
From: Khem Raj <raj.khem@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/16] Make core-image-minimal core-image-sato buildable with uclibc
Date: Mon, 18 Jul 2011 17:17:26 -0700	[thread overview]
Message-ID: <cover.1311034342.git.raj.khem@gmail.com> (raw)

This patch is V3 of the recents posts I have been doing from kraj/uclibc-oecore
branch. With this patchset now core-image-minimal is buildable and bootable
for all arches in oe-core. Core-image-sato is buildable but I have not tried to
boot it first attemp hung but then I have been trying to build eglibc based 
core-image-sato and make sure that that boots.

The following changes since commit 3d2c1ca9096790e4c6922b65b83ea1dffb90c362:

  util-linux: Replace sigsetmask with posix compliant functions (2011-07-15 18:52:49 -0700)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib kraj/uclibc-oecore
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=kraj/uclibc-oecore

Khem Raj (16):
  bitbake.conf: Change TERM default fallback to XTERM instead of
    GNOME_TERM
  oe-buildenv-internal: Replace POKYMODE POKYLIBC with TCMODE and
    TCLIBC
  default-distrovars: Add largefile and argp to DISTRO_FEATURES
  acl,attr: Fix build failures when NLS is disabled on uclibc
  classes/gettext: Do not disable nls for non target recipes
  libxdamage,libxft,libxrandr: Add missing dependency on virtual/libx11
  tzcode,tzdata: Update tzdata to 2011h
  task-core-x11-sato: Add empty NETWORK_MANAGER for uclibc
  uclibc_0.9.32: Implement sync_file_range2.
  oprofile: Fix build when query_module is not there
  powertop: Add lintl to linker commandline on uclibc
  pimlico/dates: Fix build on uclibc
  binutils: Fix build when compiling target binutils recipe with gcc
    4.6
  clutter-box2d: Replace use of finite macro with C99 compliant
    isfinite()
  sysprof: Define NT_GNU_BUILD_ID if undefined
  mesa-xlib: Dont use locales with uclibc

 meta/classes/gettext.bbclass                       |    2 +-
 meta/conf/bitbake.conf                             |    4 +-
 meta/conf/distro/include/default-distrovars.inc    |    3 +-
 .../uclibc/uclibc-0.9.32/sync_file_range2.patch    |   15 ++++
 meta/recipes-core/uclibc/uclibc_0.9.32.bb          |    3 +-
 .../binutils/binutils/clone-shadow.patch           |   79 ++++++++++++++++++++
 meta/recipes-devtools/binutils/binutils_2.21.1.bb  |    3 +-
 .../recipes-extended/tzcode/tzcode-native_2011g.bb |    7 +-
 .../tzdata/{tzdata_2011g.bb => tzdata_2011h.bb}    |    8 +-
 .../clutter/clutter-box2d/isfinite.patch           |   19 +++++
 meta/recipes-graphics/clutter/clutter-box2d_git.bb |    6 +-
 .../mesa/mesa-xlib/uclibc_locale.patch             |   18 +++++
 meta/recipes-graphics/mesa/mesa-xlib_7.10.2.bb     |    3 +-
 meta/recipes-graphics/xorg-lib/libxdamage_1.1.3.bb |    4 +-
 meta/recipes-graphics/xorg-lib/libxft_2.2.0.bb     |    4 +-
 meta/recipes-graphics/xorg-lib/libxrandr_1.3.1.bb  |    4 +-
 .../oprofile/oprofile-no-query-modules.patch       |   29 +++++++
 meta/recipes-kernel/oprofile/oprofile_0.9.6.bb     |    3 +-
 meta/recipes-kernel/powertop/powertop_1.13.bb      |   11 ++-
 .../sysprof/files/define-NT_GNU_BUILD_ID.patch     |   22 ++++++
 meta/recipes-kernel/sysprof/sysprof_git.bb         |    5 +-
 meta/recipes-sato/pimlico/dates.inc                |    2 +-
 .../uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch      |   37 +++++++++
 meta/recipes-sato/pimlico/dates_git.bb             |    6 +-
 meta/recipes-sato/tasks/task-core-x11-sato.bb      |    2 +
 meta/recipes-support/attr/acl_2.2.51.bb            |    2 +-
 meta/recipes-support/attr/attr.inc                 |    4 -
 meta/recipes-support/attr/attr_2.4.46.bb           |    2 +-
 meta/recipes-support/attr/ea-acl.inc               |    3 +
 scripts/oe-buildenv-internal                       |    2 +-
 30 files changed, 271 insertions(+), 41 deletions(-)
 create mode 100644 meta/recipes-core/uclibc/uclibc-0.9.32/sync_file_range2.patch
 create mode 100644 meta/recipes-devtools/binutils/binutils/clone-shadow.patch
 rename meta/recipes-extended/tzdata/{tzdata_2011g.bb => tzdata_2011h.bb} (96%)
 create mode 100644 meta/recipes-graphics/clutter/clutter-box2d/isfinite.patch
 create mode 100644 meta/recipes-graphics/mesa/mesa-xlib/uclibc_locale.patch
 create mode 100644 meta/recipes-kernel/oprofile/oprofile/oprofile-no-query-modules.patch
 create mode 100644 meta/recipes-kernel/sysprof/files/define-NT_GNU_BUILD_ID.patch
 create mode 100644 meta/recipes-sato/pimlico/dates/uclibc-NL_TIME_FIRST_WEEKDAY-absent.patch

-- 
1.7.4.1




             reply	other threads:[~2011-07-19  0:21 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-19  0:17 Khem Raj [this message]
2011-07-19  0:17 ` [PATCH 01/16] bitbake.conf: Change TERM default fallback to XTERM instead of GNOME_TERM Khem Raj
2011-07-19  0:17 ` [PATCH 02/16] oe-buildenv-internal: Replace POKYMODE POKYLIBC with TCMODE and TCLIBC Khem Raj
2011-07-19  0:17 ` [PATCH 03/16] default-distrovars: Add largefile and argp to DISTRO_FEATURES Khem Raj
2011-07-19  0:17 ` [PATCH 04/16] acl, attr: Fix build failures when NLS is disabled on uclibc Khem Raj
2011-07-19  0:17 ` [PATCH 05/16] classes/gettext: Do not disable nls for non target recipes Khem Raj
2011-07-19  0:17 ` [PATCH 06/16] libxdamage, libxft, libxrandr: Add missing dependency on virtual/libx11 Khem Raj
2011-07-19  0:17 ` [PATCH 07/16] tzcode,tzdata: Update tzdata to 2011h Khem Raj
2011-07-19  0:17 ` [PATCH 08/16] task-core-x11-sato: Add empty NETWORK_MANAGER for uclibc Khem Raj
2011-07-19  0:17 ` [PATCH 09/16] uclibc_0.9.32: Implement sync_file_range2 Khem Raj
2011-07-19 11:07   ` Phil Blundell
2011-07-19 14:45     ` Khem Raj
2011-07-19 21:14       ` Khem Raj
2011-07-19  0:17 ` [PATCH 10/16] oprofile: Fix build when query_module is not there Khem Raj
2011-07-19  0:17 ` [PATCH 11/16] powertop: Add lintl to linker commandline on uclibc Khem Raj
2011-07-19  0:17 ` [PATCH 12/16] pimlico/dates: Fix build " Khem Raj
2011-07-19  0:17 ` [PATCH 13/16] binutils: Fix build when compiling target binutils recipe with gcc 4.6 Khem Raj
2011-07-19  0:17 ` [PATCH 14/16] clutter-box2d: Replace use of finite macro with C99 compliant isfinite() Khem Raj
2011-07-20  0:45   ` Saul Wold
2011-07-20  4:33     ` Khem Raj
2011-07-20  5:15       ` Khem Raj
2011-07-19  0:17 ` [PATCH 15/16] sysprof: Define NT_GNU_BUILD_ID if undefined Khem Raj
2011-07-19  0:17 ` [PATCH 16/16] mesa-xlib: Dont use locales with uclibc Khem Raj
2011-07-19 21:16 ` [PATCH 00/16] Make core-image-minimal core-image-sato buildable " Khem Raj
2011-07-20 17:28 ` Saul Wold

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.1311034342.git.raj.khem@gmail.com \
    --to=raj.khem@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 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.