Simon Glass | 4142486 | 2022-01-09 20:14:12 -0700 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
| 2 | |
| 3 | Binman bintool Documentation |
| 4 | ============================ |
| 5 | |
| 6 | This file describes the bintools (binary tools) supported by binman. Bintools |
| 7 | are binman's name for external executables that it runs to generate or process |
| 8 | binaries. It is fairly easy to create new bintools. Just add a new file to the |
| 9 | 'btool' directory. You can use existing bintools as examples. |
| 10 | |
| 11 | |
| 12 | |
Simon Glass | b20a112 | 2024-07-20 11:49:33 +0100 | [diff] [blame] | 13 | Bintool: bootgen: Generate bootable fsbl image for zynq/zynqmp |
| 14 | -------------------------------------------------------------- |
| 15 | |
| 16 | This bintools supports running Xilinx "bootgen" in order |
| 17 | to generate a bootable, authenticated image form an SPL. |
| 18 | |
| 19 | |
| 20 | |
| 21 | |
Simon Glass | 1285322 | 2023-02-22 12:14:46 -0700 | [diff] [blame] | 22 | Bintool: bzip2: Compression/decompression using the bzip2 algorithm |
| 23 | ------------------------------------------------------------------- |
| 24 | |
| 25 | This bintool supports running `bzip2` to compress and decompress data, as |
| 26 | used by binman. |
| 27 | |
| 28 | It is also possible to fetch the tool, which uses `apt` to install it. |
| 29 | |
| 30 | Documentation is available via:: |
| 31 | |
| 32 | man bzip2 |
| 33 | |
| 34 | |
| 35 | |
Simon Glass | 4142486 | 2022-01-09 20:14:12 -0700 | [diff] [blame] | 36 | Bintool: cbfstool: Coreboot filesystem (CBFS) tool |
| 37 | -------------------------------------------------- |
| 38 | |
| 39 | This bintool supports creating new CBFS images and adding files to an |
| 40 | existing image, i.e. the features needed by binman. |
| 41 | |
| 42 | It also supports fetching a binary cbfstool, since building it from source |
| 43 | is fairly slow. |
| 44 | |
| 45 | Documentation about CBFS is at https://www.coreboot.org/CBFS |
| 46 | |
| 47 | |
| 48 | |
Simon Glass | b20a112 | 2024-07-20 11:49:33 +0100 | [diff] [blame] | 49 | Bintool: cst: Image generation for U-Boot |
| 50 | ----------------------------------------- |
| 51 | |
| 52 | This bintool supports running `cst` with some basic parameters as |
| 53 | needed by binman. |
| 54 | |
| 55 | |
| 56 | |
| 57 | Bintool: fdt_add_pubkey: Add public key to control dtb (spl or u-boot proper) |
| 58 | ----------------------------------------------------------------------------- |
| 59 | |
| 60 | This bintool supports running `fdt_add_pubkey`. |
| 61 | |
| 62 | Normally mkimage adds signature information to the control dtb. However |
| 63 | binman images are built independent from each other. Thus it is required |
| 64 | to add the public key separately from mkimage. |
| 65 | |
| 66 | |
| 67 | |
Simon Glass | ffe8138 | 2024-07-20 11:49:42 +0100 | [diff] [blame] | 68 | Bintool: fdtgrep: Handles the 'fdtgrep' tool |
| 69 | -------------------------------------------- |
| 70 | |
| 71 | This bintool supports running `fdtgrep` with parameters suitable for |
| 72 | producing SPL devicetrees from the main one. |
| 73 | |
| 74 | |
| 75 | |
Simon Glass | 4142486 | 2022-01-09 20:14:12 -0700 | [diff] [blame] | 76 | Bintool: fiptool: Image generation for ARM Trusted Firmware |
| 77 | ----------------------------------------------------------- |
| 78 | |
| 79 | This bintool supports running `fiptool` with some basic parameters as |
| 80 | neeed by binman. |
| 81 | |
| 82 | It also supports build fiptool from source. |
| 83 | |
| 84 | fiptool provides a way to package firmware in an ARM Trusted Firmware |
| 85 | Firmware Image Package (ATF FIP) format. It is used with Trusted Firmware A, |
| 86 | for example. |
| 87 | |
| 88 | See `TF-A FIP tool documentation`_ for more information. |
| 89 | |
| 90 | .. _`TF-A FIP tool documentation`: |
| 91 | https://trustedfirmware-a.readthedocs.io/en/latest/getting_started/tools-build.html?highlight=fiptool#building-and-using-the-fip-tool |
| 92 | |
| 93 | |
| 94 | |
| 95 | Bintool: futility: Handles the 'futility' tool |
| 96 | ---------------------------------------------- |
| 97 | |
| 98 | futility (flash utility) is a tool for working with Chromium OS flash |
| 99 | images. This Bintool implements just the features used by Binman, related to |
| 100 | GBB creation and firmware signing. |
| 101 | |
| 102 | A binary version of the tool can be fetched. |
| 103 | |
| 104 | See `Chromium OS vboot documentation`_ for more information. |
| 105 | |
| 106 | .. _`Chromium OS vboot documentation`: |
| 107 | https://chromium.googlesource.com/chromiumos/platform/vboot/+/refs/heads/main/_vboot_reference/README |
| 108 | |
| 109 | |
| 110 | |
Simon Glass | 1285322 | 2023-02-22 12:14:46 -0700 | [diff] [blame] | 111 | Bintool: gzip: Compression/decompression using the gzip algorithm |
| 112 | ----------------------------------------------------------------- |
| 113 | |
| 114 | This bintool supports running `gzip` to compress and decompress data, as |
| 115 | used by binman. |
| 116 | |
| 117 | It is also possible to fetch the tool, which uses `apt` to install it. |
| 118 | |
| 119 | Documentation is available via:: |
| 120 | |
| 121 | man gzip |
| 122 | |
| 123 | |
| 124 | |
Simon Glass | 4142486 | 2022-01-09 20:14:12 -0700 | [diff] [blame] | 125 | Bintool: ifwitool: Handles the 'ifwitool' tool |
| 126 | ---------------------------------------------- |
| 127 | |
| 128 | This bintool supports running `ifwitool` with some basic parameters as |
| 129 | neeed by binman. It includes creating a file from a FIT as well as adding, |
| 130 | replacing, deleting and extracting subparts. |
| 131 | |
| 132 | The tool is built as part of U-Boot, but a binary version can be fetched if |
| 133 | required. |
| 134 | |
| 135 | ifwitool provides a way to package firmware in an Intel Firmware Image |
| 136 | (IFWI) file on some Intel SoCs, e.g. Apolo Lake. |
| 137 | |
| 138 | |
| 139 | |
| 140 | Bintool: lz4: Compression/decompression using the LZ4 algorithm |
| 141 | --------------------------------------------------------------- |
| 142 | |
| 143 | This bintool supports running `lz4` to compress and decompress data, as |
| 144 | used by binman. |
| 145 | |
| 146 | It is also possible to fetch the tool, which uses `apt` to install it. |
| 147 | |
| 148 | Documentation is available via:: |
| 149 | |
| 150 | man lz4 |
| 151 | |
| 152 | |
| 153 | |
| 154 | Bintool: lzma_alone: Compression/decompression using the LZMA algorithm |
| 155 | ----------------------------------------------------------------------- |
| 156 | |
| 157 | This bintool supports running `lzma_alone` to compress and decompress data, |
| 158 | as used by binman. |
| 159 | |
| 160 | It is also possible to fetch the tool, which uses `apt` to install it. |
| 161 | |
| 162 | Documentation is available via:: |
| 163 | |
| 164 | man lzma_alone |
| 165 | |
Simon Glass | 1285322 | 2023-02-22 12:14:46 -0700 | [diff] [blame] | 166 | |
| 167 | |
| 168 | Bintool: lzop: Compression/decompression using the lzop algorithm |
| 169 | ----------------------------------------------------------------- |
| 170 | |
| 171 | This bintool supports running `lzop` to compress and decompress data, as |
| 172 | used by binman. |
| 173 | |
| 174 | It is also possible to fetch the tool, which uses `apt` to install it. |
| 175 | |
| 176 | Documentation is available via:: |
| 177 | |
| 178 | man lzop |
Simon Glass | 4142486 | 2022-01-09 20:14:12 -0700 | [diff] [blame] | 179 | |
| 180 | |
Simon Glass | 1285322 | 2023-02-22 12:14:46 -0700 | [diff] [blame] | 181 | |
Simon Glass | b20a112 | 2024-07-20 11:49:33 +0100 | [diff] [blame] | 182 | Bintool: mkeficapsule: Handles the 'mkeficapsule' tool |
| 183 | ------------------------------------------------------ |
| 184 | |
| 185 | This bintool is used for generating the EFI capsules. The |
| 186 | capsule generation parameters can either be specified through |
| 187 | commandline, or through a config file. |
| 188 | |
| 189 | |
| 190 | |
Simon Glass | 4142486 | 2022-01-09 20:14:12 -0700 | [diff] [blame] | 191 | Bintool: mkimage: Image generation for U-Boot |
| 192 | --------------------------------------------- |
| 193 | |
| 194 | This bintool supports running `mkimage` with some basic parameters as |
Simon Glass | b20a112 | 2024-07-20 11:49:33 +0100 | [diff] [blame] | 195 | needed by binman. |
Simon Glass | 4142486 | 2022-01-09 20:14:12 -0700 | [diff] [blame] | 196 | |
| 197 | Normally binman uses the mkimage built by U-Boot. But when run outside the |
| 198 | U-Boot build system, binman can use the version installed in your system. |
| 199 | Support is provided for fetching this on Debian-like systems, using apt. |
| 200 | |
| 201 | |
| 202 | |
Simon Glass | d96804b | 2023-07-24 09:20:00 -0600 | [diff] [blame] | 203 | Bintool: openssl: openssl tool |
| 204 | ------------------------------ |
| 205 | |
| 206 | This bintool supports creating new openssl certificates. |
| 207 | |
| 208 | It also supports fetching a binary openssl |
| 209 | |
| 210 | Documentation about openssl is at https://www.openssl.org/ |
| 211 | |
| 212 | |
| 213 | |
Simon Glass | 1285322 | 2023-02-22 12:14:46 -0700 | [diff] [blame] | 214 | Bintool: xz: Compression/decompression using the xz algorithm |
| 215 | ------------------------------------------------------------- |
| 216 | |
| 217 | This bintool supports running `xz` to compress and decompress data, as |
| 218 | used by binman. |
| 219 | |
| 220 | It is also possible to fetch the tool, which uses `apt` to install it. |
| 221 | |
| 222 | Documentation is available via:: |
| 223 | |
| 224 | man xz |
| 225 | |
| 226 | |
| 227 | |
| 228 | Bintool: zstd: Compression/decompression using the zstd algorithm |
| 229 | ----------------------------------------------------------------- |
| 230 | |
| 231 | This bintool supports running `zstd` to compress and decompress data, as |
| 232 | used by binman. |
| 233 | |
| 234 | It is also possible to fetch the tool, which uses `apt` to install it. |
| 235 | |
| 236 | Documentation is available via:: |
| 237 | |
| 238 | man zstd |
| 239 | |
| 240 | |
Lukas Funke | 6c2c9e1 | 2023-07-18 13:53:16 +0200 | [diff] [blame] | 241 | |