From: Khem Raj <raj.khem@gmail.com>
To: openembedded-core@lists.openembedded.org
Subject: [PATCH 00/13] Add musl to OE-Core
Date: Tue, 8 Dec 2015 08:12:21 +0000 [thread overview]
Message-ID: <cover.1449562195.git.raj.khem@gmail.com> (raw)
This is a mimimal set of changes brought in from meta-musl
to OE-Core, with this set one can build core-image-minimal using musl
by setting
TCLIBC=musl
for all supported architectures, eventually we will bring
more changes to other packages which will enable more complex
image builds and eventually world.
v2: Address review feedback
Khem Raj (13):
gcc: Add support for building musl configuration
autoconf: Add musl support
gdb: Fix build with musl
mtd-utils: Backport and create patches to support musl
squashfs-tools: Define FNM_EXTMATCH if not defined
mtools: Use proper glibc override to add glibc packages to
recommendations
musl: Add recipe
sysvinit: Fix build with musl
gettext: Delete libintl.h and charset.alias
busybox: Add config for musl
openssl: Add musl configuration support
libpam: Fix build with musl
attr: Add patch to account for use of internal glibc header
meta/recipes-connectivity/openssl/openssl.inc | 4 +-
.../openssl/openssl/configure-musl-target.patch | 27 +++
.../recipes-connectivity/openssl/openssl_1.0.2d.bb | 1 +
...user-use-POSIX-getpwent-instead-of-getpwe.patch | 71 ++++++
meta/recipes-core/busybox/busybox/musl.cfg | 12 +
meta/recipes-core/busybox/busybox_1.24.1.bb | 2 +
meta/recipes-core/gettext/gettext_0.16.1.bb | 5 +
meta/recipes-core/gettext/gettext_0.19.4.bb | 4 +
meta/recipes-core/musl/musl.inc | 26 ++
meta/recipes-core/musl/musl_git.bb | 58 +++++
meta/recipes-core/sysvinit/sysvinit/realpath.patch | 78 ++++++
meta/recipes-core/sysvinit/sysvinit_2.88dsf.bb | 1 +
.../autoconf/autoconf/add_musl_config.patch | 26 ++
meta/recipes-devtools/autoconf/autoconf_2.69.bb | 1 +
meta/recipes-devtools/gcc/gcc-4.9.inc | 4 +
.../gcc/gcc-4.9/0067-gcc-musl-support.patch | 267 +++++++++++++++++++++
.../gcc/gcc-4.9/0068-musl-dynamic-linker.patch | 205 ++++++++++++++++
.../gcc/gcc-4.9/0069-musl-no-fixincludes.patch | 21 ++
.../gcc/gcc-4.9/0070-libstdc-musl.patch | 32 +++
meta/recipes-devtools/gcc/gcc-5.2.inc | 4 +
.../gcc/gcc-5.2/0043-libstdc-musl.patch | 32 +++
.../gcc/gcc-5.2/0044-gcc-musl-support.patch | 267 +++++++++++++++++++++
.../gcc/gcc-5.2/0045-musl-dynamic-linker.patch | 198 +++++++++++++++
.../gcc/gcc-5.2/0046-musl-no-fixincludes.patch | 22 ++
meta/recipes-devtools/gdb/gdb.inc | 1 +
...0001-Use-exported-definitions-of-SIGRTMIN.patch | 54 +++++
.../mtd/mtd-utils/0001-Fix-build-with-musl.patch | 53 ++++
...ibfec-use-standard-C-type-instead-of-u_lo.patch | 56 +++++
.../mtd/mtd-utils/010-fix-rpmatch.patch | 24 ++
meta/recipes-devtools/mtd/mtd-utils_git.bb | 4 +
meta/recipes-devtools/mtools/mtools_4.0.18.bb | 4 +-
.../squashfs-tools/squashfs-tools/fix-compat.patch | 63 +++++
.../squashfs-tools/squashfs-tools_git.bb | 1 +
...upport-for-defining-missing-funcitonality.patch | 68 ++++++
.../pam/libpam/include_paths_header.patch | 59 +++++
meta/recipes-extended/pam/libpam_1.2.1.bb | 5 +-
meta/recipes-support/attr/attr_2.4.47.bb | 4 +-
.../attr/files/dont-use-decl-macros.patch | 56 +++++
38 files changed, 1815 insertions(+), 5 deletions(-)
create mode 100644 meta/recipes-connectivity/openssl/openssl/configure-musl-target.patch
create mode 100644 meta/recipes-core/busybox/busybox/0001-linedit-deluser-use-POSIX-getpwent-instead-of-getpwe.patch
create mode 100644 meta/recipes-core/busybox/busybox/musl.cfg
create mode 100644 meta/recipes-core/musl/musl.inc
create mode 100644 meta/recipes-core/musl/musl_git.bb
create mode 100644 meta/recipes-core/sysvinit/sysvinit/realpath.patch
create mode 100644 meta/recipes-devtools/autoconf/autoconf/add_musl_config.patch
create mode 100644 meta/recipes-devtools/gcc/gcc-4.9/0067-gcc-musl-support.patch
create mode 100644 meta/recipes-devtools/gcc/gcc-4.9/0068-musl-dynamic-linker.patch
create mode 100644 meta/recipes-devtools/gcc/gcc-4.9/0069-musl-no-fixincludes.patch
create mode 100644 meta/recipes-devtools/gcc/gcc-4.9/0070-libstdc-musl.patch
create mode 100644 meta/recipes-devtools/gcc/gcc-5.2/0043-libstdc-musl.patch
create mode 100644 meta/recipes-devtools/gcc/gcc-5.2/0044-gcc-musl-support.patch
create mode 100644 meta/recipes-devtools/gcc/gcc-5.2/0045-musl-dynamic-linker.patch
create mode 100644 meta/recipes-devtools/gcc/gcc-5.2/0046-musl-no-fixincludes.patch
create mode 100644 meta/recipes-devtools/gdb/gdb/0001-Use-exported-definitions-of-SIGRTMIN.patch
create mode 100644 meta/recipes-devtools/mtd/mtd-utils/0001-Fix-build-with-musl.patch
create mode 100644 meta/recipes-devtools/mtd/mtd-utils/0001-mtd-utils-libfec-use-standard-C-type-instead-of-u_lo.patch
create mode 100644 meta/recipes-devtools/mtd/mtd-utils/010-fix-rpmatch.patch
create mode 100644 meta/recipes-devtools/squashfs-tools/squashfs-tools/fix-compat.patch
create mode 100644 meta/recipes-extended/pam/libpam/0001-Add-support-for-defining-missing-funcitonality.patch
create mode 100644 meta/recipes-extended/pam/libpam/include_paths_header.patch
create mode 100644 meta/recipes-support/attr/files/dont-use-decl-macros.patch
--
2.6.3
next reply other threads:[~2015-12-08 8:12 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-12-08 8:12 Khem Raj [this message]
2015-12-08 8:12 ` [PATCH 01/13] gcc: Add support for building musl configuration Khem Raj
2015-12-08 8:12 ` [PATCH 02/13] autoconf: Add musl support Khem Raj
2015-12-08 8:12 ` [PATCH 03/13] gdb: Fix build with musl Khem Raj
2015-12-08 8:12 ` [PATCH 04/13] mtd-utils: Backport and create patches to support musl Khem Raj
2015-12-08 8:12 ` [PATCH 05/13] squashfs-tools: Define FNM_EXTMATCH if not defined Khem Raj
2015-12-08 8:12 ` [PATCH 06/13] mtools: Use proper glibc override to add glibc packages to recommendations Khem Raj
2015-12-08 8:12 ` [PATCH 07/13] musl: Add recipe Khem Raj
2015-12-08 8:12 ` [PATCH 08/13] sysvinit: Fix build with musl Khem Raj
2015-12-08 18:08 ` Phil Blundell
2015-12-08 18:09 ` Phil Blundell
2015-12-08 8:12 ` [PATCH 09/13] gettext: Delete libintl.h and charset.alias Khem Raj
2015-12-08 8:12 ` [PATCH 10/13] busybox: Add config for musl Khem Raj
2015-12-09 1:25 ` Khem Raj
2015-12-08 8:12 ` [PATCH 11/13] openssl: Add musl configuration support Khem Raj
2015-12-08 8:12 ` [PATCH 12/13] libpam: Fix build with musl Khem Raj
2015-12-08 8:12 ` [PATCH 13/13] attr: Add patch to account for use of internal glibc header Khem Raj
2015-12-09 1:36 ` [PATCH 00/13] Add musl to OE-Core Khem Raj
-- strict thread matches above, loose matches on Subject: below --
2015-11-19 17:10 Khem Raj
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.1449562195.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.