1# Private config options for big_http_download sample
2
3# Copyright (c) 2020 Linaro Limited
4# SPDX-License-Identifier: Apache-2.0
5
6mainmenu "big_http_download sample application"
7
8config SAMPLE_BIG_HTTP_DL_URL
9	string "Download URL"
10	default "http://archive.ubuntu.com/ubuntu/dists/xenial/main/installer-amd64/current/images/hd-media/vmlinuz"
11	help
12	  URL to download.
13
14config SAMPLE_BIG_HTTP_DL_MAX_URL_LENGTH
15	int "Maximum length of the download URL"
16	default 256
17
18config SAMPLE_BIG_HTTP_DL_NUM_ITER
19	int "Limit number of iterations"
20	default 0
21	help
22	  Number of download iterations (0 - unlimited).
23
24source "Kconfig.zephyr"
25