diff options
| author | Simon Glass <[email protected]> | 2019-08-24 07:22:47 -0600 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2019-10-15 08:40:02 -0600 |
| commit | 3da9ce8dd44399dfca4b0639101f5154dbbaa93f (patch) | |
| tree | ed5679265b8fd4fe76b1e3315bb323351875337d /tools/binman/test | |
| parent | 39c8e47d2ee38975b9377ee0049d2f88efc3edba (diff) | |
binman: Correct use of 'replace' in IFWI tests
At present the Intel IFWI entry uses 'replace' without the 'ifwi-' prefix.
This is a fairly generic name which might conflict with the main Entry
base class at some point, if more features are added. Add a prefix.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'tools/binman/test')
| -rw-r--r-- | tools/binman/test/111_x86-rom-ifwi.dts | 2 | ||||
| -rw-r--r-- | tools/binman/test/112_x86-rom-ifwi-nodesc.dts | 2 | ||||
| -rw-r--r-- | tools/binman/test/113_x86-rom-ifwi-nodata.dts | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tools/binman/test/111_x86-rom-ifwi.dts b/tools/binman/test/111_x86-rom-ifwi.dts index 63b5972cc8e..c0ba4f2ea42 100644 --- a/tools/binman/test/111_x86-rom-ifwi.dts +++ b/tools/binman/test/111_x86-rom-ifwi.dts @@ -20,7 +20,7 @@ convert-fit; u-boot-tpl { - replace; + ifwi-replace; ifwi-subpart = "IBBP"; ifwi-entry = "IBBL"; }; diff --git a/tools/binman/test/112_x86-rom-ifwi-nodesc.dts b/tools/binman/test/112_x86-rom-ifwi-nodesc.dts index 21ec4654ffe..0874440ab53 100644 --- a/tools/binman/test/112_x86-rom-ifwi-nodesc.dts +++ b/tools/binman/test/112_x86-rom-ifwi-nodesc.dts @@ -19,7 +19,7 @@ filename = "ifwi.bin"; u-boot-tpl { - replace; + ifwi-replace; ifwi-subpart = "IBBP"; ifwi-entry = "IBBL"; }; diff --git a/tools/binman/test/113_x86-rom-ifwi-nodata.dts b/tools/binman/test/113_x86-rom-ifwi-nodata.dts index 62486fd990e..82a4bc8cdd5 100644 --- a/tools/binman/test/113_x86-rom-ifwi-nodata.dts +++ b/tools/binman/test/113_x86-rom-ifwi-nodata.dts @@ -20,7 +20,7 @@ _testing { return-unknown-contents; - replace; + ifwi-replace; ifwi-subpart = "IBBP"; ifwi-entry = "IBBL"; }; |
