diff options
author | 2014-09-15 23:01:57 +0200 | |
---|---|---|
committer | 2014-09-18 22:09:05 +0200 | |
commit | d60489a6e5e733a20d18b128646088981da57867 (patch) | |
tree | b657f2d66f8d3e59b9b3475115e21759b04a70c7 /package | |
parent | ad0e217bb2c9a0ea132d841c57f310020f336bd5 (diff) | |
download | buildroot-d60489a6e5e733a20d18b128646088981da57867.tar.gz buildroot-d60489a6e5e733a20d18b128646088981da57867.tar.bz2 |
arch: remove BR2_arm10t
The BR2_arm10t option is not correct as it references an ARM family,
while other options indicate a specific ARM core. The ARM cores in
ARM10 family are ARM1020E, ARM1022E and ARM1026EJ-S according to
Wikipedia. However, those are clearly very rare, and Wikipedia only
indicates two Conexant ADSL-related SoC as being part of this family
of ARM cores. Therefore, this commit removes this ARM family.
[Peter: remove nettle.mk reference as pointed out by Yann]
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/nettle/nettle.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/nettle/nettle.mk b/package/nettle/nettle.mk index 647100a443..519af69563 100644 --- a/package/nettle/nettle.mk +++ b/package/nettle/nettle.mk @@ -15,7 +15,7 @@ NETTLE_LICENSE_FILES = COPYING.LIB NETTLE_CONF_OPT = --disable-openssl # ARM assembly requires v6+ ISA -ifeq ($(BR2_arm920t)$(BR2_arm922t)$(BR2_arm926t)$(BR2_arm10t)$(BR2_fa526)$(BR2_strongarm)$(BR2_xscale)$(BR2_iwmmxt),y) +ifeq ($(BR2_arm920t)$(BR2_arm922t)$(BR2_arm926t)$(BR2_fa526)$(BR2_strongarm)$(BR2_xscale)$(BR2_iwmmxt),y) NETTLE_CONF_OPT += --disable-assembler endif |