diff options
author | Philippe Reynes <philippe.reynes@softathome.com> | 2022-03-28 22:56:53 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-31 14:12:01 -0400 |
commit | 059df5624b49c8f4935b634acebe9cdacfb5cab3 (patch) | |
tree | b77142ca12482a22c0f43503d43d927fc632965d /test | |
parent | 23e354f82c04a1c070ca59907abc6b042761b0e7 (diff) | |
download | u-boot-059df5624b49c8f4935b634acebe9cdacfb5cab3.tar.gz u-boot-059df5624b49c8f4935b634acebe9cdacfb5cab3.tar.bz2 u-boot-059df5624b49c8f4935b634acebe9cdacfb5cab3.zip |
arch: Kconfig: imply BINMAN for SANDBOX
To be able to use the tool binman on sandbox,
the config SANDBOX should imply BINMAN.
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Philippe Reynes <philippe.reynes@softathome.com>
Diffstat (limited to 'test')
-rwxr-xr-x | test/py/tests/test_fit.py | 3 | ||||
-rw-r--r-- | test/py/tests/vboot/sandbox-u-boot.dts | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/test/py/tests/test_fit.py b/test/py/tests/test_fit.py index 6d5b43c3ba..5856960be2 100755 --- a/test/py/tests/test_fit.py +++ b/test/py/tests/test_fit.py @@ -89,6 +89,9 @@ base_fdt = ''' model = "Sandbox Verified Boot Test"; compatible = "sandbox"; + binman { + }; + reset@0 { compatible = "sandbox,reset"; reg = <0>; diff --git a/test/py/tests/vboot/sandbox-u-boot.dts b/test/py/tests/vboot/sandbox-u-boot.dts index 63f8f401de..5809c62fc1 100644 --- a/test/py/tests/vboot/sandbox-u-boot.dts +++ b/test/py/tests/vboot/sandbox-u-boot.dts @@ -4,6 +4,9 @@ model = "Sandbox Verified Boot Test"; compatible = "sandbox"; + binman { + }; + reset@0 { compatible = "sandbox,reset"; }; |