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
This commit is contained in:
Ruslan Bukin 2016-11-23 11:56:22 +00:00
parent 62993bb71e
commit 3ace382ab0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=309055
4 changed files with 28 additions and 4 deletions

View File

@ -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

View File

@ -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"

13
sys/mips/conf/MALTA64EL Normal file
View File

@ -0,0 +1,13 @@
# MALTA64 -- 64-bit kernel config for MALTA endian-little boards
#
# $FreeBSD$
ident MALTA64
include "std.MALTA"
machine mips mips64el
makeoptions ARCH_FLAGS="-march=mips64 -mabi=64"
makeoptions KERNLOADADDR=0xffffffff80100000

11
sys/mips/conf/MALTAEL Normal file
View File

@ -0,0 +1,11 @@
# MALTA -- Kernel config for MALTA endian-little boards
#
# $FreeBSD$
ident MALTA
include "std.MALTA"
machine mips mipsel
makeoptions KERNLOADADDR=0x80100000