zephyr/samples/subsys/mgmt/updatehub/Kconfig
Gerson Fernando Budke 70ff1d73c4 samples: updatehub: Move from net to subsys:mgmt folder
Zephyr introduced subsys/mgmt folder for MCU management. Move UpdateHub
sample to its correspondent folder at sample/subsys/mgmt folder.

Signed-off-by: Gerson Fernando Budke <gerson.budke@ossystems.com.br>
2020-08-03 16:33:06 +02:00

24 lines
654 B
Plaintext

# Copyright (c) 2018 O.S.Systems
# SPDX-License-Identifier: Apache-2.0
mainmenu "Sample app Configuration"
config UPDATEHUB_MANUAL
bool "UpdateHub manual mode"
help
Manual mode requires the user to call the server probe and then, if
there is an available update, also requires the user to decide if
it is appropriate to update now or later.
if !UPDATEHUB_MANUAL
config UPDATEHUB_POLLING
bool "UpdateHub polling mode"
default y
help
Polling mode runs automatically on a predefined period, probing the
server for updates and installing them without requiring user
intervention.
endif #!UPDATEHUB_MANUAL
source "Kconfig.zephyr"