diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-10-06 20:26:05 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-06 22:43:06 +0200 |
commit | 15a85fce2ac08df62ec02a48e36cb8bf37aece61 (patch) | |
tree | ad137a9acde6d9d99eb58edc4797bdcd5427d2ef /target | |
parent | f7abeebf54d51e33578495d3779b2015c991779a (diff) | |
download | buildroot-novena-15a85fce2ac08df62ec02a48e36cb8bf37aece61.tar.gz buildroot-novena-15a85fce2ac08df62ec02a48e36cb8bf37aece61.zip |
default to EABI on arm
Use of OABI is strongly discouraged since years now.
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'target')
-rw-r--r-- | target/Config.in.arch | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/target/Config.in.arch b/target/Config.in.arch index e63fc027a..e82c8f4da 100644 --- a/target/Config.in.arch +++ b/target/Config.in.arch @@ -116,14 +116,17 @@ config BR2_ARM_TYPE choice prompt "Target ABI" depends on BR2_arm || BR2_armeb - default BR2_ARM_OABI + default BR2_ARM_EABI help Application Binary Interface to use -config BR2_ARM_OABI - bool "OABI" + Note: + Using OABI is discouraged. + config BR2_ARM_EABI bool "EABI" +config BR2_ARM_OABI + bool "OABI" endchoice choice |