From owner-svn-src-user@FreeBSD.ORG Fri May 30 18:05:04 2014 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F03EFE53; Fri, 30 May 2014 18:05:04 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DE89620F0; Fri, 30 May 2014 18:05:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4UI54T4095861; Fri, 30 May 2014 18:05:04 GMT (envelope-from cognet@svn.freebsd.org) Received: (from cognet@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4UI54kn095860; Fri, 30 May 2014 18:05:04 GMT (envelope-from cognet@svn.freebsd.org) Message-Id: <201405301805.s4UI54kn095860@svn.freebsd.org> From: Olivier Houchard Date: Fri, 30 May 2014 18:05:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r266898 - user/dchagin/lemul/sys/amd64/linux X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 18:05:05 -0000 Author: cognet Date: Fri May 30 18:05:04 2014 New Revision: 266898 URL: http://svnweb.freebsd.org/changeset/base/266898 Log: Move the linux64 files in /compat/linux64, so that we can have both 32bits and 64bits installed. Modified: user/dchagin/lemul/sys/amd64/linux/linux_sysvec.c Modified: user/dchagin/lemul/sys/amd64/linux/linux_sysvec.c ============================================================================== --- user/dchagin/lemul/sys/amd64/linux/linux_sysvec.c Fri May 30 18:04:10 2014 (r266897) +++ user/dchagin/lemul/sys/amd64/linux/linux_sysvec.c Fri May 30 18:05:04 2014 (r266898) @@ -912,7 +912,7 @@ static Elf64_Brandinfo linux_glibc2brand .brand = ELFOSABI_LINUX, .machine = EM_X86_64, .compat_3_brand = "Linux", - .emul_path = "/compat/linux", + .emul_path = "/compat/linux64", .interp_path = "/lib64/ld-linux-x86-64.so.2", .sysvec = &elf_linux_sysvec, .interp_newpath = NULL, @@ -924,7 +924,7 @@ static Elf64_Brandinfo linux_glibc2brand .brand = ELFOSABI_LINUX, .machine = EM_X86_64, .compat_3_brand = "Linux", - .emul_path = "/compat/linux", + .emul_path = "/compat/linux64", .interp_path = "/lib64/ld-linux.so.2", .sysvec = &elf_linux_sysvec, .interp_newpath = NULL,