view sources/targets/mips64 @ 1400:0b1022dc9a36

Remove one more "settings" dependency from functions.sh, and convert lots of architecture configurations from directory to file.
author Rob Landley <rob@landley.net>
date Sun, 26 Jun 2011 20:09:37 -0500
parents
children b499abdbcdfa
line wrap: on
line source

DESCRIPTION="64 bit big endian mips"

KARCH=mips
KERNEL_PATH=vmlinux
BINUTILS_FLAGS="--enable-64-bit-bfd"
GCC_FLAGS=
QEMU_TEST=mips64

ROOT=hda
CONSOLE=ttyS0

# Gentoo from Scratch
GFS_CHOST="mips64-gentoo-linux-uclibc"
GFS_ARCH="mips64"

UCLIBC_CONFIG="
TARGET_mips=y
CONFIG_MIPS_N64_ABI=y
CONFIG_MIPS_ISA_MIPS64=y
UCLIBC_HAS_FPU=y
"

LINUX_CONFIG="
CONFIG_CPU_MIPS64_R1=y
CONFIG_64BIT=y
CONFIG_MIPS_MALTA=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_PCNET32=y
CONFIG_BLK_DEV_PIIX=y
"

emulator_command()
{
  echo qemu-system-mips64 -M malta $(qemu_defaults "$@")
}