diff options
author | Simon Glass | 2019-12-06 21:42:31 -0700 |
---|---|---|
committer | Bin Meng | 2019-12-15 11:44:20 +0800 |
commit | 624c70b8ae1a7a7145adcc7e79d6788a01030104 (patch) | |
tree | 13e029d9fa51b37644b3feb9e546976e851903da /arch/x86/dts/u-boot.dtsi | |
parent | 28d7d76a86a4e73db27b521d034fb6170df95672 (diff) |
x86: Add an fdtmap and image-header
Add these entries to the ROM so that we can list the contents of an image
with 'binman ls'. The image-header is not essential but does speed up
access.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'arch/x86/dts/u-boot.dtsi')
-rw-r--r-- | arch/x86/dts/u-boot.dtsi | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/dts/u-boot.dtsi b/arch/x86/dts/u-boot.dtsi index fad3e7c9516..5ebff4f4079 100644 --- a/arch/x86/dts/u-boot.dtsi +++ b/arch/x86/dts/u-boot.dtsi @@ -124,6 +124,8 @@ filename = CONFIG_FSP_FILE_S; }; #endif + fdtmap { + }; #ifdef CONFIG_HAVE_CMC intel-cmc { filename = CONFIG_CMC_FILE; @@ -169,5 +171,8 @@ offset = <CONFIG_RESET_VEC_LOC>; }; #endif + image-header { + location = "end"; + }; }; #endif |