mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 12:25:27 +00:00

Add tests to reach 100% code coverage for the added etype encrypted. Signed-off-by: Christian Taedcke <christian.taedcke@weidmueller.com> Reviewed-by: Simon Glass <sjg@chromium.org>
24 lines
331 B
Text
24 lines
331 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
fit {
|
|
description = "test desc";
|
|
|
|
images {
|
|
u-boot {
|
|
encrypted {
|
|
algo = "algo-name";
|
|
iv-filename = "encrypted-file.iv";
|
|
key-filename = "encrypted-file.key";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|