From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:58184) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsA1x-0004G6-Hy for qemu-devel@nongnu.org; Tue, 31 Jan 2012 04:29:47 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RsA1q-0002b2-J1 for qemu-devel@nongnu.org; Tue, 31 Jan 2012 04:29:37 -0500 Received: from afflict.kos.to ([92.243.29.197]:37224) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsA1q-0002aL-AO for qemu-devel@nongnu.org; Tue, 31 Jan 2012 04:29:30 -0500 From: riku.voipio@linaro.org Date: Tue, 31 Jan 2012 11:29:09 +0200 Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH 00/19] Pending linux-user patches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio From: Riku Voipio The collection of simpler linux-user patches submitted since release of 1= .0. To be sent as pull request later this week unless bugs found. Patches are also available in the git repository at: git://git.linaro.org/people/rikuvoipio/qemu.git linux-user-for-upstream Akos PASZTORY (1): linux-user: add SO_PEERCRED support for getsockopt Alexander Graf (7): linux-user: save auxv length linux-user: add open() hijack infrastructure linux-user: fake /proc/self/maps linux-user: fake /proc/self/stat linux-user: fake /proc/self/auxv linux-user: fix QEMU_STRACE=3D1 segfault linux-user: fix wait* syscall status returns Andreas F=C3=A4rber (5): linux-user: Add default-configs for mipsn32[el] linux-user: Add default configs for mips64[el] linux-user: Define TARGET_QEMU_ESIGRETURN for mipsn32 linux-user: Define TARGET_QEMU_ESIGRETURN for mips64 linux-user: Fix sa_flags byte swaps for mips Peter Maydell (4): linux-user/strace.c: Correct errno printing for mmap etc linux-user: Allow NULL value pointer in setxattr and getxattr linux-user/syscall.c: Implement f and l versions of set/get/removexattr linux-user: Implement *listxattr syscalls Riku Voipio (1): linux-user: stack_base is now mandatory on all targets =E9=99=B3=E9=9F=8B=E4=BB=BB (1): linux-user/main.c: Add option to user-mode emulation so that user can specify log file name default-configs/mips64-linux-user.mak | 1 + default-configs/mips64el-linux-user.mak | 1 + default-configs/mipsn32-linux-user.mak | 1 + default-configs/mipsn32el-linux-user.mak | 1 + linux-user/elfload.c | 15 +- linux-user/main.c | 7 + linux-user/mips64/syscall.h | 3 + linux-user/mipsn32/syscall.h | 3 + linux-user/qemu.h | 3 +- linux-user/signal.c | 8 + linux-user/strace.c | 19 ++- linux-user/syscall.c | 303 ++++++++++++++++++++++++= +++--- linux-user/syscall_defs.h | 6 + 13 files changed, 332 insertions(+), 39 deletions(-) create mode 100644 default-configs/mips64-linux-user.mak create mode 100644 default-configs/mips64el-linux-user.mak create mode 100644 default-configs/mipsn32-linux-user.mak create mode 100644 default-configs/mipsn32el-linux-user.mak --=20 1.7.5.4