diff options
| author | Ilias Apalodimas <ilias.apalodimas@linaro.org> | 2021-10-26 09:12:33 +0300 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2021-10-27 16:38:26 -0400 |
| commit | e7fb789612e39653f9f20ad08ad40896c7f61742 (patch) | |
| tree | 2a16e7d6ebd67449b5c0fca8f7841d879564889f /arch/sandbox/include/asm/u-boot-sandbox.h | |
| parent | 670d657dfb6ede2957043dd0ac868297ac093857 (diff) | |
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>
Diffstat (limited to 'arch/sandbox/include/asm/u-boot-sandbox.h')
| -rw-r--r-- | arch/sandbox/include/asm/u-boot-sandbox.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/sandbox/include/asm/u-boot-sandbox.h b/arch/sandbox/include/asm/u-boot-sandbox.h index 73b1897191d..56dc13c3eb1 100644 --- a/arch/sandbox/include/asm/u-boot-sandbox.h +++ b/arch/sandbox/include/asm/u-boot-sandbox.h @@ -77,14 +77,6 @@ int pci_unmap_physmem(const void *addr, unsigned long len, void sandbox_set_enable_pci_map(int enable); /** - * sandbox_read_fdt_from_file() - Read a device tree from a file - * - * Read a device tree file from a host file and set it up for use as the - * control FDT. - */ -int sandbox_read_fdt_from_file(void); - -/** * sandbox_reset() - reset sandbox * * This functions implements the cold reboot of the sandbox. It relaunches the |
