2015-08-23 22:21:49 +00:00
|
|
|
menu "DFU support"
|
|
|
|
|
2018-02-16 15:41:17 +00:00
|
|
|
config DFU
|
|
|
|
bool
|
2018-02-16 15:41:18 +00:00
|
|
|
imply DFU_OVER_USB if USB_GADGET
|
2018-02-16 15:41:17 +00:00
|
|
|
|
2018-02-16 15:41:18 +00:00
|
|
|
config DFU_OVER_USB
|
2016-09-19 17:31:30 +00:00
|
|
|
bool
|
2018-01-16 08:44:13 +00:00
|
|
|
select HASH
|
2018-02-16 15:41:17 +00:00
|
|
|
depends on USB_GADGET
|
|
|
|
|
2018-02-16 15:41:18 +00:00
|
|
|
config DFU_OVER_TFTP
|
2018-02-16 15:41:17 +00:00
|
|
|
bool
|
|
|
|
depends on NET
|
2016-09-19 17:31:30 +00:00
|
|
|
|
2018-02-16 15:41:17 +00:00
|
|
|
if DFU
|
2015-08-23 22:21:49 +00:00
|
|
|
config DFU_TFTP
|
|
|
|
bool "DFU via TFTP"
|
2018-02-16 15:41:18 +00:00
|
|
|
select DFU_OVER_TFTP
|
2015-08-23 22:21:49 +00:00
|
|
|
help
|
2016-05-04 08:47:31 +00:00
|
|
|
This option allows performing update of DFU-managed medium with data
|
|
|
|
sent via TFTP boot.
|
2015-08-23 22:21:49 +00:00
|
|
|
|
2016-05-04 08:47:31 +00:00
|
|
|
Detailed description of this feature can be found at ./doc/README.dfutftp
|
2016-09-19 17:31:30 +00:00
|
|
|
|
2019-11-27 16:12:15 +00:00
|
|
|
config DFU_TIMEOUT
|
|
|
|
bool "Timeout waiting for DFU"
|
|
|
|
help
|
|
|
|
This option adds an optional timeout parameter for DFU which, if set,
|
|
|
|
will cause DFU to only wait for that many seconds before exiting.
|
|
|
|
|
2016-09-19 17:31:30 +00:00
|
|
|
config DFU_MMC
|
|
|
|
bool "MMC back end for DFU"
|
|
|
|
help
|
|
|
|
This option enables using DFU to read and write to MMC based storage.
|
|
|
|
|
|
|
|
config DFU_NAND
|
|
|
|
bool "NAND back end for DFU"
|
2018-11-13 11:43:10 +00:00
|
|
|
depends on CMD_MTDPARTS
|
2019-10-03 17:50:22 +00:00
|
|
|
depends on MTD_RAW_NAND
|
2016-09-19 17:31:30 +00:00
|
|
|
help
|
|
|
|
This option enables using DFU to read and write to NAND based
|
|
|
|
storage.
|
|
|
|
|
2019-12-16 15:27:57 +00:00
|
|
|
config DFU_NAND_TRIMFFS
|
|
|
|
bool "Skip empty pages when flashing UBI images to NAND"
|
|
|
|
depends on DFU_NAND
|
|
|
|
help
|
|
|
|
When flashing UBI images to NAND, enable the DROP_FFS flag to drop
|
|
|
|
trailing all-0xff pages.
|
|
|
|
|
2016-09-19 17:31:30 +00:00
|
|
|
config DFU_RAM
|
|
|
|
bool "RAM back end for DFU"
|
|
|
|
help
|
|
|
|
This option enables using DFU to read and write RAM on the target.
|
|
|
|
|
|
|
|
config DFU_SF
|
|
|
|
bool "SPI flash back end for DFU"
|
|
|
|
help
|
|
|
|
This option enables using DFU to read and write to SPI flash based
|
|
|
|
storage.
|
|
|
|
|
2019-10-14 07:28:00 +00:00
|
|
|
config DFU_SF_PART
|
|
|
|
bool "MTD partition support for SPI flash back end"
|
|
|
|
depends on DFU_SF && CMD_MTDPARTS
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
This option enables the support of "part" and "partubi" target in
|
|
|
|
SPI flash DFU back end.
|
|
|
|
|
2019-10-14 07:28:04 +00:00
|
|
|
config DFU_MTD
|
|
|
|
bool "MTD back end for DFU"
|
2019-10-03 17:50:04 +00:00
|
|
|
depends on DM_MTD
|
2020-07-21 18:06:31 +00:00
|
|
|
depends on CMD_MTDPARTS
|
2019-10-14 07:28:04 +00:00
|
|
|
help
|
|
|
|
This option enables using DFU to read and write to on any MTD device.
|
|
|
|
|
2019-10-14 07:28:06 +00:00
|
|
|
config DFU_VIRT
|
|
|
|
bool "VIRTUAL flash back end for DFU"
|
|
|
|
help
|
|
|
|
This option enables using DFU to read and write to VIRTUAL device
|
|
|
|
used at board level to manage specific behavior
|
|
|
|
(OTP update for example).
|
|
|
|
|
2020-02-26 09:28:41 +00:00
|
|
|
config SET_DFU_ALT_INFO
|
|
|
|
bool "Dynamic set of DFU alternate information"
|
|
|
|
help
|
|
|
|
This option allows to call the function set_dfu_alt_info to
|
|
|
|
dynamically build dfu_alt_info in board.
|
2016-09-19 17:31:30 +00:00
|
|
|
endif
|
2015-08-23 22:21:49 +00:00
|
|
|
endmenu
|