diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-01-16 01:25:06 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-01-16 01:25:06 +0000 |
commit | a916879574b1ee0a0895bc05c240882c4711dc19 (patch) | |
tree | 3a4fa12615b83d460bc7e76c6d5ebf0fa9243644 /scripts | |
parent | e7a8ce19cfe645842bd05e5bb15512a673715341 (diff) | |
download | upstream-a916879574b1ee0a0895bc05c240882c4711dc19.tar.gz upstream-a916879574b1ee0a0895bc05c240882c4711dc19.tar.bz2 upstream-a916879574b1ee0a0895bc05c240882c4711dc19.zip |
mpc85xx: add a new 'spe_fpu' feature flag for the FPU used on freescale powerpc cpus
The SPE FPU is ABI-incompatible with the regular powerpc FPU,
this needs to be reflected in the toolchain target name.
Fixes floating point crashes in user space
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25018 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/metadata.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 37c0a51ee7..9f06299aad 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -168,6 +168,7 @@ sub target_config_features(@) { /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n"; /ubifs/ and $ret .= "\tselect USES_UBIFS\n"; /fpu/ and $ret .= "\tselect HAS_FPU\n"; + /spe_fpu/ and $ret .= "\tselect HAS_SPE_FPU\n"; /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n"; /powerpc64/ and $ret .= "\tselect powerpc64\n"; /nommu/ and $ret .= "\tselect NOMMU\n"; |