From owner-svn-src-all@FreeBSD.ORG Mon Nov 17 19:53:37 2008 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E3C4E106564A; Mon, 17 Nov 2008 19:53:37 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 9B8EC8FC16; Mon, 17 Nov 2008 19:53:37 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.2/8.14.1) with ESMTP id mAHJppjc023979; Mon, 17 Nov 2008 12:51:51 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Mon, 17 Nov 2008 12:53:10 -0700 (MST) Message-Id: <20081117.125310.-233674490.imp@bsdimp.com> To: kostikbel@gmail.com From: "M. Warner Losh" In-Reply-To: <20081117193541.GG90129@deviant.kiev.zoral.com.ua> References: <200811170237.mAH2bjY5088186@ambrisko.com> <200811171211.42740.jhb@freebsd.org> <20081117193541.GG90129@deviant.kiev.zoral.com.ua> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: ambrisko@FreeBSD.org, src-committers@FreeBSD.org, ambrisko@ambrisko.com, jhb@FreeBSD.org, svn-src-all@FreeBSD.org, svn-src-head@FreeBSD.org Subject: Re: svn commit: r184974 - head/sys/dev/mfi X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Nov 2008 19:53:38 -0000 In message: <20081117193541.GG90129@deviant.kiev.zoral.com.ua> Kostik Belousov writes: : diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c : index f4e4614..114e0ba 100644 : --- a/sys/kern/imgact_aout.c : +++ b/sys/kern/imgact_aout.c : @@ -82,7 +82,17 @@ struct sysentvec aout_sysvec = { : .sv_copyout_strings = exec_copyout_strings, : .sv_setregs = exec_setregs, : .sv_fixlimit = NULL, : - .sv_maxssiz = NULL : + .sv_maxssiz = NULL, : + .sv_flags = SV_NATIVE | SV_AOUT | : +#if defined(__i386__) : + SV_IA32 | SV_ILP32 : +#elif defined(__powerpc__) || defined(__mips__) : + SV_ILP32 : +#elif defined(__ia64__) || defined(__sparc64__) || defined(__amd64__) : + SV_LP64 : +#else : +#error Choose SV_XXX flags for the platform : +#endif : }; I didn't think we supported aout for mips. Also, arm is missing from the list :-) Warner