lora: select REQUIRES_FULL_LIBC when LORA=y

Right now we depend on NEWLIB_LIBC to build Zephyr with LORA=y. This
seems to be the only Kconfig option like that. Convert it to select
REQUIRES_FULL_LIBC instead, which will select NEWLIB_LIBC by default and
allow to use external libc as well.

Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com>
This commit is contained in:
Marcin Niestroj 2020-06-24 23:36:37 +02:00 committed by Anas Nashif
commit 51666b8130

View file

@ -8,7 +8,7 @@
menuconfig LORA
bool "LoRa support [EXPERIMENTAL]"
depends on NEWLIB_LIBC
select REQUIRES_FULL_LIBC
help
Include LoRa drivers in the system configuration.