1#
2# Copyright (c) 2020 Linumiz
3#
4# SPDX-License-Identifier: Apache-2.0
5#
6mainmenu "hawkBit sample configuration"
7
8choice
9	prompt "hawkBit mode"
10	default HAWKBIT_POLLING
11	depends on HAWKBIT
12
13config HAWKBIT_POLLING
14	bool "hawkBit Polling mode"
15	help
16	  Polling mode runs automatically on a predefined period, probing the
17	  server for updates and installing them without requiring user
18	  intervention.
19
20config HAWKBIT_MANUAL
21	bool "hawkBit manual mode"
22	help
23	  Manual mode requires the user to call the server probe and then, if
24	  there is an available update, also requires the user to decide if
25	  it is appropriate to update now or later.
26
27endchoice
28
29source "Kconfig.zephyr"
30