diff options
author | Simon Glass <sjg@chromium.org> | 2018-09-14 04:57:10 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2018-09-28 11:09:01 -0600 |
commit | 35b384cbe5d40e618391cc076409e89cedf9c863 (patch) | |
tree | 1b2c8ede314a19e9d645ed9043ad0020a1c334ef /tools/binman/test | |
parent | 0b489364f90d5cd70b594268442b14e0143c89b5 (diff) |
binman: Add x86 support for starting TPL
Sometimes we want to include TPL for x86 platforms, such as when we want
to select between different SPL images (e.g. for Chrome OS verified boot).
Add support for this.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/binman/test')
-rw-r--r-- | tools/binman/test/81_x86-start16-tpl.dts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/binman/test/81_x86-start16-tpl.dts b/tools/binman/test/81_x86-start16-tpl.dts new file mode 100644 index 0000000000..68e6bbd68f --- /dev/null +++ b/tools/binman/test/81_x86-start16-tpl.dts @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0+ +/dts-v1/; + +/ { + #address-cells = <1>; + #size-cells = <1>; + + binman { + size = <16>; + + x86-start16-tpl { + }; + }; +}; |