blob: 17e83c9fa44d1b13501c5b7295793944cda1064e [file] [log] [blame]
Jonathan Humphreys301df242024-05-31 17:51:03 -05001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
4 */
5
6&binman {
7 capsule_tispl: capsule-tispl {
8 filename = "tispl-capsule.bin";
9 efi-capsule {
10 image-index = <0x2>;
11 image-guid = "00000000-0000-0000-0000-000000000000";
12 private-key = "arch/arm/mach-k3/keys/custMpk.pem";
13 public-key-cert = "arch/arm/mach-k3/keys/custMpk.crt";
14 monotonic-count = <0x1>;
15
16 blob {
17 filename = "tispl.bin";
18 };
19 };
20 };
21};
22
23&binman {
24 capsule_uboot: capsule-uboot {
25 filename = "uboot-capsule.bin";
26 efi-capsule {
27 image-index = <0x3>;
28 image-guid = "00000000-0000-0000-0000-000000000000";
29 private-key = "arch/arm/mach-k3/keys/custMpk.pem";
30 public-key-cert = "arch/arm/mach-k3/keys/custMpk.crt";
31 monotonic-count = <0x1>;
32
33 blob {
34 filename = "u-boot.img";
35 };
36 };
37 };
38};