view sources/targets/armv6l/settings @ 871:b274eb556b50

Merge common uclibc miniconfig stuff into baseconfig-uClibc, and add the few lines that vary per target to each target's settings file.
author Rob Landley <rob@landley.net>
date Fri, 30 Oct 2009 03:45:47 -0500
parents 946b01b2cc7f
children 2f39d1bfb2fd
line wrap: on
line source

# ARMv6 with vector floating point (vfp).

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

CROSS_TARGET="armv6l-unknown-linux-gnueabi"

ROOT=sda
CONSOLE=ttyAMA0

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

UCLIBC_CONFIG="
TARGET_arm=y
CONFIG_ARM_EABI=y
ARCH_WANTS_LITTLE_ENDIAN=y
DOPIC=y
"

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