diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2010-04-07 23:00:28 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-04-08 13:16:13 +0200 |
commit | 633049d80064e8c156ff58e1fc776f2f9afe9163 (patch) | |
tree | 0221a462fd515ce5e9087d43a6f097e6c3ee1da2 /target/Config.in.arch | |
parent | e8e868c14bc5ab6cf6a9e2507823e435520efe2a (diff) | |
download | buildroot-novena-633049d80064e8c156ff58e1fc776f2f9afe9163.tar.gz buildroot-novena-633049d80064e8c156ff58e1fc776f2f9afe9163.zip |
Enable e300c2, e300c3 and e500mc powerpc optimizations
Closes #1513
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target/Config.in.arch')
-rw-r--r-- | target/Config.in.arch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/target/Config.in.arch b/target/Config.in.arch index 26f7aa5db..1de679f99 100644 --- a/target/Config.in.arch +++ b/target/Config.in.arch @@ -490,6 +490,15 @@ config BR2_powerpc_970 bool "970" config BR2_powerpc_8540 bool "8540" +comment "e300c2 needs gcc >= 4.4.x" +config BR2_powerpc_e300c2 + bool "e300c2" +comment "e300c3 needs gcc >= 4.4.x" +config BR2_powerpc_e300c3 + bool "e300c3" +comment "e500mc needs gcc >= 4.4.x" +config BR2_powerpc_e500mc + bool "e500mc" endchoice config BR2_ARCH @@ -648,6 +657,9 @@ config BR2_GCC_TARGET_TUNE default 860 if BR2_powerpc_860 default 970 if BR2_powerpc_970 default 8540 if BR2_powerpc_8540 + default e300c2 if BR2_powerpc_e300c2 + default e300c3 if BR2_powerpc_e300c3 + default e500mc if BR2_powerpc_e500mc default v7 if BR2_sparc_v7 default cypress if BR2_sparc_cypress default v8 if BR2_sparc_v8 |