AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 1 | .\" SPDX-License-Identifier: GPL-2.0+ |
| 2 | .\" Copyright (c) 2021, Linaro Limited |
| 3 | .\" written by AKASHI Takahiro <takahiro.akashi@linaro.org> |
| 4 | .TH MAEFICAPSULE 1 "May 2021" |
| 5 | |
| 6 | .SH NAME |
| 7 | mkeficapsule \- Generate EFI capsule file for U-Boot |
| 8 | |
| 9 | .SH SYNOPSIS |
| 10 | .B mkeficapsule |
Sughosh Ganu | 6da9271 | 2022-10-21 18:16:06 +0530 | [diff] [blame] | 11 | .RI [ options ] " " [ image-blob ] " " capsule-file |
AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 12 | |
| 13 | .SH "DESCRIPTION" |
Heinrich Schuchardt | a13b92a | 2023-01-22 11:27:10 +0100 | [diff] [blame] | 14 | The |
AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 15 | .B mkeficapsule |
Heinrich Schuchardt | a13b92a | 2023-01-22 11:27:10 +0100 | [diff] [blame] | 16 | command is used to create an EFI capsule file to be used by U-Boot for firmware |
| 17 | updates. |
| 18 | A capsule file may contain various types of firmware blobs which are to be |
| 19 | applied to the system. |
| 20 | If a capsule file is placed in the /EFI/CapusuleUpdate directory of the EFI |
| 21 | system partition, U-Boot will try to execute the update at the next reboot. |
AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 22 | |
| 23 | Optionally, a capsule file can be signed with a given private key. |
| 24 | In this case, the update will be authenticated by verifying the signature |
| 25 | before applying. |
| 26 | |
Heinrich Schuchardt | a13b92a | 2023-01-22 11:27:10 +0100 | [diff] [blame] | 27 | Additionally, an empty capsule file can be generated to indicate the acceptance |
| 28 | or rejection of firmware images by a governing component like an operating |
| 29 | system. |
| 30 | Empty capsules do not require an image-blob input file. |
Sughosh Ganu | 6da9271 | 2022-10-21 18:16:06 +0530 | [diff] [blame] | 31 | |
AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 32 | .B mkeficapsule |
Sughosh Ganu | 6da9271 | 2022-10-21 18:16:06 +0530 | [diff] [blame] | 33 | takes any type of image files when generating non empty capsules, including: |
AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 34 | .TP |
| 35 | .I raw image |
| 36 | format is a single binary blob of any type of firmware. |
| 37 | |
| 38 | .TP |
| 39 | .I FIT (Flattened Image Tree) image |
| 40 | format is the same as used in the new uImage format and allows for |
| 41 | multiple binary blobs in a single capsule file. |
| 42 | This type of image file can be generated by |
| 43 | .BR mkimage . |
| 44 | |
| 45 | .SH "OPTIONS" |
Sughosh Ganu | 6da9271 | 2022-10-21 18:16:06 +0530 | [diff] [blame] | 46 | |
AKASHI Takahiro | d9612f4 | 2022-02-09 19:10:39 +0900 | [diff] [blame] | 47 | .TP |
| 48 | .BI "-g\fR,\fB --guid " guid-string |
| 49 | Specify guid for image blob type. The format is: |
| 50 | xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx |
| 51 | |
| 52 | The first three elements are in little endian, while the rest |
Sughosh Ganu | 6da9271 | 2022-10-21 18:16:06 +0530 | [diff] [blame] | 53 | is in big endian. The option must be specified for all non empty and |
| 54 | image acceptance capsules |
AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 55 | |
| 56 | .TP |
| 57 | .BI "-i\fR,\fB --index " index |
| 58 | Specify an image index |
| 59 | |
| 60 | .TP |
| 61 | .BI "-I\fR,\fB --instance " instance |
| 62 | Specify a hardware instance |
| 63 | |
Sughosh Ganu | 6da9271 | 2022-10-21 18:16:06 +0530 | [diff] [blame] | 64 | .PP |
| 65 | For generation of firmware accept empty capsule |
| 66 | .BR --guid |
| 67 | is mandatory |
| 68 | .TP |
| 69 | .BI "-A\fR,\fB --fw-accept " |
| 70 | Generate a firmware acceptance empty capsule |
| 71 | |
| 72 | .TP |
| 73 | .BI "-R\fR,\fB --fw-revert " |
| 74 | Generate a firmware revert empty capsule |
| 75 | |
AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 76 | .TP |
Sughosh Ganu | f65ee99 | 2022-10-21 18:16:07 +0530 | [diff] [blame] | 77 | .BI "-o\fR,\fB --capoemflag " |
| 78 | Capsule OEM flag, value between 0x0000 to 0xffff |
| 79 | |
| 80 | .TP |
AKASHI Takahiro | 118a0ec | 2022-02-09 19:10:36 +0900 | [diff] [blame] | 81 | .BR -h ", " --help |
| 82 | Print a help message |
| 83 | |
| 84 | .PP |
| 85 | With signing, |
| 86 | .BR --private-key ", " --certificate " and " --monotonic-count |
| 87 | are all mandatory. |
| 88 | |
| 89 | .TP |
| 90 | .BI "-p\fR,\fB --private-key " private-key-file |
| 91 | Specify signer's private key file in PEM |
| 92 | |
| 93 | .TP |
| 94 | .BI "-c\fR,\fB --certificate " certificate-file |
| 95 | Specify signer's certificate file in EFI certificate list format |
| 96 | |
| 97 | .TP |
| 98 | .BI "-m\fR,\fB --monotonic-count " count |
| 99 | Specify a monotonic count which is set to be monotonically incremented |
| 100 | at every firmware update. |
| 101 | |
| 102 | .TP |
| 103 | .B "-d\fR,\fB --dump_sig" |
| 104 | Dump signature data into *.p7 file |
| 105 | |
| 106 | .PP |
| 107 | .SH FILES |
| 108 | .TP |
| 109 | .I /EFI/UpdateCapsule |
| 110 | The directory in which all capsule files be placed |
| 111 | |
| 112 | .SH SEE ALSO |
| 113 | .BR mkimage (1) |
| 114 | |
| 115 | .SH AUTHORS |
| 116 | Written by AKASHI Takahiro <takahiro.akashi@linaro.org> |
| 117 | |
| 118 | .SH HOMEPAGE |
| 119 | http://www.denx.de/wiki/U-Boot/WebHome |