From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43986) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhI6E-0008JN-Uj for qemu-devel@nongnu.org; Mon, 05 May 2014 08:34:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WhI68-000165-PY for qemu-devel@nongnu.org; Mon, 05 May 2014 08:34:26 -0400 Received: from afflict.kos.to ([92.243.29.197]:49050) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WhI68-00015X-Hx for qemu-devel@nongnu.org; Mon, 05 May 2014 08:34:20 -0400 From: riku.voipio@linaro.org Date: Mon, 5 May 2014 15:34:17 +0300 Message-Id: Subject: [Qemu-devel] [PULL v2 00/15] linux-user update List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Riku Voipio , Anthony Liguori From: Riku Voipio The following changes since commit fdaad4715ae9e998fd0595bedfb16fdaf0c68ccc: Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20140501' into staging (2014-05-02 11:32:00 +0100) are available in the git repository at: http://git.linaro.org/git/people/riku.voipio/qemu.git for you to fetch changes up to a39fb273bddd315b440b0617783051456a148242: linux-user: fix getrusage and wait4 failures with invalid rusage struct (2014-05-05 15:21:05 +0300) Huw Davies (2): linux-user: Move if-elses to a switch statement. linux-user: Add support for SCM_CREDENTIALS. James Hogan (2): linux-user: Assert stack used for auxvec, envp, argv linux-user: Handle arches with llseek instead of _llseek Maxim Ostapenko (1): linux-user: Add /proc/self/exe open forwarding Natanael Copa (1): linux-user: avoid using glibc internals in _syscall5 and in definition of target_sigevent struct Petar Jovanovic (1): linux-user: fix getrusage and wait4 failures with invalid rusage struct Peter Maydell (5): linux-user/signal.c: Set fault address in AArch64 signal info linux-user/elfload.c: Fix incorrect ARM HWCAP bits linux-user/elfload.c: Update ARM HWCAP bits linux-user/elfload.c: Fix A64 code which was incorrectly acting like A32 linux-user/elfload.c: Support ARM HWCAP2 flags Riku Voipio (3): linux-user: rename cpu-uname -> uname linux-user: move uname functions to uname.c linux-user: remove configure option for setting uname release configure | 8 -- include/elf.h | 1 + linux-user/Makefile.objs | 2 +- linux-user/cpu-uname.c | 72 ------------------ linux-user/cpu-uname.h | 1 - linux-user/elfload.c | 147 +++++++++++++++++++++++++++++++----- linux-user/main.c | 2 +- linux-user/signal.c | 3 +- linux-user/syscall.c | 189 ++++++++++++++++------------------------------ linux-user/syscall_defs.h | 16 +++- linux-user/uname.c | 171 +++++++++++++++++++++++++++++++++++++++++ linux-user/uname.h | 10 +++ 12 files changed, 392 insertions(+), 230 deletions(-) delete mode 100644 linux-user/cpu-uname.c delete mode 100644 linux-user/cpu-uname.h create mode 100644 linux-user/uname.c create mode 100644 linux-user/uname.h -- 2.0.0.rc0