Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000-2004 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | * |
| 6 | * (C) Copyright 2003 |
| 7 | * Kai-Uwe Bloem, Auerswald GmbH & Co KG, <linux-development@auerswald.de> |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 10 | |
| 11 | /* |
| 12 | * Multi Image extract |
| 13 | */ |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 14 | #include <command.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 15 | #include <cpu_func.h> |
Simon Glass | 313112a | 2019-08-01 09:46:46 -0600 | [diff] [blame] | 16 | #include <env.h> |
Simon Glass | 1a974af | 2019-08-01 09:46:36 -0600 | [diff] [blame] | 17 | #include <gzip.h> |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 18 | #include <image.h> |
Simon Glass | 9bc1564 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 19 | #include <malloc.h> |
Joe Hershberger | 65b905b | 2015-03-22 17:08:59 -0500 | [diff] [blame] | 20 | #include <mapmem.h> |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 21 | #include <watchdog.h> |
| 22 | #if defined(CONFIG_BZIP2) |
| 23 | #include <bzlib.h> |
| 24 | #endif |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 25 | #include <asm/byteorder.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 26 | #include <asm/cache.h> |
Simon Glass | 208d8e8 | 2013-08-30 11:00:09 -0600 | [diff] [blame] | 27 | #include <asm/io.h> |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 28 | |
Kim Phillips | dc00a68 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 29 | static int |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 30 | do_imgextract(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 31 | { |
Simon Glass | 892265d | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 32 | ulong addr = image_load_addr; |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 33 | ulong dest = 0; |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 34 | ulong data, len; |
Bartlomiej Sieka | 3b8cc71 | 2008-03-20 19:38:45 +0100 | [diff] [blame] | 35 | int verify; |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 36 | int part = 0; |
Tom Rini | c220bd9 | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 37 | #if defined(CONFIG_LEGACY_IMAGE_FORMAT) |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 38 | ulong count; |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 39 | struct legacy_img_hdr *hdr = NULL; |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 40 | #endif |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 41 | #if defined(CONFIG_FIT) |
Bartlomiej Sieka | 3b8cc71 | 2008-03-20 19:38:45 +0100 | [diff] [blame] | 42 | const char *uname = NULL; |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 43 | const void* fit_hdr; |
| 44 | int noffset; |
| 45 | const void *fit_data; |
| 46 | size_t fit_len; |
| 47 | #endif |
Simon Glass | a039527 | 2013-04-17 16:13:45 +0000 | [diff] [blame] | 48 | #ifdef CONFIG_GZIP |
Nikita Shubin | 25498ed | 2022-12-19 11:05:27 +0300 | [diff] [blame] | 49 | uint unc_len = CONFIG_SYS_XIMG_LEN; |
Simon Glass | a039527 | 2013-04-17 16:13:45 +0000 | [diff] [blame] | 50 | #endif |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 51 | uint8_t comp; |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 52 | |
Simon Glass | 22c34c2 | 2017-08-03 12:22:13 -0600 | [diff] [blame] | 53 | verify = env_get_yesno("verify"); |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 54 | |
| 55 | if (argc > 1) { |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 56 | addr = hextoul(argv[1], NULL); |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 57 | } |
| 58 | if (argc > 2) { |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 59 | part = hextoul(argv[2], NULL); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 60 | #if defined(CONFIG_FIT) |
| 61 | uname = argv[2]; |
| 62 | #endif |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 63 | } |
| 64 | if (argc > 3) { |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 65 | dest = hextoul(argv[3], NULL); |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 68 | switch (genimg_get_format((void *)addr)) { |
Tom Rini | c220bd9 | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 69 | #if defined(CONFIG_LEGACY_IMAGE_FORMAT) |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 70 | case IMAGE_FORMAT_LEGACY: |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 71 | |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 72 | printf("## Copying part %d from legacy image " |
| 73 | "at %08lx ...\n", part, addr); |
| 74 | |
Simon Glass | bb7d3bb | 2022-09-06 20:26:52 -0600 | [diff] [blame] | 75 | hdr = (struct legacy_img_hdr *)addr; |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 76 | if (!image_check_magic(hdr)) { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 77 | printf("Bad Magic Number\n"); |
| 78 | return 1; |
| 79 | } |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 80 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 81 | if (!image_check_hcrc(hdr)) { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 82 | printf("Bad Header Checksum\n"); |
| 83 | return 1; |
| 84 | } |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 85 | #ifdef DEBUG |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 86 | image_print_contents(hdr); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 87 | #endif |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 88 | |
Pierre Aubert | de4e949 | 2015-09-16 08:29:11 +0200 | [diff] [blame] | 89 | if (!image_check_type(hdr, IH_TYPE_MULTI) && |
| 90 | !image_check_type(hdr, IH_TYPE_SCRIPT)) { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 91 | printf("Wrong Image Type for %s command\n", |
| 92 | cmdtp->name); |
| 93 | return 1; |
| 94 | } |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 95 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 96 | comp = image_get_comp(hdr); |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 97 | if ((comp != IH_COMP_NONE) && (argc < 4)) { |
| 98 | printf("Must specify load address for %s command " |
| 99 | "with compressed image\n", |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 100 | cmdtp->name); |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 101 | return 1; |
| 102 | } |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 103 | |
| 104 | if (verify) { |
| 105 | printf(" Verifying Checksum ... "); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 106 | if (!image_check_dcrc(hdr)) { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 107 | printf("Bad Data CRC\n"); |
| 108 | return 1; |
| 109 | } |
| 110 | printf("OK\n"); |
| 111 | } |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 112 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 113 | count = image_multi_count(hdr); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 114 | if (part >= count) { |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 115 | printf("Bad Image Part\n"); |
| 116 | return 1; |
| 117 | } |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 118 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 119 | image_multi_getimg(hdr, part, &data, &len); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 120 | break; |
Heiko Schocher | 515eb12 | 2014-05-28 11:33:33 +0200 | [diff] [blame] | 121 | #endif |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 122 | #if defined(CONFIG_FIT) |
| 123 | case IMAGE_FORMAT_FIT: |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 124 | if (uname == NULL) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 125 | puts("No FIT subimage unit name\n"); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 126 | return 1; |
| 127 | } |
| 128 | |
| 129 | printf("## Copying '%s' subimage from FIT image " |
| 130 | "at %08lx ...\n", uname, addr); |
| 131 | |
| 132 | fit_hdr = (const void *)addr; |
Simon Glass | d563c25 | 2021-02-15 17:08:09 -0700 | [diff] [blame] | 133 | if (fit_check_format(fit_hdr, IMAGE_SIZE_INVAL)) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 134 | puts("Bad FIT image format\n"); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 135 | return 1; |
| 136 | } |
| 137 | |
| 138 | /* get subimage node offset */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 139 | noffset = fit_image_get_node(fit_hdr, uname); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 140 | if (noffset < 0) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 141 | printf("Can't find '%s' FIT subimage\n", uname); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 142 | return 1; |
| 143 | } |
| 144 | |
Stefan Theil | 69b0ef5 | 2019-01-07 10:25:52 +0100 | [diff] [blame] | 145 | if (!fit_image_check_comp(fit_hdr, noffset, IH_COMP_NONE) |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 146 | && (argc < 4)) { |
| 147 | printf("Must specify load address for %s command " |
| 148 | "with compressed image\n", |
| 149 | cmdtp->name); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 150 | return 1; |
| 151 | } |
| 152 | |
| 153 | /* verify integrity */ |
| 154 | if (verify) { |
Simon Glass | 7428ad1 | 2013-05-07 06:11:57 +0000 | [diff] [blame] | 155 | if (!fit_image_verify(fit_hdr, noffset)) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 156 | puts("Bad Data Hash\n"); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 157 | return 1; |
| 158 | } |
| 159 | } |
| 160 | |
Tien Fong Chee | 8a86958 | 2019-02-12 20:49:30 +0800 | [diff] [blame] | 161 | /* get subimage/external data address and length */ |
| 162 | if (fit_image_get_data_and_size(fit_hdr, noffset, |
| 163 | &fit_data, &fit_len)) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 164 | puts("Could not find script subimage data\n"); |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 165 | return 1; |
| 166 | } |
| 167 | |
Daniel Golle | 2ebfd22 | 2022-08-27 04:17:28 +0100 | [diff] [blame] | 168 | if (fit_image_get_comp(fit_hdr, noffset, &comp)) |
| 169 | comp = IH_COMP_NONE; |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 170 | |
Bartlomiej Sieka | 3b8cc71 | 2008-03-20 19:38:45 +0100 | [diff] [blame] | 171 | data = (ulong)fit_data; |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 172 | len = (ulong)fit_len; |
| 173 | break; |
Marian Balakowicz | dbdd16a | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 174 | #endif |
| 175 | default: |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 176 | puts("Invalid image type for imxtract\n"); |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 177 | return 1; |
| 178 | } |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 179 | |
| 180 | if (argc > 3) { |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 181 | switch (comp) { |
| 182 | case IH_COMP_NONE: |
| 183 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) |
| 184 | { |
| 185 | size_t l = len; |
| 186 | size_t tail; |
| 187 | void *to = (void *) dest; |
| 188 | void *from = (void *)data; |
| 189 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 190 | printf(" Loading part %d ... ", part); |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 191 | |
| 192 | while (l > 0) { |
| 193 | tail = (l > CHUNKSZ) ? CHUNKSZ : l; |
Stefan Roese | 80877fa | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 194 | schedule(); |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 195 | memmove(to, from, tail); |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 196 | to += tail; |
| 197 | from += tail; |
| 198 | l -= tail; |
| 199 | } |
| 200 | } |
| 201 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 202 | printf(" Loading part %d ... ", part); |
| 203 | memmove((char *) dest, (char *)data, len); |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 204 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ |
| 205 | break; |
Matthew McClintock | c93a754 | 2011-05-24 05:48:26 +0000 | [diff] [blame] | 206 | #ifdef CONFIG_GZIP |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 207 | case IH_COMP_GZIP: |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 208 | printf(" Uncompressing part %d ... ", part); |
| 209 | if (gunzip((void *) dest, unc_len, |
| 210 | (uchar *) data, &len) != 0) { |
| 211 | puts("GUNZIP ERROR - image not loaded\n"); |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 212 | return 1; |
| 213 | } |
| 214 | break; |
Matthew McClintock | c93a754 | 2011-05-24 05:48:26 +0000 | [diff] [blame] | 215 | #endif |
Tom Rini | c220bd9 | 2019-05-23 07:14:07 -0400 | [diff] [blame] | 216 | #if defined(CONFIG_BZIP2) && defined(CONFIG_LEGACY_IMAGE_FORMAT) |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 217 | case IH_COMP_BZIP2: |
Wolfgang Denk | 3207afd | 2010-01-31 21:51:43 +0100 | [diff] [blame] | 218 | { |
| 219 | int i; |
| 220 | |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 221 | printf(" Uncompressing part %d ... ", part); |
Wolfgang Denk | 3207afd | 2010-01-31 21:51:43 +0100 | [diff] [blame] | 222 | /* |
Wolfgang Denk | a2cfb24 | 2010-03-12 23:06:04 +0100 | [diff] [blame] | 223 | * If we've got less than 4 MB of malloc() |
Wolfgang Denk | 3207afd | 2010-01-31 21:51:43 +0100 | [diff] [blame] | 224 | * space, use slower decompression algorithm |
| 225 | * which requires at most 2300 KB of memory. |
| 226 | */ |
| 227 | i = BZ2_bzBuffToBuffDecompress( |
Simon Glass | 208d8e8 | 2013-08-30 11:00:09 -0600 | [diff] [blame] | 228 | map_sysmem(ntohl(hdr->ih_load), 0), |
Wolfgang Denk | 3207afd | 2010-01-31 21:51:43 +0100 | [diff] [blame] | 229 | &unc_len, (char *)data, len, |
| 230 | CONFIG_SYS_MALLOC_LEN < (4096 * 1024), |
| 231 | 0); |
| 232 | if (i != BZ_OK) { |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 233 | printf("BUNZIP2 ERROR %d - " |
Wolfgang Denk | 3207afd | 2010-01-31 21:51:43 +0100 | [diff] [blame] | 234 | "image not loaded\n", i); |
| 235 | return 1; |
| 236 | } |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 237 | } |
| 238 | break; |
| 239 | #endif /* CONFIG_BZIP2 */ |
| 240 | default: |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 241 | printf("Unimplemented compression type %d\n", comp); |
Wolfgang Wegner | 781afa9 | 2009-12-10 10:11:21 +0100 | [diff] [blame] | 242 | return 1; |
| 243 | } |
Stephen Warren | 6904b6e | 2011-10-18 11:11:49 +0000 | [diff] [blame] | 244 | puts("OK\n"); |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 245 | } |
| 246 | |
Mario Six | 7feefe4 | 2018-03-28 14:39:10 +0200 | [diff] [blame] | 247 | flush_cache(dest, ALIGN(len, ARCH_DMA_MINALIGN)); |
Pieter Voorthuijsen | f52d281 | 2015-01-12 16:23:18 +0100 | [diff] [blame] | 248 | |
Simon Glass | 4d949a2 | 2017-08-03 12:22:10 -0600 | [diff] [blame] | 249 | env_set_hex("fileaddr", data); |
| 250 | env_set_hex("filesize", len); |
wdenk | 0359dde | 2004-06-09 10:15:00 +0000 | [diff] [blame] | 251 | |
| 252 | return 0; |
| 253 | } |
| 254 | |
Tom Rini | 03f146c | 2023-10-07 15:13:08 -0400 | [diff] [blame] | 255 | U_BOOT_LONGHELP(imgextract, |
Wolfgang Denk | c54781c | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 256 | "addr part [dest]\n" |
| 257 | " - extract <part> from legacy image at <addr> and copy to <dest>" |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 258 | #if defined(CONFIG_FIT) |
Wolfgang Denk | c54781c | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 259 | "\n" |
| 260 | "addr uname [dest]\n" |
| 261 | " - extract <uname> subimage from FIT image at <addr> and copy to <dest>" |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 262 | #endif |
Tom Rini | 03f146c | 2023-10-07 15:13:08 -0400 | [diff] [blame] | 263 | ); |
Kim Phillips | dc00a68 | 2012-10-29 13:34:31 +0000 | [diff] [blame] | 264 | |
| 265 | U_BOOT_CMD( |
| 266 | imxtract, 4, 1, do_imgextract, |
| 267 | "extract a part of a multi-image", imgextract_help_text |
Marian Balakowicz | 2321ed0 | 2008-03-12 10:33:00 +0100 | [diff] [blame] | 268 | ); |