Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch for-2012.11/rpc-support
@ 2012-11-03 17:47 Thomas Petazzoni
  2012-11-03 17:47 ` [Buildroot] [PATCH 01/18] uClibc: use the Buildroot toolchain options instead of the hidden common options Thomas Petazzoni
                   ` (17 more replies)
  0 siblings, 18 replies; 40+ messages in thread
From: Thomas Petazzoni @ 2012-11-03 17:47 UTC (permalink / raw)
  To: buildroot

Hello,

This set of patches reworks the RPC support to take into account newer
glibc versions that do not provide RPC support.

Compared to the previous posting (August, 11th), the changes are
mainly:

 * libtirpc is now automatically selected (like any other library) by
   packages needing RPC support and no RPC support is available from
   the toolchain

 * if there is RPC support in the toolchain but libtirpc is available,
   then libtirpc will be used (i.e we're passing the compiler and
   linker flags needed for the packages to find libtirpc)

 * removal of the patch adding the ARM CodeSourcery toolchain, since
   this toolchain in fact had RPC support, and it was merged
   separately.

 * removal of the patches converting netkitbase and netkittelnet to
   the package infrastructure, since those were merged separately
   thanks to the work of Samuel Martin.

 * some other minor fixes done after comments of the first review
   (typos in help text, issue with some toolchains was fixed, etc.)

Note that patches 1, 2, 3, 4, 17, 18 can be comitted separately from
the other patches.

In order to help in the review, here is a step by step description of
what is being done:

 * Patch 1 changes uclibc.mk to use the BR2_TOOLCHAIN_BUILDROOT_*
   options instead of directly BR2_LARGEFILE/BR2_INET_IPV6, etc. This
   is not strictly needed, but since BR2_INET_RPC is going to be
   renamed in later patches, it helps to use BR2_TOOLCHAIN_BUILDROOT_*
   everywhere. It is also more logical since the
   BR2_TOOLCHAIN_BUILDROOT_* options are defined by the internal
   Buildroot toolchain backend, so it makes sense to use those options
   in uclibc.mk which is part of this toolchain backend.

 * Patch 2 simplifies the Busybox recipe to do mess up with
   FEATURE_NFS_MOUNT automatically. Instead, we leave the default of
   our configuration files (FEATURE_NFS_MOUNT is disabled), and if the
   user wants it, (s)he'll enable it. This will simplify how to handle
   Busybox with regard to libtirpc.

 * Patch 3 does the same thing as patch 1, but for the Crosstool-NG
   backend.

 * Patch 4 makes a naive rename BR2_INET_RPC to
   BR2_TOOLCHAIN_HAS_NATIVE_RPC. This name better describes what it
   means: whether the toolchain has or does not have RPC support (the
   RPC support will later have the capability of being provided by
   libtirpc, outside of the toolchain).

 * Patch 5 enhance the external toolchain logic around the RPC
   support. Basically, the BR2_TOOLCHAIN_EXTERNAL_GLIBC option no
   longer unconditionally selects BR2_TOOLCHAIN_HAS_NATIVE_RPC since
   there are glibc toolchains that don't have RPC support. All the
   predefined toolchain profiles are updated to take into account this
   change: for the moment, all glibc toolchains that have pre-defined
   toolchains have RPC support, but further patches in the series add
   pre-defined glibc toolchains that don't have RPC support. In the
   case of custom glibc toolchains, a question is asked to the user so
   that he can say whether the external glibc toolchain has RPC
   support or not. The validity of this configuration option is
   checked by the new check_glibc_rpc_feature function in helpers.mk.

 * Patch 6 adds a package for libtirpc, with a bunch of patches to
   make its compilation work properly on top of uClibc.

   What is worth noting is that the libtirpc package is only available
   if the toolchain does not have RPC support. We for now assume that
   the user will want to use the internal RPC support of the toolchain
   if available rather than libtirpc. Note that this choice may be
   changed in the future, as the RPC support in libtirpc may have more
   features than the one provided by the toolchain.

   The other thing that this package Config.in file provides is the
   BR2_RPC_SUPPORT_AVAILABLE option, which tells whether the toolchain
   has RPC support *OR* libtirpc is enabled. Packages needing RPC
   support can therefore "depends on" this.

 * Patch 7 adjust the Busybox build process to use libtirpc if
   available. We do not 'select' libtirpc if the RPC support is not
   available in the toolchain, as we don't want a simple program such
   as Busybox to carry dependencies without the user noticing. Since
   we're not enabling FEATURE_NFS_MOUNT automatically (as per patch
   2), this libtirpc will only be used is (1) libtirpc is selected and
   (2) the user has manually enabled FEATURE_NFS_MOUNT.

 * Patch 8 makes it possible to link lmbench against libtirpc. Nothing
   special to mention here.

 * Patch 9 makes it possible to link nfs-utils against libtirpc. The
   only thing worth mentionning is that I removed the select on
   BR2_PACKAGE_PORTMAP. This select was not a build-time dependency,
   but a run-time dependency, and nowadays, nfs-utils can work
   together with rpcbind rather than portmap (which is deprecated).

 * Patch 10 adds a package for rpcbind, the modern replacement for
   portmap. This package directly selects libtirpc. Question: how
   should it behave with toolchains having internal RPC support?

 * Patch 11 adds a small comment in portmap saying that rpcbind is the
   newer replacement. Portmap doesn't link properly against libtirpc,
   and it probably isn't worth fixing it. Question: should I mark
   portmap as deprecated?

 * Patch 12 makes it possible to link quota against libtirpc. Nothing
   special to mention here.

 * Patch 13 changes how the --with-sys-quotas option is handled by
   Samba. This option does not depend on RPC support in the toolchain
   apparently.

 * Patch 14 makes it possible to link xinetd against libtirpc. Nothing
   special to mention here.

 * Patches 15-16 add the latest Sourcery CodeBench toolchain for x86
   and SH4. Those glibc toolchains use glibc 2.15 and therefore do not
   have RPC support.

 * Patches 17-18 makes netkitbase and netkittelnet packages
   deprecated.

Thanks!

Thomas

The following changes since commit 5a61fbd82394f9bc9317535b717a2e1dd51dea7d:

  fs/skeleton: remove /etc/TZ (2012-10-24 09:16:50 +0200)

are available in the git repository at:

  git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git for-2012.11/rpc-support

for you to fetch changes up to 0003a7e4a071871640d8d842c6838611bf210ae5:

  netkittelnet: mark as deprecated (2012-11-03 18:45:57 +0100)

----------------------------------------------------------------
Thomas Petazzoni (18):
      uClibc: use the Buildroot toolchain options instead of the hidden common options
      busybox: don't force FEATURE_NFS_MOUNT
      toolchain-crosstool-ng: use the Crosstool-ng config options instead of the common hidden ones
      Rename BR2_INET_RPC to BR2_TOOLCHAIN_HAS_NATIVE_RPC
      toolchain-external: improve glibc support to test availability of RPC
      libtirpc: new package
      busybox: add support to link against libtirpc when available
      lmbench: add support to use libtirpc when available
      nfs-utils: add support to use RPC support from libtirpc
      rpcbind: new package
      portmap: mention that rpcbind is the project that superseds portmap
      quota: add support to use RPC support from libtirpc
      samba: unconditionally enable --with-sys-quotas
      xinetd: add support to use RPC support from libtirpc
      toolchain-external: add Sourcery CodeBench SuperH 2012.03
      toolchain-external: add Sourcery CodeBench x86 2012.03
      netkitbase: mark as deprecated
      netkittelnet: mark as deprecated

 package/Config.in                                  |    2 +
 package/busybox/busybox.mk                         |   30 ++++---
 package/libtirpc/Config.in                         |    7 ++
 ...able-parts-of-TIRPC-requiring-NIS-support.patch |   70 +++++++++++++++
 ...out-RPC-support-does-not-install-rpcent.h.patch |   26 ++++++
 ...btirpc-0003-Add-missing-INET6-conditional.patch |   60 +++++++++++++
 .../libtirpc-0004-Make-IPv6-support-optional.patch |   43 +++++++++
 package/libtirpc/libtirpc.mk                       |   17 ++++
 package/lmbench/Config.in                          |    6 +-
 package/lmbench/lmbench.mk                         |   11 ++-
 package/netkitbase/Config.in                       |    5 +-
 package/netkittelnet/Config.in                     |    5 +-
 package/nfs-utils/Config.in                        |    7 +-
 package/nfs-utils/nfs-utils.mk                     |    8 +-
 package/portmap/Config.in                          |    6 +-
 package/quota/Config.in                            |    6 +-
 package/quota/quota.mk                             |   13 ++-
 package/rpcbind/Config.in                          |    8 ++
 package/rpcbind/rpcbind-01-no-yp-support.patch     |   46 ++++++++++
 package/rpcbind/rpcbind.mk                         |   17 ++++
 package/samba/samba.mk                             |    2 +-
 package/xinetd/xinetd.mk                           |   19 +++-
 toolchain/helpers.mk                               |   29 ++++--
 toolchain/toolchain-buildroot/Config.in.2          |    2 +-
 toolchain/toolchain-common.in                      |    2 +-
 toolchain/toolchain-crosstool-ng/Config.in         |   10 ++-
 toolchain/toolchain-crosstool-ng/crosstool-ng.mk   |   10 +--
 toolchain/toolchain-external/Config.in             |   93 +++++++++++++++++---
 toolchain/toolchain-external/ext-tool.mk           |   14 ++-
 toolchain/uClibc/uclibc.mk                         |   10 +--
 30 files changed, 507 insertions(+), 77 deletions(-)
 create mode 100644 package/libtirpc/Config.in
 create mode 100644 package/libtirpc/libtirpc-0001-Disable-parts-of-TIRPC-requiring-NIS-support.patch
 create mode 100644 package/libtirpc/libtirpc-0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch
 create mode 100644 package/libtirpc/libtirpc-0003-Add-missing-INET6-conditional.patch
 create mode 100644 package/libtirpc/libtirpc-0004-Make-IPv6-support-optional.patch
 create mode 100644 package/libtirpc/libtirpc.mk
 create mode 100644 package/rpcbind/Config.in
 create mode 100644 package/rpcbind/rpcbind-01-no-yp-support.patch
 create mode 100644 package/rpcbind/rpcbind.mk

Thanks,
-- 
Thomas Petazzoni

^ permalink raw reply	[flat|nested] 40+ messages in thread
* [Buildroot] [pull request] Pull request for branch for-2012.11/rpc-support
@ 2012-11-04 12:04 Thomas Petazzoni
  0 siblings, 0 replies; 40+ messages in thread
From: Thomas Petazzoni @ 2012-11-04 12:04 UTC (permalink / raw)
  To: buildroot

Hello,

Another round of RPC-related fixes + external toolchain
cleanup. Changes since the last posting:

 * Fix the download location of libtirpc. Noticed by Arnout.

 * libtirpc now depends on host-pkgconf instead of
   host-pkg-config. Noticed by Arnout.

 * Explained why libtirpc needs host-pkgconf even though it has no
   dependencies. Noticed by Peter.

 * Fix the BR2_TOOLCHAIN_HAS_NATIVE_RPC libtirpc dependency which was
   not in the correct patch. Noticed by Arnout.

 * Fixed the help text of the Sourcery CodeBench x86 2012.03 toolchain
   so that it matches the reality in terms of Buildroot support for
   libtirpc. Noticed by Arnout.

 * Fixed the help text of the Sourcery CodeBench SuperH 2012.03
   toolchain in terms of components versions. Noticed by Baruch.

 * Added support for Sourcery CodeBench x86 and SuperH 2012.09
   toolchains.

 * Added a fix for the Sourcery CodeBench ARM 2012.03 toolchain, which
   has native RPC support.

 * Removed a bunch of the oldest external toolchains we have, in order
   to keep a more reasonable number of external toolchains options.

Thanks,

Thomas

The following changes since commit 9fbdf062b93c6c2ed7e35897bcb0ad4c60f29d41:

  toolchain-external: improve glibc support to test availability of RPC (2012-11-04 01:22:43 +0100)

are available in the git repository at:

  git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git for-2012.11/rpc-support

for you to fetch changes up to d2dca51587d8ff3f4f2989da8735e6e7bf352fb0:

  toolchain-external: remove Linaro 2012.07 (2012-11-04 13:00:11 +0100)

----------------------------------------------------------------
Thomas Petazzoni (20):
      toolchain-external: ARM 2012.03 has RPC support
      libtirpc: new package
      busybox: add support to link against libtirpc when available
      lmbench: add support to use libtirpc when available
      nfs-utils: add support to use RPC support from libtirpc
      rpcbind: new package
      portmap: mention that rpcbind is the project that superseds portmap
      quota: add support to use RPC support from libtirpc
      samba: unconditionally enable --with-sys-quotas
      xinetd: add support to use RPC support from libtirpc
      toolchain-external: add Sourcery CodeBench SuperH 2012.03
      toolchain-external: add Sourcery CodeBench x86 2012.03
      toolchain-external: add support for Sourcery CodeBench SH 2012.09
      toolchain-external: add Sourcery CodeBench x86/x86_64 2012.09
      toolchain-external: remove Sourcery CodeBench ARM 2010q1
      toolchain-external: remove Sourcery CodeBench ARM 2010.09
      toolchain-external: remove Sourcery CodeBench SH 2010.09
      toolchain-external: remove Sourcery CodeBench x86/x86_64 2010.09
      toolchain-external: remove Linaro 2012.06
      toolchain-external: remove Linaro 2012.07

 package/Config.in                                  |    2 +
 package/busybox/busybox.mk                         |   19 +-
 package/libtirpc/Config.in                         |    7 +
 ...able-parts-of-TIRPC-requiring-NIS-support.patch |   70 ++++++++
 ...out-RPC-support-does-not-install-rpcent.h.patch |   26 +++
 ...btirpc-0003-Add-missing-INET6-conditional.patch |   60 +++++++
 .../libtirpc-0004-Make-IPv6-support-optional.patch |   43 +++++
 package/libtirpc/libtirpc.mk                       |   24 +++
 package/lmbench/Config.in                          |    6 +-
 package/lmbench/lmbench.mk                         |   11 +-
 package/nfs-utils/Config.in                        |    7 +-
 package/nfs-utils/nfs-utils.mk                     |    8 +-
 package/portmap/Config.in                          |    2 +
 package/quota/Config.in                            |    6 +-
 package/quota/quota.mk                             |   13 +-
 package/rpcbind/Config.in                          |    8 +
 package/rpcbind/rpcbind-01-no-yp-support.patch     |   46 +++++
 package/rpcbind/rpcbind.mk                         |   17 ++
 package/samba/samba.mk                             |    2 +-
 package/xinetd/xinetd.mk                           |   19 +-
 toolchain/toolchain-external/Config.in             |  185 ++++++++------------
 toolchain/toolchain-external/ext-tool.mk           |   32 ++--
 22 files changed, 461 insertions(+), 152 deletions(-)
 create mode 100644 package/libtirpc/Config.in
 create mode 100644 package/libtirpc/libtirpc-0001-Disable-parts-of-TIRPC-requiring-NIS-support.patch
 create mode 100644 package/libtirpc/libtirpc-0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch
 create mode 100644 package/libtirpc/libtirpc-0003-Add-missing-INET6-conditional.patch
 create mode 100644 package/libtirpc/libtirpc-0004-Make-IPv6-support-optional.patch
 create mode 100644 package/libtirpc/libtirpc.mk
 create mode 100644 package/rpcbind/Config.in
 create mode 100644 package/rpcbind/rpcbind-01-no-yp-support.patch
 create mode 100644 package/rpcbind/rpcbind.mk

Thanks,
-- 
Thomas Petazzoni

^ permalink raw reply	[flat|nested] 40+ messages in thread
* [Buildroot] [pull request] Pull request for branch for-2012.11/rpc-support
@ 2012-11-04 17:34 Thomas Petazzoni
  2012-11-06  7:22 ` Peter Korsgaard
  0 siblings, 1 reply; 40+ messages in thread
From: Thomas Petazzoni @ 2012-11-04 17:34 UTC (permalink / raw)
  To: buildroot

Hello,

Yet another version of the RPC set of patches. Changes since the last
posting:

 * The kernel headers version chunk has been properly moved to the SH
   2012.03 toolchain patch. Noticed by Baruch.

 * Assume that by default, custom external glibc toolchains have RPC
   support, so that autobuilders configuration continue to work nicely
   (and also because it is most likely the case for most
   toolchains). Suggested by Peter.

Thomas

The following changes since commit 9fbdf062b93c6c2ed7e35897bcb0ad4c60f29d41:

  toolchain-external: improve glibc support to test availability of RPC (2012-11-04 01:22:43 +0100)

are available in the git repository at:

  git://git.free-electrons.com/users/thomas-petazzoni/buildroot.git for-2012.11/rpc-support

for you to fetch changes up to 8c77c933bce9ac229c015bb8bb489c3a41458ea3:

  toolchain-external: assume that by default, glibc toolchains have RPC support (2012-11-04 18:26:06 +0100)

----------------------------------------------------------------
Thomas Petazzoni (21):
      toolchain-external: ARM 2012.03 has RPC support
      libtirpc: new package
      busybox: add support to link against libtirpc when available
      lmbench: add support to use libtirpc when available
      nfs-utils: add support to use RPC support from libtirpc
      rpcbind: new package
      portmap: mention that rpcbind is the project that superseds portmap
      quota: add support to use RPC support from libtirpc
      samba: unconditionally enable --with-sys-quotas
      xinetd: add support to use RPC support from libtirpc
      toolchain-external: add Sourcery CodeBench SuperH 2012.03
      toolchain-external: add Sourcery CodeBench x86 2012.03
      toolchain-external: add support for Sourcery CodeBench SH 2012.09
      toolchain-external: add Sourcery CodeBench x86/x86_64 2012.09
      toolchain-external: remove Sourcery CodeBench ARM 2010q1
      toolchain-external: remove Sourcery CodeBench ARM 2010.09
      toolchain-external: remove Sourcery CodeBench SH 2010.09
      toolchain-external: remove Sourcery CodeBench x86/x86_64 2010.09
      toolchain-external: remove Linaro 2012.06
      toolchain-external: remove Linaro 2012.07
      toolchain-external: assume that by default, glibc toolchains have RPC support

 package/Config.in                                  |    2 +
 package/busybox/busybox.mk                         |   19 +-
 package/libtirpc/Config.in                         |    7 +
 ...able-parts-of-TIRPC-requiring-NIS-support.patch |   70 ++++++++
 ...out-RPC-support-does-not-install-rpcent.h.patch |   26 +++
 ...btirpc-0003-Add-missing-INET6-conditional.patch |   60 +++++++
 .../libtirpc-0004-Make-IPv6-support-optional.patch |   43 +++++
 package/libtirpc/libtirpc.mk                       |   24 +++
 package/lmbench/Config.in                          |    6 +-
 package/lmbench/lmbench.mk                         |   11 +-
 package/nfs-utils/Config.in                        |    7 +-
 package/nfs-utils/nfs-utils.mk                     |    8 +-
 package/portmap/Config.in                          |    2 +
 package/quota/Config.in                            |    6 +-
 package/quota/quota.mk                             |   13 +-
 package/rpcbind/Config.in                          |    8 +
 package/rpcbind/rpcbind-01-no-yp-support.patch     |   46 +++++
 package/rpcbind/rpcbind.mk                         |   17 ++
 package/samba/samba.mk                             |    2 +-
 package/xinetd/xinetd.mk                           |   19 +-
 toolchain/toolchain-external/Config.in             |  186 ++++++++------------
 toolchain/toolchain-external/ext-tool.mk           |   32 ++--
 22 files changed, 462 insertions(+), 152 deletions(-)
 create mode 100644 package/libtirpc/Config.in
 create mode 100644 package/libtirpc/libtirpc-0001-Disable-parts-of-TIRPC-requiring-NIS-support.patch
 create mode 100644 package/libtirpc/libtirpc-0002-uClibc-without-RPC-support-does-not-install-rpcent.h.patch
 create mode 100644 package/libtirpc/libtirpc-0003-Add-missing-INET6-conditional.patch
 create mode 100644 package/libtirpc/libtirpc-0004-Make-IPv6-support-optional.patch
 create mode 100644 package/libtirpc/libtirpc.mk
 create mode 100644 package/rpcbind/Config.in
 create mode 100644 package/rpcbind/rpcbind-01-no-yp-support.patch
 create mode 100644 package/rpcbind/rpcbind.mk

Thanks,
-- 
Thomas Petazzoni

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

end of thread, other threads:[~2012-11-06  7:25 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-03 17:47 [Buildroot] [pull request] Pull request for branch for-2012.11/rpc-support Thomas Petazzoni
2012-11-03 17:47 ` [Buildroot] [PATCH 01/18] uClibc: use the Buildroot toolchain options instead of the hidden common options Thomas Petazzoni
2012-11-03 23:32   ` Arnout Vandecappelle
2012-11-04  0:11   ` Peter Korsgaard
2012-11-03 17:47 ` [Buildroot] [PATCH 02/18] busybox: don't force FEATURE_NFS_MOUNT Thomas Petazzoni
2012-11-03 23:35   ` Arnout Vandecappelle
2012-11-04  0:12   ` Peter Korsgaard
2012-11-03 17:47 ` [Buildroot] [PATCH 03/18] toolchain-crosstool-ng: use the Crosstool-ng config options instead of the common hidden ones Thomas Petazzoni
2012-11-03 23:39   ` Arnout Vandecappelle
2012-11-04  0:13   ` Peter Korsgaard
2012-11-03 17:47 ` [Buildroot] [PATCH 04/18] Rename BR2_INET_RPC to BR2_TOOLCHAIN_HAS_NATIVE_RPC Thomas Petazzoni
2012-11-03 23:42   ` Arnout Vandecappelle
2012-11-04  0:15   ` Peter Korsgaard
2012-11-03 17:47 ` [Buildroot] [PATCH 05/18] toolchain-external: improve glibc support to test availability of RPC Thomas Petazzoni
2012-11-03 23:45   ` Arnout Vandecappelle
2012-11-03 17:47 ` [Buildroot] [PATCH 06/18] libtirpc: new package Thomas Petazzoni
2012-11-03 23:53   ` Arnout Vandecappelle
2012-11-04  0:47   ` Peter Korsgaard
2012-11-03 17:47 ` [Buildroot] [PATCH 07/18] busybox: add support to link against libtirpc when available Thomas Petazzoni
2012-11-03 23:56   ` Arnout Vandecappelle
2012-11-03 17:47 ` [Buildroot] [PATCH 08/18] lmbench: add support to use " Thomas Petazzoni
2012-11-04  0:01   ` Arnout Vandecappelle
2012-11-03 17:47 ` [Buildroot] [PATCH 09/18] nfs-utils: add support to use RPC support from libtirpc Thomas Petazzoni
2012-11-03 17:47 ` [Buildroot] [PATCH 10/18] rpcbind: new package Thomas Petazzoni
2012-11-03 17:47 ` [Buildroot] [PATCH 11/18] portmap: mention that rpcbind is the project that superseds portmap Thomas Petazzoni
2012-11-03 17:47 ` [Buildroot] [PATCH 12/18] quota: add support to use RPC support from libtirpc Thomas Petazzoni
2012-11-03 17:47 ` [Buildroot] [PATCH 13/18] samba: unconditionally enable --with-sys-quotas Thomas Petazzoni
2012-11-03 17:47 ` [Buildroot] [PATCH 14/18] xinetd: add support to use RPC support from libtirpc Thomas Petazzoni
2012-11-03 17:48 ` [Buildroot] [PATCH 15/18] toolchain-external: add Sourcery CodeBench SuperH 2012.03 Thomas Petazzoni
2012-11-04  6:52   ` Baruch Siach
2012-11-03 17:48 ` [Buildroot] [PATCH 16/18] toolchain-external: add Sourcery CodeBench x86 2012.03 Thomas Petazzoni
2012-11-04  3:15   ` Arnout Vandecappelle
2012-11-03 17:48 ` [Buildroot] [PATCH 17/18] netkitbase: mark as deprecated Thomas Petazzoni
2012-11-04  0:18   ` Peter Korsgaard
2012-11-03 17:48 ` [Buildroot] [PATCH 18/18] netkittelnet: " Thomas Petazzoni
2012-11-04  0:18   ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2012-11-04 12:04 [Buildroot] [pull request] Pull request for branch for-2012.11/rpc-support Thomas Petazzoni
2012-11-04 17:34 Thomas Petazzoni
2012-11-06  7:22 ` Peter Korsgaard
2012-11-06  7:25   ` Thomas Petazzoni

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