Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/9] Re-sync and update siteinfo, round 2
@ 2011-07-27 22:56 Tom Rini
  2011-07-27 22:56 ` [PATCH 1/9] sudo: Drop sudo_cv_uid_t_len from site files Tom Rini
                   ` (9 more replies)
  0 siblings, 10 replies; 26+ messages in thread
From: Tom Rini @ 2011-07-27 22:56 UTC (permalink / raw)
  To: openembedded-core

Hey all,

Here's my last series before I try the "clean slate" approach to updating
the siteinfo files.  In a few cases there's some behavior change and
that's a good thing.  In short, for sudo we set a variable to the default
if not set, so stop doing that.  For tcl, we had correctly figured out
an optional variable in one case, and now we re-use it everywhere.  We
drop out totally monotone (not in oe-core nor meta-oe nor oe.dev),
rp-pppoe (meta-oe, correctly) and enca (not needed when oe.dev is moved
over, not in oe-core nor meta-oe).  Finally there's a few sets of $libc
variables being moved to the common-$libc files.  Of slight note here
is that va_copy doing a value copy (va_val_copy) is arch dependent and
we were getting this wrong in some cases on x86_64.  Given that it's
assumed to be true when not set from what I can see, it's possible we're
going from implicit breakage to explicit breakage here in some of the less
common arches, but that's better (IMHO) that the alternative.

I've build-tested world on qemux86/qemux86-64 and core-image-sato on
qemuppc/qemumips for eglibc and some smaller subsets (in checking the
"is it really?" in making uclibc changes) for uclibc over the past few
weeks.  I've got a world build going now for qemux86-64 and will kick off
qemux86 next but I don't expect any failures nor believe waiting on these
to complete should be gating.

The following changes since commit 1fe892ab6876c405599c79657221a8b4675b6ecf:
  Matthew McClintock (1):
        Update TERMCMD message to align with previous change

are available in the git repository at:

  git://git.openembedded.org/openembedded-core-contrib trini/update-siteinfo-round-2-v1
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=trini/update-siteinfo-round-2-v1

Tom Rini (9):
  sudo: Drop sudo_cv_uid_t_len from site files
  tcl: Add tcl_cv_api_serial to siteinfo
  Various site files: Drop monotone
  Various siteinfo files: Consolidate ac_cv_func_getaddrinfo
  Various siteinfo files: Drop enca section
  Various siteinfo files: Consolidate va_copy/__va_copy/va_val_copy
  site/common-linux: Add ac_cv_file__dev_zero=yes
  siteinfo: Add posix_getpwuid_r posix_getgrgid_r posix_getpwnam_r to
    uclibc
  Various siteinfo: Drop rp-pppoe variables

 meta/recipes-devtools/tcltk/tcl_8.5.9.bb |    2 +-
 meta/site/arm-common                     |   25 +----------------------
 meta/site/arm-linux                      |    9 --------
 meta/site/common-glibc                   |   12 ++++++++--
 meta/site/common-linux                   |    3 ++
 meta/site/common-uclibc                  |   15 ++++++++++++++
 meta/site/ix86-common                    |   31 ++---------------------------
 meta/site/mips-common                    |   18 ++++++++++++----
 meta/site/mips-linux                     |   25 +-----------------------
 meta/site/mips-linux-uclibc              |   24 +----------------------
 meta/site/mipsel-linux                   |   26 +-----------------------
 meta/site/mipsel-linux-uclibc            |   12 +----------
 meta/site/powerpc-linux                  |   13 ++++++++---
 meta/site/powerpc32-linux                |   17 ----------------
 meta/site/sh-common                      |   24 +---------------------
 meta/site/x86_64-linux                   |   14 ++++++------
 meta/site/x86_64-linux-uclibc            |   12 +++++++---
 17 files changed, 77 insertions(+), 205 deletions(-)




^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2011-08-04 15:54 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-27 22:56 [PATCH 0/9] Re-sync and update siteinfo, round 2 Tom Rini
2011-07-27 22:56 ` [PATCH 1/9] sudo: Drop sudo_cv_uid_t_len from site files Tom Rini
2011-07-30 17:25   ` Khem Raj
2011-07-30 18:39     ` Phil Blundell
2011-07-30 21:03       ` Khem Raj
2011-07-30 23:41         ` Tom Rini
2011-07-27 22:56 ` [PATCH 2/9] tcl: Add tcl_cv_api_serial to siteinfo Tom Rini
2011-07-30 17:33   ` Khem Raj
2011-07-30 23:42     ` Tom Rini
2011-07-31  0:56       ` Khem Raj
2011-07-31 19:16         ` Tom Rini
2011-08-01 17:14           ` Tom Rini
2011-08-01 17:23             ` Khem Raj
2011-08-03 21:10             ` Tom Rini
2011-07-27 22:56 ` [PATCH 3/9] Various site files: Drop monotone Tom Rini
2011-08-04 13:52   ` Richard Purdie
2011-08-04 15:08     ` Khem Raj
2011-08-04 15:14       ` Phil Blundell
2011-08-04 15:49         ` Khem Raj
2011-07-27 22:56 ` [PATCH 4/9] Various siteinfo files: Consolidate ac_cv_func_getaddrinfo Tom Rini
2011-07-27 22:56 ` [PATCH 5/9] Various siteinfo files: Drop enca section Tom Rini
2011-07-27 22:56 ` [PATCH 6/9] Various siteinfo files: Consolidate va_copy/__va_copy/va_val_copy Tom Rini
2011-07-27 22:56 ` [PATCH 7/9] site/common-linux: Add ac_cv_file__dev_zero=yes Tom Rini
2011-07-27 22:56 ` [PATCH 8/9] siteinfo: Add posix_getpwuid_r posix_getgrgid_r posix_getpwnam_r to uclibc Tom Rini
2011-07-27 22:56 ` [PATCH 9/9] Various siteinfo: Drop rp-pppoe variables Tom Rini
2011-08-04 14:57 ` [PATCH 0/9] Re-sync and update siteinfo, round 2 Saul Wold

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox