| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- menuconfig OTA_APP
- bool
- prompt "OTA App Support"
- select OTA_UPGRADE
- select STREAM
- default n
- help
- This option enable or disable ota app
- config OTA_FOREGROUND
- bool "OTA Foreground Support"
- depends on OTA_APP
- default n
- help
- This option enable OTA foreground upgrade.
- config OTA_BACKGROUND
- bool "OTA background Support"
- depends on OTA_APP
- default n
- help
- This option enable OTA background upgrade.
- config SYSTEM_RECOVERY_APP_SUPPORT
- bool
- prompt "System Recovery App Support"
- depends on OTA_APP
- default n
- depends on SYSTEM_RECOVERY
- help
- This option enable or disable system recovery app
- config OTA_UPGRADE
- bool "OTA Upgrade Support"
- default n
- select PARTITION
- select FIRMWARE_VERSION
- select RING_BUFFER
- help
- This option enable OTA upgrade.
- if OTA_UPGRADE
- config OTA_RECOVERY
- bool "OTA recovery firmware Support"
- select MMC
- # select MUTIPLE_VOLUME_MANAGER
- # select FILE_STREAM
- # select STREAM
- select MMC_SDCARD
- default n
- depends on OTA_UPGRADE
- help
- This option enable OTA recovery firmware.
- config OTA_RECOVERY_APP
- bool "OTA recovery application Support"
- default n
- depends on OTA_RECOVERY
- help
- This option enable OTA recovery application.
- config OTA_TEMP_PART_DEV_NAME
- string "OTA temp partition device name"
- depends on OTA_RECOVERY
- default "sd"
- help
- Specify the device name for temp partition.
- config XSPI1_NOR_ACTS_DEV_NAME
- string "SPI1 NOR flash device name"
- depends on XSPI_NOR_ACTS
- default "spi1_nor"
- help
- Specify the device name for SPI1 NOR flash driver.
- config OTA_BACKEND_SDCARD
- bool "OTA upgrade by SDCARD Support"
- select MMC
- select MUTIPLE_VOLUME_MANAGER
- select FILE_STREAM
- select STREAM
- select MMC_SDCARD
- default n
- help
- This option enables OTA upgrade by SDCARD.
- config OTA_BACKEND_BLUETOOTH
- bool "OTA upgrade by Bluetooth Support"
- depends on BT_MANAGER
- select STREAM
- select BT_SPPBLE_STREAM
- default n
- help
- This option enables OTA upgrade by Bluetooth SPP/BLE.
- config OTA_BACKEND_TEMP_PART
- bool "OTA upgrade by spinor Support"
- select FLASH
- default n
- help
- This option enables OTA upgrade by spinor.
- config OTA_FILE_PATCH
- bool "OTA file patch Support"
- depends on !OTA_RECOVERY
- default n
- help
- This option enables OTA file patch.
- config OTA_STORAGE_FS
- bool "OTA upgrade by SDCARD Support"
- select MUTIPLE_VOLUME_MANAGER
- select FILE_STREAM
- default n
- help
- This option enables OTA upgrade by SDCARD.
- config OTA_MUTIPLE_STORAGE
- bool "OTA upgrade Support multiple storage"
- depends on OTA_RECOVERY
- default n
- help
- This option enables OTA upgrade by multiple storage.
- config OTA_RES_PATCH
- bool "OTA res patch Support"
- default n
- help
- This option enables OTA res patch.
- endif
|