forked from nrfconnect/sdk-nrf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig.lwm2m_carrier
31 lines (26 loc) · 1004 Bytes
/
Kconfig.lwm2m_carrier
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
# Copyright (c) 2024 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
menuconfig LWM2M_CARRIER_DIVIDED_DFU
bool "Proprietary LwM2M Carrier divided DFU file generation"
depends on SOC_SERIES_NRF91X
depends on BOOTLOADER_MCUBOOT
depends on MCUBOOT_MODE_SWAP_WITHOUT_SCRATCH || MCUBOOT_MODE_SWAP_SCRATCH
depends on MCUBOOT_UPDATEABLE_IMAGES = "1"
help
Generate proprietary application update files required for the LwM2M carrier divided
FOTA procedure.
if LWM2M_CARRIER_DIVIDED_DFU
config LWM2M_CARRIER_DIVIDED_DFU_MAX_FILE_SIZE
int "Divided DFU maximum file size"
range 1 256
default 100
help
Maximum size of the divided DFU files (in kilobytes) that will be generated.
config LWM2M_CARRIER_DIVIDED_DFU_VERSION
string "Divided DFU version string"
default "version"
help
Version to be included in the header of the divided DFU files.
The string must not be longer than 32 bytes (including the null termination).
endif # LWM2M_CARRIER_DIVIDED_DFU