From ab88c0fdb24e175d75aa4276248c9c40dfeb700a Mon Sep 17 00:00:00 2001 From: Leandro Lanzieri Date: Sun, 12 Dec 2021 11:29:16 +0100 Subject: [PATCH] pkg/driver_bme680/kconfig: remove prompt and depend on driver module The BME680 package cannot be used by itself, but is needed for RIOT BME680 driver. The user should not select this directly, so we remove the prompt and additionally add a dependency on the driver. --- pkg/driver_bme680/Kconfig | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkg/driver_bme680/Kconfig b/pkg/driver_bme680/Kconfig index d155801192..9c775fee4a 100644 --- a/pkg/driver_bme680/Kconfig +++ b/pkg/driver_bme680/Kconfig @@ -6,11 +6,15 @@ # config PACKAGE_DRIVER_BME680 - bool "BME680 sensor driver package" + bool depends on TEST_KCONFIG + depends on MODULE_BME680 select MODULE_DRIVER_BME680_CONTRIB select MODULE_ZTIMER select MODULE_ZTIMER_MSEC + help + BME680 sensor library, written and maintained by Bosch Sensortec. This is + needed by RIOT BME680 driver. config MODULE_DRIVER_BME680_CONTRIB bool