diff options
author | Hauke Mehrtens <hauke@hauke-m.de> | 2018-02-10 00:52:20 +0100 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-02-11 16:42:28 +0100 |
commit | 3594447a7d0398c55ea78f658b52b7d8084ae9f9 (patch) | |
tree | 51b06d921e82e9986f5555dee3334a476011a075 /target/linux/mediatek | |
parent | da52dd0c833d2ccf0be06838fc94d6f0865692c1 (diff) | |
download | upstream-3594447a7d0398c55ea78f658b52b7d8084ae9f9.tar.gz upstream-3594447a7d0398c55ea78f658b52b7d8084ae9f9.tar.bz2 upstream-3594447a7d0398c55ea78f658b52b7d8084ae9f9.zip |
mediatek: activate fpu feature flag
The arm CPUs uses in the supported Mediatket SoCs have a FPU accordingly
to the datasheet, activate it also. The CPU subtype "neon-vfpv4" is
selected, but the toolcahin generated for this SoC will still be
compiled with soft float and not with the hard float ABI as we haven't
the fpu feature flag set. If this toolchain is reused by other targets
this will even affect other targets.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'target/linux/mediatek')
-rw-r--r-- | target/linux/mediatek/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/mediatek/Makefile b/target/linux/mediatek/Makefile index 4ebac09a6e..6824111d85 100644 --- a/target/linux/mediatek/Makefile +++ b/target/linux/mediatek/Makefile @@ -6,7 +6,7 @@ ARCH:=arm BOARD:=mediatek BOARDNAME:=MediaTek Ralink ARM SUBTARGETS:=32 -FEATURES:=squashfs nand ubifs +FEATURES:=squashfs nand ubifs fpu MAINTAINER:=John Crispin <john@phrozen.org> KERNEL_PATCHVER:=4.9 |