From owner-svn-src-head@freebsd.org Wed Nov 23 11:56:23 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4FDEC508C1; Wed, 23 Nov 2016 11:56:23 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 A59EE84A; Wed, 23 Nov 2016 11:56:23 +0000 (UTC) (envelope-from br@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uANBuM6u006213; Wed, 23 Nov 2016 11:56:22 GMT (envelope-from br@FreeBSD.org) Received: (from br@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANBuMkT006209; Wed, 23 Nov 2016 11:56:22 GMT (envelope-from br@FreeBSD.org) Message-Id: <201611231156.uANBuMkT006209@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: br set sender to br@FreeBSD.org using -f From: Ruslan Bukin Date: Wed, 23 Nov 2016 11:56:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r309055 - head/sys/mips/conf X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Nov 2016 11:56:24 -0000 Author: br Date: Wed Nov 23 11:56:22 2016 New Revision: 309055 URL: https://svnweb.freebsd.org/changeset/base/309055 Log: Split MALTA board config to big and little endian versions. This fixes compilation after r308807 ("Pass MACHINE_ARCH on command line for MIPS kernels.") Sponsored by: DARPA, AFRL Added: head/sys/mips/conf/MALTA64EL - copied, changed from r309054, head/sys/mips/conf/MALTA64 head/sys/mips/conf/MALTAEL - copied, changed from r309054, head/sys/mips/conf/MALTA Modified: head/sys/mips/conf/MALTA head/sys/mips/conf/MALTA64 Modified: head/sys/mips/conf/MALTA ============================================================================== --- head/sys/mips/conf/MALTA Wed Nov 23 11:32:57 2016 (r309054) +++ head/sys/mips/conf/MALTA Wed Nov 23 11:56:22 2016 (r309055) @@ -1,4 +1,4 @@ -# MALTA -- Kernel config for MALTA boards +# MALTA -- Kernel config for MALTA endian-big boards # # $FreeBSD$ @@ -6,6 +6,6 @@ ident MALTA include "std.MALTA" -machine mips mipsel # Malta supports both, so it isn't in std.malta +machine mips mips makeoptions KERNLOADADDR=0x80100000 Modified: head/sys/mips/conf/MALTA64 ============================================================================== --- head/sys/mips/conf/MALTA64 Wed Nov 23 11:32:57 2016 (r309054) +++ head/sys/mips/conf/MALTA64 Wed Nov 23 11:56:22 2016 (r309055) @@ -1,4 +1,4 @@ -# MALTA64 -- 64-bit kernel config for MALTA boards +# MALTA64 -- 64-bit kernel config for MALTA endian-big boards # # $FreeBSD$ @@ -6,7 +6,7 @@ ident MALTA64 include "std.MALTA" -machine mips mips64el # Malta supports both, so it isn't in std.malta +machine mips mips64 makeoptions ARCH_FLAGS="-march=mips64 -mabi=64" Copied and modified: head/sys/mips/conf/MALTA64EL (from r309054, head/sys/mips/conf/MALTA64) ============================================================================== --- head/sys/mips/conf/MALTA64 Wed Nov 23 11:32:57 2016 (r309054, copy source) +++ head/sys/mips/conf/MALTA64EL Wed Nov 23 11:56:22 2016 (r309055) @@ -1,4 +1,4 @@ -# MALTA64 -- 64-bit kernel config for MALTA boards +# MALTA64 -- 64-bit kernel config for MALTA endian-little boards # # $FreeBSD$ @@ -6,7 +6,7 @@ ident MALTA64 include "std.MALTA" -machine mips mips64el # Malta supports both, so it isn't in std.malta +machine mips mips64el makeoptions ARCH_FLAGS="-march=mips64 -mabi=64" Copied and modified: head/sys/mips/conf/MALTAEL (from r309054, head/sys/mips/conf/MALTA) ============================================================================== --- head/sys/mips/conf/MALTA Wed Nov 23 11:32:57 2016 (r309054, copy source) +++ head/sys/mips/conf/MALTAEL Wed Nov 23 11:56:22 2016 (r309055) @@ -1,4 +1,4 @@ -# MALTA -- Kernel config for MALTA boards +# MALTA -- Kernel config for MALTA endian-little boards # # $FreeBSD$ @@ -6,6 +6,6 @@ ident MALTA include "std.MALTA" -machine mips mipsel # Malta supports both, so it isn't in std.malta +machine mips mipsel makeoptions KERNLOADADDR=0x80100000