view sources/targets/armv5l/settings @ 705:04109e3f877e

Rename "details" to "settings" in sources/targets.
author Rob Landley <rob@landley.net>
date Tue, 07 Apr 2009 19:48:56 -0500
parents sources/targets/armv5l/details@a71b8cec9cd5
children 4ff4cf117082
line wrap: on
line source

# ARMv5 with vector floating point (vfp).  Should run about 25% faster than
# the armv4 image for integer stuff, and faster than that for floating point.
# Assuming you have at least ARMv5 hardware (which most stuff sold today is).

KARCH=arm
KERNEL_PATH=arch/${KARCH}/boot/zImage
GCC_FLAGS="--with-march=armv5 --with-mfloat-abi=soft --with-mfp=vfp --disable-sjlj-exceptions"
BINUTILS_FLAGS=
QEMU_TEST=$KARCH

CROSS_TARGET=armv5l-unknown-linux-gnueabi

ROOT=sda
CONSOLE=ttyAMA0

# Gentoo from Scratch
GFS_CHOST="armv5l-unknown-linux-gnueabi"
GFS_ARCH="arm"

emulator_command()
{
  echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \
    -net nic,model=rtl8139 -net user
}