diff options
author | Cooper Jr., Franklin <fcooper@ti.com> | 2017-06-16 17:25:06 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-10 14:25:50 -0400 |
commit | 92926bc80c5330d7ee71d0e56926264bce9dea3b (patch) | |
tree | ccde9f6763d2ea61dce3775ec3328730949eeed7 /common/Kconfig | |
parent | 3863f840fa03f6b93672a5afff74f15d460cb911 (diff) |
boot_fit: Create helper functions that can be used to select DTB out of FIT
Some platforms may append a FIT image to the U-boot image. This function
aids in parsing the FIT image and selecting the correct DTB at runtime.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'common/Kconfig')
-rw-r--r-- | common/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/Kconfig b/common/Kconfig index 27dde11b14..a5e3a6b418 100644 --- a/common/Kconfig +++ b/common/Kconfig @@ -437,6 +437,13 @@ config SYS_STDIO_DEREGISTER endmenu +config FIT_EMBED + bool "Support a FIT image embedded in the U-boot image" + help + This option provides hooks to allow U-boot to parse an + appended FIT image and enable board specific code to then select + the correct DTB to be used. + config DEFAULT_FDT_FILE string "Default fdt file" help |