summaryrefslogtreecommitdiff
path: root/arch/arm
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-10-03 12:30:58 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-10-03 12:30:58 (GMT)
commit50ea3b751de4c94606bebc56a385324f130c33a8 (patch)
tree61e455f065ecc300533d36748f1b264b4efd29da /arch/arm
parent601ec482e1a8b8952a42fe01877053e286b10a99 (diff)
Second shot at moving arch/ into config/arch/ .
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/config.in26
-rw-r--r--arch/arm/functions17
2 files changed, 0 insertions, 43 deletions
diff --git a/arch/arm/config.in b/arch/arm/config.in
deleted file mode 100644
index a3c3d97..0000000
--- a/arch/arm/config.in
+++ /dev/null
@@ -1,26 +0,0 @@
-# ARM specific configuration file
-
-config ARCH_arm
- select ARCH_SUPPORTS_BOTH_ENDIAN
- select ARCH_DEFAULT_LE
- select ARCH_SUPPORT_ARCH
- select ARCH_SUPPORT_CPU
- select ARCH_SUPPORT_TUNE
- select ARCH_SUPPORT_FPU
- help
- The ARM architecture, as defined by:
- http://www.arm.com/
-
-config ARCH_ARM_EABI
- bool
- prompt "Use EABI"
- default n
- help
- Set up the toolchain so that it generates EABI-compliant binaries.
-
-config ARCH_ARM_ABI_OK
- bool
- default y
- depends on ! ARCH_ARM_EABI
- select ARCH_SUPPORT_ABI
-
diff --git a/arch/arm/functions b/arch/arm/functions
deleted file mode 100644
index a1b8542..0000000
--- a/arch/arm/functions
+++ /dev/null
@@ -1,17 +0,0 @@
-# Compute ARM-specific values
-
-CT_DoArchValues() {
- # The architecture part of the tuple:
- CT_TARGET_ARCH="${CT_ARCH}${target_endian_eb}"
-
- # The system part of the tuple:
- case "${CT_LIBC},${CT_ARCH_ARM_EABI}" in
- *glibc,y) CT_TARGET_SYS=gnueabi;;
- uClibc,y) CT_TARGET_SYS=uclibcgnueabi;;
- none,y) CT_TARGET_SYS=eabi;;
- esac
-
- # In case we're EABI, do *not* specify any ABI!
- # which means, either we do not have an ABI specified, or we're not EABI.
- CT_TestOrAbort "Internal error: CT_ARCH_ABI should not be set for EABI build." -z "${CT_ARCH_ABI}" -o -z "${CT_ARCH_ARM_EABI}"
-}