changeset 1806:d7921aa5ea60 draft 1.4.3

The armv4 big-endian target never worked, remove it. QEMU's board emulations had endiannes assumptions, v4 without t was oabi anyway, the kernel hasn't regression tested this in forever... If somebody wants to send me a newer big-endian arm target that somebody can actually test, I'm all for it. But this just confuses people (first in the list alphabetically, does not work.)
author Rob Landley <rob@landley.net>
date Wed, 04 Nov 2015 01:32:30 -0600
parents bbe71b3a271d
children 312b0b928854
files sources/targets/armv4eb
diffstat 1 files changed, 0 insertions(+), 37 deletions(-) [+]
line wrap: on
line diff
--- a/sources/targets/armv4eb	Wed Nov 04 00:14:29 2015 -0600
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,37 +0,0 @@
-DESCRIPTION="
-ARM v4, big endian, soft float, OABI.
-
-Although arm processors can work with either endianness, most ARM boards are
-wired little endian, so building big endian arm is fairly uncommon.  The
-ixp4xx, ixp2000, and ixp23xx Linux targets support big endian operation.
-"
-
-KARCH=arm
-KERNEL_PATH=arch/${KARCH}/boot/zImage
-GCC_FLAGS="--with-float=soft"
-BINUTILS_FLAGS=
-QEMU_TEST=$KARCH
-
-CONSOLE=ttyAMA0
-
-UCLIBC_CONFIG="TARGET_arm=y"
-
-LINUX_CONFIG="
-CONFIG_CPU_ARM926T=y
-CONFIG_MMU=y
-CONFIG_ARCH_VERSATILE=y
-CONFIG_ARCH_VERSATILE_PB=y
-CONFIG_MACH_VERSATILE_AB=y
-CONFIG_CPU_ARM926T=y
-CONFIG_ARM_THUMB=y
-CONFIG_SERIAL_NONSTANDARD=y
-CONFIG_SERIAL_AMBA_PL011=y
-CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
-CONFIG_RTC_DRV_PL031=y
-"
-
-emulator_command()
-{
-  echo qemu-system-arm -M versatilepb $(qemu_defaults "$@") \
-    -net nic,model=rtl8139 -net user
-}