Prepare v2023.10
[platform/kernel/u-boot.git] / tools / binman / test / 236_pre_load_invalid_key.dts
1 // SPDX-License-Identifier: GPL-2.0+
2
3 /dts-v1/;
4
5 / {
6         #address-cells = <1>;
7         #size-cells = <1>;
8
9         binman {
10                 pre-load {
11                         content = <&image>;
12                          algo-name = "sha256,rsa4096";
13                          padding-name = "pkcs-1.5";
14                          key-name = "dev.key";
15                          header-size = <4096>;
16                          version = <1>;
17                 };
18
19                 image: blob-ext {
20                         filename = "refcode.bin";
21                 };
22         };
23 };