-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathKconfig
50 lines (38 loc) · 1.1 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#
# Copyright (c) 2021 SAKURA internet Inc.
#
# SPDX-License-Identifier: MIT
#
menu "SIPF standard client"
config SIPF_APP_TYPE
int "Application type"
config SIPF_APP_VER_MAJOR
int "Application Major version"
config SIPF_APP_VER_MINOR
int "Application Minor version"
config SIPF_APP_VER_RELEASE
int "Application Release version"
config SIPF_FOTA_HOST
string "Application update host name"
help
Host part of URL to application update binary. For example
if the file is stored in http://foo.bar/update.bin the value
of this configuration should be 'foo.bar'
config SIPF_FOTA_PATH
string "Application update file name"
help
File part of URL to application update binary. For example
if the file is stored in http://foo.bar/update.bin the value
of this configuration should be 'update.bin'
config SIPF_FOTA_TLS
bool "Enable SSL for FOTA client."
endmenu
menu "Zephyr Kernel"
source "Kconfig.zephyr"
endmenu
module = FOTA
module-str = Firmware over the Air
source "subsys/logging/Kconfig.template.log_config"
module = GNSS
module-str = GNSS
source "subsys/logging/Kconfig.template.log_config"