From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60929) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKfvm-0005pZ-3n for qemu-devel@nongnu.org; Mon, 03 Mar 2014 22:22:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WKfvh-0005Pm-Be for qemu-devel@nongnu.org; Mon, 03 Mar 2014 22:22:10 -0500 Received: from afflict.kos.to ([92.243.29.197]:45228) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKfvh-0005PJ-4G for qemu-devel@nongnu.org; Mon, 03 Mar 2014 22:22:05 -0500 From: riku.voipio@linaro.org Date: Tue, 4 Mar 2014 05:21:57 +0200 Message-Id: <1393903321-6352-1-git-send-email-riku.voipio@linaro.org> Subject: [Qemu-devel] [PATCH 0/4] linux-user: uname release cleanup List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, Riku Voipio From: Riku Voipio Currently some distributors use --enable-uname-release=2.6.32 or something similar to allow running new target binaries on old host systems. In 4a24a758101ff726c9bd3b867e12d5580c793af0 and more flexible solution was created. However, if you continue to compile with the --enable-uname-release option, the new way will be overriden. To make sure people stop using the old way when 2.0 gets released, move all targets to the new way, and remove the old configure option. Riku Voipio (4): linux-user: rename cpu-uname -> uname linux-user: move uname functions to uname.c linux-user: set minimum kernel version to 2.6.32 linux-user: remove configure option for setting uname release configure | 8 -- linux-user/Makefile.objs | 2 +- linux-user/alpha/syscall.h | 1 + linux-user/arm/syscall.h | 1 + linux-user/cpu-uname.c | 72 ----------------- linux-user/cpu-uname.h | 1 - linux-user/cris/syscall.h | 2 +- linux-user/i386/syscall.h | 1 + linux-user/m68k/syscall.h | 2 +- linux-user/main.c | 2 +- linux-user/microblaze/syscall.h | 2 +- linux-user/mips/syscall.h | 1 + linux-user/mips64/syscall.h | 1 + linux-user/openrisc/syscall.h | 1 + linux-user/ppc/syscall.h | 1 + linux-user/s390x/syscall.h | 1 + linux-user/sh4/syscall.h | 1 + linux-user/sparc/syscall.h | 1 + linux-user/sparc64/syscall.h | 1 + linux-user/syscall.c | 104 +----------------------- linux-user/uname.c | 171 ++++++++++++++++++++++++++++++++++++++++ linux-user/uname.h | 10 +++ linux-user/unicore32/syscall.h | 1 + linux-user/x86_64/syscall.h | 1 + 24 files changed, 200 insertions(+), 189 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 -- 1.8.1.2