From: Bernhard Reutner-Fischer Date: Tue, 6 Oct 2009 18:26:05 +0000 (+0200) Subject: default to EABI on arm X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=15a85fce2ac08df62ec02a48e36cb8bf37aece61;p=buildroot.git default to EABI on arm Use of OABI is strongly discouraged since years now. Signed-off-by: Bernhard Reutner-Fischer Signed-off-by: Peter Korsgaard --- diff --git a/target/Config.in.arch b/target/Config.in.arch index e63fc027a8..e82c8f4da1 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