diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2019-10-14 09:28:06 +0200 |
---|---|---|
committer | Marek Vasut <marek.vasut+renesas@gmail.com> | 2019-10-31 12:12:31 +0100 |
commit | ec44cace4b8d23556924550fe76bf2744eb91144 (patch) | |
tree | fa18cb82d82561fbf4790fd372e8ecd9b70522d6 /drivers/dfu/Kconfig | |
parent | d5640f700d0413059b39cdd621c9401ef90d08fa (diff) | |
download | u-boot-ec44cace4b8d23556924550fe76bf2744eb91144.tar.gz |
dfu: add DFU virtual backend
Add a virtual DFU backend to allow board specific read and write
(for OTP update for example).
Acked-by: Lukasz Majewski <lukma@denx.de>
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'drivers/dfu/Kconfig')
-rw-r--r-- | drivers/dfu/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index 1e1dff33d2..9fe5bc0f58 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -60,5 +60,12 @@ config DFU_MTD help This option enables using DFU to read and write to on any MTD device. +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). + endif endmenu |