diff options
author | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-06-03 09:29:58 +0000 |
---|---|---|
committer | kaloz <kaloz@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2008-06-03 09:29:58 +0000 |
commit | fc26dda750ef95354917d3dec9421578647d7c62 (patch) | |
tree | 90a1e45df9cd68ddd8fe4b9b4436b80f8f9e895f | |
parent | e1ee35b052206f8880a3cc843d17a22f68fb5ff2 (diff) |
add new target feature option for fpu
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11337 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rwxr-xr-x | scripts/metadata.pl | 1 | ||||
-rw-r--r-- | target/Config.in | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 51dcc425b..09947d808 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -161,6 +161,7 @@ sub target_config_features(@) { /ext2/ and $ret .= "\tselect USES_EXT2\n"; /tgz/ and $ret .= "\tselect USES_TGZ\n"; /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n"; + /fpu/ and $ret .= "\tselect HAS_FPU\n"; } return $ret; } diff --git a/target/Config.in b/target/Config.in index 505fcc962..31f7a50b3 100644 --- a/target/Config.in +++ b/target/Config.in @@ -8,6 +8,9 @@ config LINUX_2_4 config LINUX_2_6 bool +config HAS_FPU + bool + config DISPLAY_SUPPORT bool |