diff options
author | Cooper Jr., Franklin <fcooper@ti.com> | 2017-06-16 17:25:09 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-07-10 14:25:53 -0400 |
commit | d97974099b6ecae1cfc655a1a59ee985f7d59dde (patch) | |
tree | 4442ea2478140e14773f5940fa05d431bd3463e1 /dts | |
parent | 69e8d4ba7f183fcde32ffff1f3136cd10c30dda9 (diff) |
dts: Allow OF_LIST to depend on FIT_EMBED
OF_LIST will be useable by SPL and U-boot. Therefore, update its
dependency to allow it to be enable by either SPL or U-boot specific
config option.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com>
Acked-by: Andrew F. Davis <afd@ti.com>
Diffstat (limited to 'dts')
-rw-r--r-- | dts/Kconfig | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/dts/Kconfig b/dts/Kconfig index b3009af03f..1bc9656fae 100644 --- a/dts/Kconfig +++ b/dts/Kconfig @@ -90,14 +90,15 @@ config DEFAULT_DEVICE_TREE config OF_LIST string "List of device tree files to include for DT control" - depends on SPL_LOAD_FIT + depends on SPL_LOAD_FIT || FIT_EMBED default DEFAULT_DEVICE_TREE help This option specifies a list of device tree files to use for DT - control. These will be packaged into a FIT. At run-time, SPL will - select the correct DT to use by examining the hardware (e.g. - reading a board ID value). This is a list of device tree files - (without the directory or .dtb suffix) separated by <space>. + control. These will be packaged into a FIT. At run-time, U-boot + or SPL will select the correct DT to use by examining the + hardware (e.g. reading a board ID value). This is a list of + device tree files (without the directory or .dtb suffix) + separated by <space>. config OF_SPL_REMOVE_PROPS string "List of device tree properties to drop for SPL" |