blob: c92e13373268211221fde02629e34e1aea03ee12 [file] [log] [blame]
Pali Rohárcdf0d1c2022-02-13 01:09:46 +01001.TH MKIMAGE 1 "2022-02-07"
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +09002
3.SH NAME
4mkimage \- Generate image for U-Boot
5.SH SYNOPSIS
6.B mkimage
Pali Rohárcdf0d1c2022-02-13 01:09:46 +01007.RB [ \-T " \fItype\fP] " \-l " [\fIuimage file name\fP]"
Simon Glassb1489742013-06-13 15:10:03 -07008
9.B mkimage
10.RB [\fIoptions\fP] " \-f [" "image tree source file" "]" " [" "uimage file name" "]"
11
12.B mkimage
Simon Glassce8c3ca2013-06-13 15:10:05 -070013.RB [\fIoptions\fP] " \-F [" "uimage file name" "]"
14
15.B mkimage
Simon Glassb1489742013-06-13 15:10:03 -070016.RB [\fIoptions\fP] " (legacy mode)"
17
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090018.SH "DESCRIPTION"
19The
20.B mkimage
21command is used to create images for use with the U-Boot boot loader.
Horst Kronstorfere6b37cf2011-12-21 04:31:23 +000022These images can contain the linux kernel, device tree blob, root file
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090023system image, firmware images etc., either separate or combined.
24
25.B mkimage
26supports two different formats:
27
Horst Kronstorfere6b37cf2011-12-21 04:31:23 +000028The old
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090029.I legacy image
30format concatenates the individual parts (for example, kernel image,
31device tree blob and ramdisk image) and adds a 64 bytes header
32containing information about target architecture, operating system,
33image type, compression method, entry points, time stamp, checksums,
34etc.
35
Horst Kronstorfere6b37cf2011-12-21 04:31:23 +000036The new
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090037.I FIT (Flattened Image Tree) format
Horst Kronstorfere6b37cf2011-12-21 04:31:23 +000038allows for more flexibility in handling images of various types and also
Simon Glassb1489742013-06-13 15:10:03 -070039enhances integrity protection of images with stronger checksums. It also
40supports verified boot.
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090041
42.SH "OPTIONS"
43
44.B List image information:
45
46.TP
47.BI "\-l [" "uimage file name" "]"
48mkimage lists the information contained in the header of an existing U-Boot image.
49
Pali Rohárcdf0d1c2022-02-13 01:09:46 +010050.TP
51.BI "\-T [" "image type" "]"
52Parse image file as type.
53Pass \-h as the image to see the list of supported image type.
54Without this option image type is autodetected.
55
Sean Anderson138d2712022-04-08 16:08:39 -040056.TP
57.BI "\-q"
58Quiet. Don't print the image header on successful verification.
59
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090060.P
61.B Create old legacy image:
62
63.TP
64.BI "\-A [" "architecture" "]"
Loïc Minier775648f2011-01-04 02:32:36 +010065Set architecture. Pass \-h as the architecture to see the list of supported architectures.
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090066
67.TP
68.BI "\-O [" "os" "]"
69Set operating system. bootm command of u-boot changes boot method by os type.
Loïc Minier775648f2011-01-04 02:32:36 +010070Pass \-h as the OS to see the list of supported OS.
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090071
72.TP
73.BI "\-T [" "image type" "]"
74Set image type.
Loïc Minier775648f2011-01-04 02:32:36 +010075Pass \-h as the image to see the list of supported image type.
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090076
77.TP
78.BI "\-C [" "compression type" "]"
79Set compression type.
Loïc Minier775648f2011-01-04 02:32:36 +010080Pass \-h as the compression to see the list of supported compression type.
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090081
82.TP
Jelle van der Waa6c90a7d2016-09-14 21:54:53 +020083.BI "\-a [" "load address" "]"
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090084Set load address with a hex number.
85
86.TP
87.BI "\-e [" "entry point" "]"
88Set entry point with a hex number.
89
90.TP
Simon Glassb1489742013-06-13 15:10:03 -070091.BI "\-l"
92List the contents of an image.
93
94.TP
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +090095.BI "\-n [" "image name" "]"
96Set image name to 'image name'.
97
98.TP
Sean Anderson138d2712022-04-08 16:08:39 -040099.BI "\-R [" "secondary image name" "]"
100Some image types support a second image for additional data. For these types,
101use \-R to specify this second image.
102
103.TP
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +0900104.BI "\-d [" "image data file" "]"
105Use image data from 'image data file'.
106
107.TP
108.BI "\-x"
109Set XIP (execute in place) flag.
110
Sean Anderson138d2712022-04-08 16:08:39 -0400111.TP
112.BI "\-s"
113Create an image with no data. The header will be created, but the image itself
114will not contain data (such as U-Boot or any specified kernel).
115
116.TP
117.BI "\-v"
118Verbose. Print file names as they are added to the image.
119
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +0900120.P
121.B Create FIT image:
122
123.TP
Andreas Bießmannf4001582016-05-01 03:01:27 +0200124.BI "\-b [" "device tree file" "]
125Appends the device tree binary file (.dtb) to the FIT.
Simon Glassbd8bc5d2016-02-22 22:55:52 -0700126
127.TP
Simon Glassbf27d3d2013-06-13 15:10:06 -0700128.BI "\-c [" "comment" "]"
129Specifies a comment to be added when signing. This is typically a useful
130message which describes how the image was signed or some other useful
131information.
132
133.TP
Horst Kronstorfer88784922011-12-23 05:40:20 +0000134.BI "\-D [" "dtc options" "]"
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +0900135Provide special options to the device tree compiler that is used to
136create the image.
137
138.TP
Simon Glassafd728c2016-02-22 22:55:53 -0700139.BI "\-E
140After processing, move the image data outside the FIT and store a data offset
141in the FIT. Images will be placed one after the other immediately after the
142FIT, with each one aligned to a 4-byte boundary. The existing 'data' property
143in each image will be replaced with 'data-offset' and 'data-size' properties.
144A 'data-offset' of 0 indicates that it starts in the first (4-byte aligned)
145byte after the FIT.
146
147.TP
Sean Anderson138d2712022-04-08 16:08:39 -0400148.BI "\-B [" "alignment" "]"
149The alignment, in hexadecimal, that external data will be aligned to. This
150option only has an effect when \-E is specified.
151
152.TP
Simon Glass88e31cb2016-02-22 22:55:51 -0700153.BI "\-f [" "image tree source file" " | " "auto" "]"
Horst Kronstorfere6b37cf2011-12-21 04:31:23 +0000154Image tree source file that describes the structure and contents of the
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +0900155FIT image.
156
Simon Glass88e31cb2016-02-22 22:55:51 -0700157This can be automatically generated for some simple cases.
158Use "-f auto" for this. In that case the arguments -d, -A, -O, -T, -C, -a
159and -e are used to specify the image to include in the FIT and its attributes.
160No .its file is required.
161
Simon Glassb1489742013-06-13 15:10:03 -0700162.TP
Simon Glassce8c3ca2013-06-13 15:10:05 -0700163.BI "\-F"
164Indicates that an existing FIT image should be modified. No dtc
Vagrant Cascadian6736b8b2014-11-01 18:09:01 -0700165compilation is performed and the \-f flag should not be given.
Simon Glassce8c3ca2013-06-13 15:10:05 -0700166This can be used to sign images with additional keys after initial image
167creation.
168
169.TP
Tomeu Vizoso8d83ed22016-11-04 14:22:15 +0100170.BI "\-i [" "ramdisk_file" "]"
171Appends the ramdisk file to the FIT.
172
173.TP
Simon Glassb1489742013-06-13 15:10:03 -0700174.BI "\-k [" "key_directory" "]"
175Specifies the directory containing keys to use for signing. This directory
176should contain a private key file <name>.key for use with signing and a
177certificate <name>.crt (containing the public key) for use with verification.
178
Simon Glassb4d8b092013-06-13 15:10:04 -0700179.TP
180.BI "\-K [" "key_destination" "]"
181Specifies a compiled device tree binary file (typically .dtb) to write
182public key information into. When a private key is used to sign an image,
183the corresponding public key is written into this file for for run-time
184verification. Typically the file here is the device tree binary used by
185CONFIG_OF_CONTROL in U-Boot.
186
Simon Glass817278a2013-06-13 15:10:07 -0700187.TP
Sean Anderson138d2712022-04-08 16:08:39 -0400188.BI "\-G [" "key_file" "]"
189Specifies the private key file to use when signing. This option may be used
190instead of \-k.
191
192.TP
Jan Kiszka4043f322022-01-14 10:21:19 +0100193.BI "\-o [" "signing algorithm" "]"
194Specifies the algorithm to be used for signing a FIT image. The default is
Jan Kiszka61f1fbd2022-02-05 13:19:36 +0100195taken from the signature node's 'algo' property.
Jan Kiszka4043f322022-01-14 10:21:19 +0100196
197.TP
Teddy Reeda8457622016-06-09 19:38:02 -0700198.BI "\-p [" "external position" "]"
199Place external data at a static external position. See \-E. Instead of writing
200a 'data-offset' property defining the offset from the end of the FIT, \-p will
201use 'data-position' as the absolute position from the base of the FIT.
202
203.TP
Sean Anderson138d2712022-04-08 16:08:39 -0400204.BI "\-r"
Simon Glass817278a2013-06-13 15:10:07 -0700205Specifies that keys used to sign the FIT are required. This means that they
206must be verified for the image to boot. Without this option, the verification
207will be optional (useful for testing but not for release).
208
Simon Glass472ee0c2020-07-09 18:39:43 -0600209.TP
Sean Anderson138d2712022-04-08 16:08:39 -0400210.BI "\-N [" "engine" "]"
211The openssl engine to use when signing and verifying the image. For a complete list of
212available engines, refer to
213.BR engine (1).
214
215.TP
Simon Glass472ee0c2020-07-09 18:39:43 -0600216.BI "\-t
217Update the timestamp in the FIT.
218
219Normally the FIT timestamp is created the first time mkimage is run on a FIT,
220when converting the source .its to the binary .fit file. This corresponds to
221using the -f flag. But if the original input to mkimage is a binary file
222(already compiled) then the timestamp is assumed to have been set previously.
223
Horst Kronstorfere6b37cf2011-12-21 04:31:23 +0000224.SH EXAMPLES
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +0900225
226List image information:
227.nf
228.B mkimage -l uImage
229.fi
230.P
231Create legacy image with compressed PowerPC Linux kernel:
232.nf
233.B mkimage -A powerpc -O linux -T kernel -C gzip \\\\
234.br
235.B -a 0 -e 0 -n Linux -d vmlinux.gz uImage
236.fi
237.P
238Create FIT image with compressed PowerPC Linux kernel:
239.nf
240.B mkimage -f kernel.its kernel.itb
241.fi
Simon Glassb4d8b092013-06-13 15:10:04 -0700242.P
243Create FIT image with compressed kernel and sign it with keys in the
244/public/signing-keys directory. Add corresponding public keys into u-boot.dtb,
245skipping those for which keys cannot be found. Also add a comment.
246.nf
247.B mkimage -f kernel.its -k /public/signing-keys -K u-boot.dtb \\\\
Vagrant Cascadian6736b8b2014-11-01 18:09:01 -0700248.br
Simon Glass1c570232016-02-22 22:55:49 -0700249.B -c """Kernel 3.8 image for production devices""" kernel.itb
Simon Glassb4d8b092013-06-13 15:10:04 -0700250.fi
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +0900251
Simon Glassce8c3ca2013-06-13 15:10:05 -0700252.P
253Update an existing FIT image, signing it with additional keys.
254Add corresponding public keys into u-boot.dtb. This will resign all images
255with keys that are available in the new directory. Images that request signing
256with unavailable keys are skipped.
257.nf
258.B mkimage -F -k /secret/signing-keys -K u-boot.dtb \\\\
Vagrant Cascadian6736b8b2014-11-01 18:09:01 -0700259.br
Simon Glass1c570232016-02-22 22:55:49 -0700260.B -c """Kernel 3.8 image for production devices""" kernel.itb
Simon Glassce8c3ca2013-06-13 15:10:05 -0700261.fi
262
Simon Glass88e31cb2016-02-22 22:55:51 -0700263.P
264Create a FIT image containing a kernel, using automatic mode. No .its file
265is required.
266.nf
267.B mkimage -f auto -A arm -O linux -T kernel -C none -a 43e00000 -e 0 \\\\
268.br
269.B -c """Kernel 4.4 image for production devices""" -d vmlinuz kernel.itb
270.fi
Simon Glassbd8bc5d2016-02-22 22:55:52 -0700271.P
272Create a FIT image containing a kernel and some device tree files, using
273automatic mode. No .its file is required.
274.nf
275.B mkimage -f auto -A arm -O linux -T kernel -C none -a 43e00000 -e 0 \\\\
276.br
277.B -c """Kernel 4.4 image for production devices""" -d vmlinuz \\\\
Andreas Bießmannf4001582016-05-01 03:01:27 +0200278.B -b /path/to/rk3288-firefly.dtb -b /path/to/rk3288-jerry.dtb kernel.itb
Simon Glassbd8bc5d2016-02-22 22:55:52 -0700279.fi
Simon Glass88e31cb2016-02-22 22:55:51 -0700280
Nobuhiro Iwamatsu9711cf62010-06-16 10:38:24 +0900281.SH HOMEPAGE
282http://www.denx.de/wiki/U-Boot/WebHome
283.PP
284.SH AUTHOR
285This manual page was written by Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Simon Glassb1489742013-06-13 15:10:03 -0700286and Wolfgang Denk <wd@denx.de>. It was updated for image signing by
287Simon Glass <sjg@chromium.org>.