mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
arch/arm: fix-up the ARM Kconfig warning
Kconfig does not accepts that a symbol that is part of a choice be affected a default value. Fix this by introducing a dummy EABI symbol, and make the real EABI symbol a prompt-less option that depends on !OABI. [Peter: drop arm dependency, rename to EABI_CHOICE] Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Peter Korsgaard <jacmet@uclibc.org> Cc: Arnout Vandecappelle <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
124c4e040a
commit
58c2500e2a
@ -76,7 +76,7 @@ choice
|
|||||||
Note:
|
Note:
|
||||||
Using OABI is discouraged.
|
Using OABI is discouraged.
|
||||||
|
|
||||||
config BR2_ARM_EABI
|
config BR2_ARM_EABI_CHOICE
|
||||||
bool "EABI"
|
bool "EABI"
|
||||||
config BR2_ARM_OABI
|
config BR2_ARM_OABI
|
||||||
bool "OABI"
|
bool "OABI"
|
||||||
@ -84,8 +84,8 @@ config BR2_ARM_OABI
|
|||||||
endchoice
|
endchoice
|
||||||
|
|
||||||
config BR2_ARM_EABI
|
config BR2_ARM_EABI
|
||||||
default y
|
def_bool y
|
||||||
depends on !BR2_DEPRECATED
|
depends on !BR2_ARM_OABI
|
||||||
|
|
||||||
config BR2_ARM_ENABLE_NEON
|
config BR2_ARM_ENABLE_NEON
|
||||||
bool "Enable NEON SIMD extension support"
|
bool "Enable NEON SIMD extension support"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user