From 51666b8130312b84e9b8bfd4a3e6f8c3be3408c4 Mon Sep 17 00:00:00 2001 From: Marcin Niestroj Date: Wed, 24 Jun 2020 23:36:37 +0200 Subject: [PATCH] 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 --- drivers/lora/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/lora/Kconfig b/drivers/lora/Kconfig index ac8ecbf9dfe..f99e7772ca3 100644 --- a/drivers/lora/Kconfig +++ b/drivers/lora/Kconfig @@ -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.