Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Baruch Siach <baruch@tkos.co.il>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 00/14] toolchain-external: remove support for glibc before 2.17
Date: Fri, 16 Jun 2017 06:32:45 +0300	[thread overview]
Message-ID: <cover.1497583686.git.baruch@tkos.co.il> (raw)

As discussed[1] recently on the list it is time to remove support for glibc 
older than 2.17. This does not mean that toolchains with old glibc will stop 
working. It only means that we stop fixing older glibc build issues. In 
particular, the need to link with librt for clock_* system calls.

The only significant user visible change in this series is the removal of 
CodeSourcery toolchains for x86 and sh.

Two patches update a comment section and the manual to take into account the 
removal of toolchain in this series and in previous commits. A few more 
per-package patches remove local patches for the glibc librt issue.

The first patch is an unrelated fix to the external toolchain section in the 
manual.

[1] http://patchwork.ozlabs.org/patch/773384/

Baruch Siach (14):
  docs/manual: update external toolchain advantages list
  toolchain: remove CodeSourcery x86 toolchain
  toolchain: remove CodeSourcery sh toolchain
  package: remove CodeSourcery sh dependencies
  toolchain-external: update list of toolchains
  docs/manual: drop mention of removed external toolchains
  swupdate: don't link with librt
  aiccu: don't link with librt
  libv4l: don't link with librt
  e2fsprogs: don't link with librt
  liboping: no need to check for clock_gettime
  openipmi: no need to check for clock_gettime
  lirc-tools: no need to check for clock_gettime
  softether: no need to check for clock_gettime

 Config.in.legacy                                   | 18 +++++++
 docs/manual/configure.txt                          | 16 +++---
 package/aiccu/0003-clock-suite-functions-fix.patch | 18 -------
 ...her-header.patch => 0003-if-ether-header.patch} |  0
 package/domoticz/Config.in                         |  3 --
 .../0002-MCONFIG.in-handle-CLOCK_GETTIME_LIB.patch | 35 -------------
 ...001-configure-also-check-for-clockgettime.patch | 39 ---------------
 package/liboping/liboping.mk                       |  2 -
 ...3-utils-qv4l2-Makefile.am-link-with-librt.patch | 29 -----------
 package/libv4l/libv4l.mk                           |  3 +-
 package/liquid-dsp/Config.in                       |  1 -
 ...onfigure-check-for-clock_gettime-in-librt.patch | 54 --------------------
 ...-use-of-functions-killed-in-kernel-4.8.0.patch} |  0
 package/lirc-tools/lirc-tools.mk                   |  2 -
 ...c-detect-lrt-requirement-for-clock_gettim.patch | 57 ----------------------
 package/prboom/Config.in                           |  2 -
 package/qt/Config.in                               |  7 +--
 package/softether/0006-librt.patch                 | 33 -------------
 ...onfig.patch => 0006-uclibc-ai-addrconfig.patch} |  0
 package/swupdate/swupdate.config                   |  2 +-
 toolchain/toolchain-external/Config.in             | 12 +----
 .../toolchain-external/pkg-toolchain-external.mk   |  3 +-
 .../toolchain-external-codesourcery-sh/Config.in   | 25 ----------
 .../Config.in.options                              |  9 ----
 .../toolchain-external-codesourcery-sh.hash        |  3 --
 .../toolchain-external-codesourcery-sh.mk          | 13 -----
 .../toolchain-external-codesourcery-x86/Config.in  | 29 -----------
 .../Config.in.options                              |  9 ----
 .../toolchain-external-codesourcery-x86.hash       |  3 --
 .../toolchain-external-codesourcery-x86.mk         | 12 -----
 30 files changed, 31 insertions(+), 408 deletions(-)
 delete mode 100644 package/aiccu/0003-clock-suite-functions-fix.patch
 rename package/aiccu/{0004-if-ether-header.patch => 0003-if-ether-header.patch} (100%)
 delete mode 100644 package/e2fsprogs/0002-MCONFIG.in-handle-CLOCK_GETTIME_LIB.patch
 delete mode 100644 package/liboping/0001-configure-also-check-for-clockgettime.patch
 delete mode 100644 package/libv4l/0003-utils-qv4l2-Makefile.am-link-with-librt.patch
 delete mode 100644 package/lirc-tools/0002-configure-check-for-clock_gettime-in-librt.patch
 rename package/lirc-tools/{0003-lircd-Remove-use-of-functions-killed-in-kernel-4.8.0.patch => 0002-lircd-Remove-use-of-functions-killed-in-kernel-4.8.0.patch} (100%)
 delete mode 100644 package/openipmi/0002-configure.ac-detect-lrt-requirement-for-clock_gettim.patch
 delete mode 100644 package/softether/0006-librt.patch
 rename package/softether/{0007-uclibc-ai-addrconfig.patch => 0006-uclibc-ai-addrconfig.patch} (100%)
 delete mode 100644 toolchain/toolchain-external/toolchain-external-codesourcery-sh/Config.in
 delete mode 100644 toolchain/toolchain-external/toolchain-external-codesourcery-sh/Config.in.options
 delete mode 100644 toolchain/toolchain-external/toolchain-external-codesourcery-sh/toolchain-external-codesourcery-sh.hash
 delete mode 100644 toolchain/toolchain-external/toolchain-external-codesourcery-sh/toolchain-external-codesourcery-sh.mk
 delete mode 100644 toolchain/toolchain-external/toolchain-external-codesourcery-x86/Config.in
 delete mode 100644 toolchain/toolchain-external/toolchain-external-codesourcery-x86/Config.in.options
 delete mode 100644 toolchain/toolchain-external/toolchain-external-codesourcery-x86/toolchain-external-codesourcery-x86.hash
 delete mode 100644 toolchain/toolchain-external/toolchain-external-codesourcery-x86/toolchain-external-codesourcery-x86.mk

-- 
2.11.0

             reply	other threads:[~2017-06-16  3:32 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-16  3:32 Baruch Siach [this message]
2017-06-16  3:32 ` [Buildroot] [PATCH 01/14] docs/manual: update external toolchain advantages list Baruch Siach
2017-06-18  9:02   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 02/14] toolchain: remove CodeSourcery x86 toolchain Baruch Siach
2017-06-18  9:08   ` Yann E. MORIN
2017-06-18  9:14     ` Baruch Siach
2017-06-18  9:19       ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 03/14] toolchain: remove CodeSourcery sh toolchain Baruch Siach
2017-06-18  9:09   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 04/14] package: remove CodeSourcery sh dependencies Baruch Siach
2017-06-18  9:12   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 05/14] toolchain-external: update list of toolchains Baruch Siach
2017-06-18  9:21   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 06/14] docs/manual: drop mention of removed external toolchains Baruch Siach
2017-06-18  9:23   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 07/14] swupdate: don't link with librt Baruch Siach
2017-06-18  9:26   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 08/14] aiccu: " Baruch Siach
2017-06-18  9:27   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 09/14] libv4l: " Baruch Siach
2017-06-18  9:31   ` Yann E. MORIN
2017-06-18  9:34     ` Baruch Siach
2017-06-18  9:36       ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 10/14] e2fsprogs: " Baruch Siach
2017-06-18  9:33   ` Yann E. MORIN
2017-06-18 10:13     ` Baruch Siach
2017-06-18 11:55       ` Yann E. MORIN
2017-06-19 19:14         ` Baruch Siach
2017-06-16  3:32 ` [Buildroot] [PATCH 11/14] liboping: no need to check for clock_gettime Baruch Siach
2017-06-18  9:37   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 12/14] openipmi: " Baruch Siach
2017-06-18  9:42   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 13/14] lirc-tools: " Baruch Siach
2017-06-18  9:45   ` Yann E. MORIN
2017-06-16  3:32 ` [Buildroot] [PATCH 14/14] softether: " Baruch Siach
2017-06-18  9:47   ` Yann E. MORIN
2017-06-20 20:23 ` [Buildroot] [PATCH 00/14] toolchain-external: remove support for glibc before 2.17 Thomas Petazzoni
2017-06-22  7:57 ` Arnout Vandecappelle
2017-06-22 17:01   ` Baruch Siach
2017-06-23 21:33     ` Waldemar Brodkorb
2017-06-25  4:57       ` Baruch Siach

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.1497583686.git.baruch@tkos.co.il \
    --to=baruch@tkos.co.il \
    --cc=buildroot@busybox.net \
    /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