| # | 
 | # Copyright (c) 2020 Linumiz | 
 | # | 
 | # SPDX-License-Identifier: Apache-2.0 | 
 | # | 
 | mainmenu "Hawkbit sample configuration" | 
 |  | 
 | choice | 
 | 	prompt "Hawkbit mode" | 
 | 	default HAWKBIT_POLLING | 
 | 	depends on HAWKBIT | 
 |  | 
 | config HAWKBIT_POLLING | 
 | 	bool "Hawkbit Polling mode" | 
 | 	help | 
 | 	  Polling mode runs automatically on a predefined period, probing the | 
 | 	  server for updates and installing them without requiring user | 
 | 	  intervention. | 
 |  | 
 | config HAWKBIT_MANUAL | 
 | 	bool "Hawkbit 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. | 
 |  | 
 | endchoice | 
 |  | 
 | source "Kconfig.zephyr" |