diff options
author | Tien Fong Chee | 2018-07-06 16:28:03 +0800 |
---|---|---|
committer | Tom Rini | 2018-09-28 20:22:33 -0400 |
commit | 620300043c95cc695585748ba6ef79da8b8095eb (patch) | |
tree | 8a6e9d1c3b17379644aa85f3cdb66ab1739af1b1 /drivers/misc/Kconfig | |
parent | fc5ca3ab5422601775148e7f65b28aa205055279 (diff) |
common: Generic loader for file system
This is file system generic loader which can be used to load
the file image from the storage into target such as memory.
The consumer driver would then use this loader to program whatever,
ie. the FPGA device.
Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
Diffstat (limited to 'drivers/misc/Kconfig')
-rw-r--r-- | drivers/misc/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/misc/Kconfig b/drivers/misc/Kconfig index bfa5c916874..b0fb73f6926 100644 --- a/drivers/misc/Kconfig +++ b/drivers/misc/Kconfig @@ -295,4 +295,13 @@ config MPC83XX_SERDES help Support for serdes found on MPC83xx SoCs. +config FS_LOADER + bool "Enable loader driver for file system" + help + This is file system generic loader which can be used to load + the file image from the storage into target such as memory. + + The consumer driver would then use this loader to program whatever, + ie. the FPGA device. + endmenu |