From: Kang Kai <Kai.Kang@windriver.com>
To: <ross.burton@intel.com>
Cc: jslater@windriver.com, openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 0/9] V2: Add machine qemuaarch64
Date: Wed, 17 Sep 2014 17:13:27 +0800 [thread overview]
Message-ID: <541950B7.6080008@windriver.com> (raw)
In-Reply-To: <cover.1410879378.git.kai.kang@windriver.com>
On 2014年09月16日 23:06, Kai Kang wrote:
> V2:
> * fix kernel linux-yocto build faiure
> * redefine position of dynamic linker from /lib to /lib64
> * other fixes of userspace packages
>
> Test with Joe Slater's patches:
> * siteinfo: account for 32 and 64 bit arm
> * sysprof: add aarch64 support
Add there are 2 known failures of build world:
1 meta/recipes-kernel/cryptodev/cryptodev-module_1.6.bb: it needs a
valid kernel config. CONFIG_MODULES is not set for now.
2 meta/recipes-support/libunwind/libunwind_1.1.bb: it was added recently
and seems not support aarch64. Maybe we should exclude it from world for
aarch64.
Regards,
Kai
>
> The following changes since commit fceef0cace6670a8c5f15cd2f31a191176732730:
>
> bitbake: data_smart: Fix remove operator and its interaction with data expansion (2014-09-13 08:52:49 +0100)
>
> are available in the git repository at:
>
> git://git.pokylinux.org/poky-contrib kangkai/qemuarm64
> http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kangkai/qemuarm64
>
> Kai Kang (9):
> linux-yocto: depend on libgcc for aarch64
> Add machine qemuarm64
> gcc-4.9: redefine dynamic linker for aarch64
> libatomics-ops: add aarch64 target iniitial support
> qt4-native: add aarch64 support
> qt4: add aarch64 support
> qt4-embedded: disable webkit
> libpng: add neon option for aarch64
> perf: disable libunwind support for aarch64
>
> meta/conf/bitbake.conf | 1 +
> meta/conf/machine/include/arm/arch-armv8.inc | 20 +
> meta/conf/machine/qemuarm64.conf | 12 +
> meta/recipes-devtools/gcc/gcc-4.9.inc | 1 +
> .../0056-redefine-dynamic-linker-for-aarch64.patch | 34 ++
> meta/recipes-kernel/linux/linux-yocto.inc | 1 +
> meta/recipes-kernel/perf/perf-features.inc | 1 +
> meta/recipes-multimedia/libpng/libpng_1.6.13.bb | 1 +
> .../0001-libatomic_ops-Aarch64-basic-port.patch | 239 ++++++++++
> .../pulseaudio/libatomics-ops_7.2.bb | 1 +
> meta/recipes-qt/qt4/qt4-4.8.6.inc | 4 +
> .../0029-aarch64_arm64_fix_arch_detection.patch | 53 +++
> .../0030-aarch64_arm64_qatomic_support.patch | 491 +++++++++++++++++++++
> .../qt4/qt4-4.8.6/0031-aarch64_arm64_mkspecs.patch | 124 ++++++
> .../qt4/qt4-4.8.6/0032-aarch64_add_header.patch | 18 +
> meta/recipes-qt/qt4/qt4-embedded_4.8.6.bb | 1 +
> meta/recipes-qt/qt4/qt4-native.inc | 4 +
> meta/recipes-qt/qt4/qt4-x11-free_4.8.6.bb | 3 +
> meta/recipes-qt/qt4/qt4_arch.inc | 1 +
> 19 files changed, 1010 insertions(+)
> create mode 100644 meta/conf/machine/include/arm/arch-armv8.inc
> create mode 100644 meta/conf/machine/qemuarm64.conf
> create mode 100644 meta/recipes-devtools/gcc/gcc-4.9/0056-redefine-dynamic-linker-for-aarch64.patch
> create mode 100644 meta/recipes-multimedia/pulseaudio/files/0001-libatomic_ops-Aarch64-basic-port.patch
> create mode 100644 meta/recipes-qt/qt4/qt4-4.8.6/0029-aarch64_arm64_fix_arch_detection.patch
> create mode 100644 meta/recipes-qt/qt4/qt4-4.8.6/0030-aarch64_arm64_qatomic_support.patch
> create mode 100644 meta/recipes-qt/qt4/qt4-4.8.6/0031-aarch64_arm64_mkspecs.patch
> create mode 100644 meta/recipes-qt/qt4/qt4-4.8.6/0032-aarch64_add_header.patch
>
--
Regards,
Neil | Kai Kang
next prev parent reply other threads:[~2014-09-17 9:13 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-16 15:06 [PATCH 0/9] V2: Add machine qemuaarch64 Kai Kang
2014-09-16 15:06 ` [PATCH 1/9] linux-yocto: depend on libgcc for aarch64 Kai Kang
2014-09-18 6:56 ` Khem Raj
2014-09-18 9:27 ` Kang Kai
2014-09-16 15:06 ` [PATCH 2/9] Add machine qemuarm64 Kai Kang
2014-09-16 15:06 ` [PATCH 3/9] gcc-4.9: redefine dynamic linker for aarch64 Kai Kang
2014-09-18 7:19 ` Khem Raj
2014-09-18 9:37 ` Kang Kai
2014-09-18 13:58 ` Mark Hatle
2014-09-18 14:13 ` Mark Hatle
2014-09-19 6:17 ` Kang Kai
2014-09-20 5:06 ` Mark Hatle
2014-09-16 15:06 ` [PATCH 4/9] libatomics-ops: add aarch64 target iniitial support Kai Kang
2014-09-16 15:06 ` [PATCH 5/9] qt4-native: add aarch64 support Kai Kang
2014-09-16 15:06 ` [PATCH 6/9] qt4: " Kai Kang
2014-09-16 15:06 ` [PATCH 7/9] qt4-embedded: disable webkit Kai Kang
2014-09-16 15:06 ` [PATCH 8/9] libpng: add neon option for aarch64 Kai Kang
2014-09-16 15:06 ` [PATCH 9/9] perf: disable libunwind support " Kai Kang
2014-09-18 7:07 ` Khem Raj
2014-09-18 9:38 ` Kang Kai
2014-09-17 9:13 ` Kang Kai [this message]
2014-09-17 15:11 ` [PATCH 0/9] V2: Add machine qemuaarch64 Burton, Ross
2014-09-18 9:40 ` Kang Kai
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=541950B7.6080008@windriver.com \
--to=kai.kang@windriver.com \
--cc=jslater@windriver.com \
--cc=openembedded-core@lists.openembedded.org \
--cc=ross.burton@intel.com \
/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