view sources/targets/mipsel @ 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="Mips r4k little endian"

KARCH=mips
KERNEL_PATH=vmlinux
BINUTILS_FLAGS=
GCC_FLAGS=
QEMU_TEST=mipsel

ROOT=hda
CONSOLE=ttyS0

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

UCLIBC_CONFIG="
TARGET_mips=y
ARCH_WANTS_LITTLE_ENDIAN=y
UCLIBC_HAS_FPU=y
"

LINUX_CONFIG="
CONFIG_MIPS_MALTA=y
CONFIG_CPU_LITTLE_ENDIAN=y
CONFIG_CPU_MIPS32_R2=y
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_PCNET32=y
CONFIG_BLK_DEV_PIIX=y
"

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