diff options
author | Lukasz Majewski <l.majewski@majess.pl> | 2015-08-24 00:21:49 +0200 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-09-07 13:41:05 +0200 |
commit | 585a696e4eebab3b48004cf70e1077fb38287c60 (patch) | |
tree | daf11fe2b1a52963c07e996cda54bcb65655e936 /drivers | |
parent | c2c146fb8890841cfd60cafae69bf6e2f2cbfb1c (diff) | |
download | u-boot-imx-585a696e4eebab3b48004cf70e1077fb38287c60.zip u-boot-imx-585a696e4eebab3b48004cf70e1077fb38287c60.tar.gz u-boot-imx-585a696e4eebab3b48004cf70e1077fb38287c60.tar.bz2 |
dfu: tftp: Kconfig: Add Kconfig entry for dfu tftp feature
The dfu tftp feature can be now enabled via Kconfig. This
commit provides necessary code for it.
Signed-off-by: Lukasz Majewski <l.majewski@majess.pl>
Acked-by: Joe Hershberger <joe.hershberger@ni.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/dfu/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/dfu/Kconfig b/drivers/dfu/Kconfig index e69de29..4fe2219 100644 --- a/drivers/dfu/Kconfig +++ b/drivers/dfu/Kconfig @@ -0,0 +1,10 @@ +menu "DFU support" + +config DFU_TFTP + bool "DFU via TFTP" + help + This option allows performing update of DFU managed medium with data + send via TFTP boot. + Detailed description of this feature can be found at ./doc/README.dfutftp + +endmenu |