sandbox: Remove OF_HOSTFILE
OF_HOSTFILE is used on sandbox configs only. Although it's pretty unique and not causing any confusions, we are better of having simpler config options for the DTB. So let's replace that with the existing OF_BOARD. U-Boot would then have only three config options for the DTB origin. - OF_SEPARATE, build separately from U-Boot - OF_BOARD, board specific way of providing the DTB - OF_EMBED embedded in the u-boot binary(should not be used in production Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
committed by
Tom Rini
parent
670d657dfb
commit
e7fb789612
10
dts/Kconfig
10
dts/Kconfig
@@ -97,6 +97,7 @@ config OF_LIVE
|
||||
choice
|
||||
prompt "Provider of DTB for DT control"
|
||||
depends on OF_CONTROL
|
||||
default OF_BOARD if SANDBOX
|
||||
|
||||
config OF_SEPARATE
|
||||
bool "Separate DTB for DT control"
|
||||
@@ -115,20 +116,11 @@ config OF_EMBED
|
||||
|
||||
config OF_BOARD
|
||||
bool "Provided by the board (e.g a previous loader) at runtime"
|
||||
depends on !SANDBOX
|
||||
help
|
||||
If this option is enabled, the device tree will be provided by
|
||||
the board at runtime if the board supports it, instead of being
|
||||
bundled with the image.
|
||||
|
||||
config OF_HOSTFILE
|
||||
bool "Host filed DTB for DT control"
|
||||
depends on SANDBOX
|
||||
help
|
||||
If this option is enabled, DTB will be read from a file on startup.
|
||||
This is only useful for Sandbox. Use the -d flag to U-Boot to
|
||||
specify the file to read.
|
||||
|
||||
endchoice
|
||||
|
||||
config DEFAULT_DEVICE_TREE
|
||||
|
||||
Reference in New Issue
Block a user