From owner-cvs-all@FreeBSD.ORG Mon Aug 16 07:55:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E24B416A4CE; Mon, 16 Aug 2004 07:55:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF14843D41; Mon, 16 Aug 2004 07:55:06 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7G7t6pm064951; Mon, 16 Aug 2004 07:55:06 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7G7t6GG064950; Mon, 16 Aug 2004 07:55:06 GMT (envelope-from tjr) Message-Id: <200408160755.i7G7t6GG064950@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 16 Aug 2004 07:55:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.amd64 options.amd64 src/sys/amd64/conf NOTES src/sys/amd64/linux32 Makefile linux.h linux32_dummy.c linux32_genassym.c linux32_ipc64.h linux32_locore.s linux32_machdep.c linux32_proto.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 07:55:07 -0000 tjr 2004-08-16 07:55:06 UTC FreeBSD src repository Modified files: sys/conf options.amd64 files.amd64 sys/amd64/conf NOTES Added files: sys/amd64/linux32 Makefile linux.h linux32_dummy.c linux32_genassym.c linux32_ipc64.h linux32_locore.s linux32_machdep.c linux32_proto.h linux32_syscall.h linux32_sysent.c linux32_sysvec.c syscalls.conf syscalls.master Log: Add preliminary support for running 32-bit Linux binaries on amd64, enabled with the COMPAT_LINUX32 option. This is largely based on the i386 MD Linux emulations bits, but also builds on the 32-bit FreeBSD and generic IA-32 binary emulation work. Some of this is still a little rough around the edges, and will need to be revisited before 32-bit and 64-bit Linux emulation support can coexist in the same kernel. Revision Changes Path 1.16 +3 -0 src/sys/amd64/conf/NOTES 1.1 +15 -0 src/sys/amd64/linux32/Makefile (new) 1.1 +722 -0 src/sys/amd64/linux32/linux.h (new) 1.1 +91 -0 src/sys/amd64/linux32/linux32_dummy.c (new) 1.1 +17 -0 src/sys/amd64/linux32/linux32_genassym.c (new) 1.1 +145 -0 src/sys/amd64/linux32/linux32_ipc64.h (new) 1.1 +45 -0 src/sys/amd64/linux32/linux32_locore.s (new) 1.1 +1019 -0 src/sys/amd64/linux32/linux32_machdep.c (new) 1.1 +869 -0 src/sys/amd64/linux32/linux32_proto.h (new) 1.1 +222 -0 src/sys/amd64/linux32/linux32_syscall.h (new) 1.1 +288 -0 src/sys/amd64/linux32/linux32_sysent.c (new) 1.1 +1088 -0 src/sys/amd64/linux32/linux32_sysvec.c (new) 1.1 +11 -0 src/sys/amd64/linux32/syscalls.conf (new) 1.1 +345 -0 src/sys/amd64/linux32/syscalls.master (new) 1.45 +34 -1 src/sys/conf/files.amd64 1.15 +1 -0 src/sys/conf/options.amd64